I have a .avi file with me. How can I extract all the frames from it using ffmpeg?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can use the following syntax, derived from the documentation. The %d variable will be replaced, at runtime, with a 0-based incrementing number.

ffmpeg -i input.avi output%d.jpg
link|improve this answer
It works, but it copies each frame multiple times... – Lukas Aug 24 '11 at 23:58
feedback

Your Answer

 
or
required, but never shown

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