RFID Video Daemon

oh my, the previous code that I was working with actually works now.

The error was in the arduino board, I would never of thought of that.

That was perfect what you said and println was the problem too.

Now its just a matter of the sound playing all the way through.

I can extract the audio no problem if needed.

I will put the code I was originally using:

import processing.serial.;
import processing.video.
;
import jmcvideo.*;

Serial myPort; // The serial port
Movie myMovie;

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

void setup() {
size(400,400,P3D);
// Open whatever port is the one you're using.
myPort = new Serial(this, Serial.list()[1], 2400);

background(0);

}

void draw() {
while (myPort.available() >= 10) {
//Video Code:
String command = "";
for (int i=0;i<10;i++){
command += myPort.readChar();
}
println(command);
myMovie = new Movie(this, command+".mov");
//myMovie.setSize();
myMovie.play();
}

if (myMovie != null){
image(myMovie, 0, 0);
//image(myMovie, 0, 0, width, height);
}

}

Thank you sooooo much, your obviously very knowledgable with arduino!!!!! :grin: