ANSWERED: Help with basic use of video
in
Core Library Questions
•
11 months ago
Using the code provided by the reference, I get the error
The constructor Movie(Movie, String) is undefined
I have Feedback.mov in my data folder and would really like to move forward but can't seem to get the basics. Help?
import processing.video.*; Movie myMovie; void setup() { size(200, 200); myMovie = new Movie(this, "Feedback.mov"); myMovie.loop(); } void draw() { tint(255, 20); image(myMovie, mouseX, mouseY); } // Called every time a new frame is available to read void movieEvent(Movie m) { m.read(); }
1