Quantcast
Channel: Library Questions - Processing 2.x and 3.x Forum
Viewing all articles
Browse latest Browse all 2896

Movie

$
0
0

Hello I am trying to play a Video in my programm, but the audio is asynchronous. What did i worng?

import processing.video.*;
Movie movie;
void setup(){
  size(500,500);
  movie = new Movie(this,"Spieler 1_x264.mov");
  movie.play();

}

void draw(){
  image(movie,0,0,width,height);
}

void movieEvent(Movie m){
  m.read();
}

Viewing all articles
Browse latest Browse all 2896

Trending Articles