I'm looking for a program that takes a Flash swf video, and exports images at n frames per second. I've heard of such tools, but I can't come up with the right search terms.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You can do this with ffmpeg

ffmpeg -i video.mpg -r 1 image%05d.png

The r value dictates the frames per second, so one frame per second in this example.

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.