My code look like this:
import processing.video.*;
Movie myMovie;
void setup() {
size(480, 400);
myMovie = new Movie(this, "Line2.mov");
myMovie.loop();
}
The movie: Line2.mov, is placed in the same folder as my file.
Why can't it load the file?