Hello,
Here is my program ;
import processing.video.*;
Movie myMovie;
void setup(){
size(1280, 720);
myMovie = new Movie(this, "test.mp4");
myMovie.play();
}
void draw(){
myMovie.read();
image(myMovie, 0, 0);
}
void movieEvent(Movie m){
m.read();
}
I just want to play a video with processing but when I run it, I've go this issue :
"A library relies on native code that's not available.
Or only works properly when the sketch is run as a 32-bit application."
Is anybody has an idea ?