Extract Single Image from Video

Posted by

Extract single image from video using the following code:

ffmpeg -i video.mp4 -ss 00:00:00.000 -vframes 1 image.jpg

-ss will ask ffmpeg to seek these many seconds and start processing
-vframes with this parameter we are extracting 1 frame

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s