how can i create a video file from the output of the following sketc??
import processing.video.*;
Movie movie; Movie movie1; void setup() { size(640, 360); background(0); // Load and play the video in a loop movie = new Movie(this, "transit.mov"); movie1=new Movie(this, "business.mov"); movie.loop(); movie1.loop(); }