Quantcast
Channel: Processing Forum
Viewing all articles
Browse latest Browse all 1768

Re : Video playback + display image when finished

$
0
0
I'm a noob, but maybe this will help.

You need an event that tells your program the video has finished playing. Maybe myMovie.available() will return false if there is no more movie to read?

if (myMovie.available()) {
    myMovie.read();
  }
else { takerandomimage(fn); }

Viewing all articles
Browse latest Browse all 1768

Trending Articles