The following MovieMaker code works in 0194. I just installed 2.0a4 and tried MovieMaker but it says, "Cannot find anything named "MovieMaker.H263" Is this a feature in development or has it been replaced with something else? The MovieMaker reference for 2.0+ indicates that it should recognize 'MovieMaker.H263'. I did not see anything in the release notes about MovieMaker.
My apologies if this is not the correct forum to post questions about alpha releases.
Thanks
- import processing.video.*;
- MovieMaker mm;
- void setup() {
- size(720, 480, OPENGL);
- mm = new MovieMaker(this, width, height, "drawing.mov",34, MovieMaker.H263, MovieMaker.LOSSLESS);
- }
- void draw() {
- translate(width/2,height/2,0);
- fill(255,150,10);
- sphere(50);
- mm.addFrame();
- };
My apologies if this is not the correct forum to post questions about alpha releases.
Thanks
1