Reference+
Name
read()
Class
Movie
Description
Reads the current frame of the movie.
Examples
import processing.video.*; Movie myMovie; void setup() { size(200, 200); background(0); myMovie = new Movie(this, "totoro.mov"); myMovie.loop(); } void draw() { image(myMovie, 0, 0); } // Called every time a new frame is available to read void movieEvent(Movie m) { m.read(); }
Syntax
.read()
Return
void
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.