-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
Description
Hi,
I'm trying to load & play a video on Linux, Ubuntu 13.04, but it doesn't work:
A library relies on native code that's not available.
Or only works properly when the sketch is run as a 32-bit application.
unfortunately this is the only error message I get, it doesn't say what library would be missing, etc. I'm using processing 2.1 64 bit.
the code is very simple:
import processing.video.*;
Movie myMovie;
void setup() {
size(200, 200);
background(0);
myMovie = new Movie(this, "/tmp/ize.mpg");
myMovie.loop();
}
void draw() {
image(myMovie, 0, 0);
}
// Called every time a new frame is available to read
void movieEvent(Movie m) {
m.read();
}
Reactions are currently unavailable