From this program, it doesnt seems to display the video in the processing environment
in
Core Library Questions
•
1 year ago
import processing.video.*;
Movie myMovie;
void setup() {
size(320, 240);
myMovie = new Movie(this, "sample.mov");
myMovie.play();
}
void draw() {
//tint(255, 20);
image(myMovie, 0, 0);
}
// Called every time a new frame is available to read
void movieEvent(Movie m)
{
m.read();
}
*Before i run this program, i had add file of the movie into the sketch folder but it seems that it doesnt seems to display the movie out but just displaying a blank folder.
1