Hot answers tagged encoding
1
You can create an avi animation as a series of png images ( png is lossless so the jpeg => png conversion should not degrade your pictures ):
if your images a named img_0001.jpg
ffmpeg -r 25 -start_number 1 -f image2 -i "img_%04d.jpg" -vcodec png video.avi
where "25" is the frame rate you want in the resulting video. -start_number is not needed if it ...
Only top voted, non community-wiki answers of a minimum length are eligible