It looks like both FFmpeg and the MovieMaker library in Processing will create a slideshow movie from an array of images. Which is best? Is there a better option?
I need to output a video to be uploaded to a 3rd party website so I'd like to do it on device and it needs to be a real video not just a gallery slideshow.
FFmpeg is a great option. I've done it many times myself with time lapse photography experiments.
FFmpeg command:
You may need to tinker with the command line to get the desired output quality you are searching for. Also, the frame rate (
-r 25
) is probably too high for you. Either experiment with small values, or duplicate your slides programmatically.