This document briefly outlines the basic steps required to generate a time lapse video from a set of images.
Capture images. It is best if the files have sequential naming convention.
Move images to a single folder.
cd
into the folder containing the images, e.g.:$ cd images/
Generate a file containing all relative-path file names for the images to be used to generate the video:
$ ls ./ -1X > ./images.txt
Use
mencoder
to generate the video (source):$ mencoder -nosound -ovc lavc -lavcopts vcodec=mpeg4:mbd=2:trell:autoaspect:vqscale=3 -vf scale=1920:1080 -mf type=jpeg:fps=20 mf://@./images.txt -o time-lapse.avi