create a video file
in
Core Library Questions
•
7 months ago
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();
}
void draw() {
movie.read();
movie1.read();
image(movie, 0, 0, width, height);
blend(movie1,0,0,width, height,0,0,width, height,LIGHTEST);
}
This mixes two simple mvo files
Appreciate any support
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();
}
void draw() {
movie.read();
movie1.read();
image(movie, 0, 0, width, height);
blend(movie1,0,0,width, height,0,0,width, height,LIGHTEST);
}
This mixes two simple mvo files
Appreciate any support
1