array of images to movie... how?
in
Programming Questions
•
3 years ago
Im trying to make a movie from an array of images but im lost on how to do this. I dont want to capture the whole screen to the movie, just the array that Im creating with a series of copy. requests.
I know about movieMaker library, but as far as I can see it only saves the whole stage. Any help would be much appreciated.
P.
- Capture stream;
- PImage[] linetest;
- then later....
- if(keyPressed) {
- linetest[captureFrameNum] = new PImage(xRes, yRes);
- linetest[captureFrameNum].copy(stream,0,0,xRes,yRes, 0,0,xRes,yRes);
- captureFrameNum++;
- }
I know about movieMaker library, but as far as I can see it only saves the whole stage. Any help would be much appreciated.
P.
1