Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

another getting sound but no picture....

$
0
0
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();

}


Viewing all articles
Browse latest Browse all 1768

Trending Articles