We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
Page Index Toggle Pages: 1
Video capture to specified location? (Read 797 times)
Video capture to specified location?
May 7th, 2010, 6:49am
 
Hi all,

I'm using a sketch where I am capturing an image sequence from cameras on 4 different computers. Instead of my 3 clients saving to their own sketchbook folders, i need to use an absolute path to make sure frames end up in one folder on the server machine (which will be set to shared etc).

Do i slip it in where i declare my movie:

void setup() {
 size (160*NUM_CAMS,120);
 println(Capture.list());

 mm = new MovieMaker(this, 160, 120, "bullettime.mov",
 25, MovieMaker.JPEG, MovieMaker.LOSSLESS);


If anyone can help that would be fantastic.

BB
Re: Video capture to specified location?
Reply #1 - May 7th, 2010, 8:25am
 
which OS?
for windows:
Code:
lala = new MovieMaker(this, width, height, "C:\\temp\\test.mov", 25, MovieMaker.JPEG, MovieMaker.LOSSLESS); 

Page Index Toggle Pages: 1