Loading...
Logo
Processing Forum
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. 
Copy code
  1. import processing.video.*;
  2. MovieMaker mm;
  3. void setup() {
  4.       size(720, 480, OPENGL);
  5.       mm = new MovieMaker(this, width, height, "drawing.mov",34, MovieMaker.H263, MovieMaker.LOSSLESS);
  6. }
  7. void draw() {
  8.       translate(width/2,height/2,0);
  9.       fill(255,150,10);
  10.       sphere(50);
  11.      
  12.       mm.addFrame();
  13. };

My apologies if this is not the correct forum to post questions about alpha releases. 

Thanks

Replies(1)

shiffman.net says

How can one render a movie from a Processing sketch? In Processing 1.5.1, there is a class called MovieMaker which generates a Quicktime file directly. However, this class uses ye old Quicktime for Java and will be removed from Processing 2.0. Instead, 2.0 is going to introduce a MovieMaker “tool” which will generate a movie file from a directory containing an image sequence.