Hey there
I've a big problem with my Processing and displaying movies.
When I display them the framerate is very low(like 13 frames) and the sound plays the normal speed. I'm new in Processing so please help! And sorry for my bad english

Here's my programm:
import processing.serial.*;
import processing.video.*;
import cc.arduino.*;
Arduino arduino;
Movie movie;
Movie movie2;
void setup() {
size(320, 132);
arduino = new Arduino(this, Arduino.list()[0], 115200);
movie = new Movie(this, "/Users/tdiesterweg/Desktop/data/terminator.mov");
movie2 = new Movie(this, "/Users/tdiesterweg/Desktop/data/station.mov");
movie.loop();
movie2.loop();
for (int i = 0; i <= 13; i++)
arduino.pinMode(i, Arduino.INPUT);
}
void draw() {
background(0);
for (int i = 0; i <= 13; i++) {
if (arduino.digitalRead(13) == Arduino.HIGH){
image(movie,0,0);
}else{
image(movie2,0,0);
}
}
}
I hope you can help me as quick as a flash!