Alright i have my file in my data folder and the video isn't showing up. here is the code. I have multiple videos but i am currently only trying to get one to work.
- import processing.video.*;
- // Movie
- Movie rachel;
- Movie leone;
- Movie richelle;
- Movie katie;
- PImage pizzatime;
- void setup(){
- size(800,550);
- pizzatime = loadImage("PizzaBro.png");
- rachel =new Movie(this,"rachel.mov");
- leone =new Movie(this,"leone.mov");
- richelle =new Movie(this,"richelle.mov");
- katie =new Movie(this,"katie2.mov");
- katie.play();
- }
- void draw(){
- if (katie.available()) {
- katie.read();
- }
- image(katie,0,0);
- //image(pizzatime,0,0);
- }
1