I have a video sequence, let's say an avi file. I want to transform it into a sequence of .jpg images, named 1.jpg, 2.jpg, .... n.jpg (for n frames in the avi file). How can I accomplish this?

link|improve this question
feedback

1 Answer

up vote 3 down vote accepted
ffmpeg -i Video.avi %d.jpg

(via http://ubuntuforums.org/showthread.php?t=1141293)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.