I’m trying to code a movie program even though i could use a premade program to place all the clips together but the program cant find my file.
I’m using video library for processing 4.
it keeps saying “Could not load movie file flappy1.mov”
flapp1.mov is in my movieTutorial folder
import processing.video.*;
Movie video;
void setup(){
size(600,600);
video = new Movie(this,"flappy1.mov");
video.play();
}
void draw(){
image(video,0,0);
}
i tried the folder b4 i posted i’ll try a youtube video if that dont work i found a program i like so i’m happy with giving up. I tried a youtube video and still couldnt load. i tried mov, pm4 and avi.
Data folder is a folder that literally named “data”. The easiest option to put a file in the directory correctly is just drag-n-dropping it into the Processing window with the sketch opened.