So I am really stuck with this! I keep getting an error message when trying to play a small video in my Data folder. Can anybody help me? I am running Windows 7 64bit OS and the video is Quicktime so it is listed as a .mov file. The
image(movie,0,0); is highlighted when showing the error message.
Here is my code:
import processing.video.*;
// Step 1. Declare Movie object
Movie movie;
void setup() {
size(320,240);
// Step 2. Initialize Movie object
// Movie file should be in data folder
movie = new Movie(this, "test.mov");
// Step 3. Start movie playing
movie.loop();
}
// Step 4. Read new frames from movie
void movieEvent(Movie movie) {
movie.read();
}
void draw() {
// Step 5. Display movie.
image(movie,0,0);
}
1