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
MovieMaker Saving Problems (Read 747 times)
MovieMaker Saving Problems
May 11th, 2009, 6:17pm
 
I am actually somewhat embarrassed to ask this question, but when using MovieMaker, I am able to run the sketch with no problems and attempt to save the movie I have created, but have no idea where it saves to.  

Should I be prompted to save after hitting the space bar, which should trigger the finish() command?

I am using the basic demo code of Movie Maker:

Code:
 	

import processing.video.*;

MovieMaker mm; // Declare MovieMaker object

void setup() {
size(320, 240);
// Create MovieMaker object with size, filename,
// compression codec and quality, framerate
mm = new MovieMaker(this, width, height, "drawing.mov",
30, MovieMaker.H263, MovieMaker.HIGH);
background(204);
}

void draw() {
ellipse(mouseX, mouseY, 20, 20);
mm.addFrame(); // Add window's pixels to movie
}

void keyPressed() {
if (key == ' ') {
mm.finish(); // Finish the movie if space bar is pressed!
}
}


Thanks!
Re: MovieMaker Saving Problems
Reply #1 - May 11th, 2009, 6:45pm
 
WTF. is there something wrong with the forum software atm? it happens all the time that people post the same thread up to 5 times the last days.

Maybe you can delete the other 4 threads...

btw your video should be saved in your sketch folder.
you can open it by going Sketch -> show sketch folder
Re: MovieMaker Saving Problems
Reply #2 - May 25th, 2009, 6:33am
 
Thanks, Cedric. Found it.
Page Index Toggle Pages: 1