
What software do you use to combine the images into the video? Whenever I have tried I can never get short enough delays between images
( , Wed 30 Jun 2010, 9:37, Reply)

first you have to make sure the images are small enough, and all numbered. ffmpeg has a stupid max size limitation, so it will break if you use max camera resulution.
I used imagemagic/mogrify to do the resizing, but anything that can batch process should do it. Then something like:
ffmpeg -i %d.jpg -sameq -s vga -r 20 output.avi
%d.jpg just tells it to look for numbered files
-sameq tells it to maintain image quality & not go blocky
-r 20 = 20fps
-s hd480 sets a resolution
etc.
You can add audio the same way, but I couldn't tell you how off the top of my head as it is a bitch to get working and it always takes me about 20 minutes to figure it out.
( , Wed 30 Jun 2010, 9:50, Reply)