2

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

1 Answer 1

3

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
1
  • It works, but it copies each frame multiple times...
    – Lukas
    Commented Aug 24, 2011 at 23:58

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .