vote up 2 vote down star

Does anybody know how to get thumbnail (still image) from 3gb video file? First frame or something like that. I'm using .net, but solution can be in any language (managed or native), or third-party product.

flag

64% accept rate

1 Answer

vote up 4 vote down check

This is using ffmpeg on Linux and called from PHP, but if you can use ffmpeg then that dosen't matter:

ffmpeg -i path/to/your/video.3gp -an -ss 00:00:00 -t 00:00:01 -y -s 400x300 path/to/your/image%d.jpg

Note the "%d"; you are only generating one frame but ffmpeg still needs this so it knows where to put the number when it is generating the images. So you will end up with a name like "image1.jpg"

link|flag
That was quick! Thanx Jan. And stackoverflow rules :) – Hrvoje Sep 19 '08 at 13:43

Your Answer

Get an OpenID
or

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