How to make images from a video
in
Contributed Library Questions
•
3 years ago
Hi.
I'm using the video library (QT).
I want to extract some frames from the video and convert them to PImage.
I have a
Movie
m, that I read() after a jump().
I also have
PImage[]
img
;
I tried:
imgs[i] = m;
but if I display it in the draw() function, it reads the movie...
this is not correct:
imgs[i] = new PImage(m);
So my question is simple:
how to get a still PImage distinct from the movie?
thanks!
1