another getting sound but no picture....
in
Core Library Questions
•
6 months ago
i am brand new to processing (and not a coder)
i downloaded processing 2.0 today
i am trying to get a video to play and am getting the audio but not the image
does anyone have any suggestions for me
thanks
import processing.video.*;
Movie myMovie;
void setup( ) {
size(1080, 920);
myMovie = new Movie(this, "trailer copy.mov");
myMovie.play();
}
void draw() {
image(myMovie, 0, 0);
}
void movieEvent(Movie m) {
m.read();
}
i downloaded processing 2.0 today
i am trying to get a video to play and am getting the audio but not the image
does anyone have any suggestions for me
thanks
import processing.video.*;
Movie myMovie;
void setup( ) {
size(1080, 920);
myMovie = new Movie(this, "trailer copy.mov");
myMovie.play();
}
void draw() {
image(myMovie, 0, 0);
}
void movieEvent(Movie m) {
m.read();
}
1