pbz
pbz

Reputation: 9085

FLV thumbnails

I'm looking for a .NET library or command line tool that would allow me to extract thumbnails from FLV files (AVI would be nice too, but not required). Something that would allow me to extract a frame maybe 15% into the movie would suffice. If it could extract a few frames, let's say one frame per minute, and make an animated GIF out of those frames it would be even cooler. Doesn't have to be open source, but it has to be something I can incorporate into my application.

Thanks.

Upvotes: 5

Views: 668

Answers (1)

Ali Afshar
Ali Afshar

Reputation: 41643

Ffmpeg.

ffmpeg.exe -i video.flv -an -ss 00:00:03 -an -r 1 -vframes 1 -y %d.jpg 

(Save a single frame at position 3 seconds during the video as a jpeg)

Upvotes: 8

Related Questions