How to extract still images from VOB file

How can I extract still images (jpeg?) from a VOB video file?

1 Answer

This is possible with transcode:

transcode -x mpeg2 -i video.vob -y im -F jpg -w 100 -o images 

-F of course is the output, -w is the quality, -i the video file, -x the transcoding. -o is the output file base name (if this is not specified the default location is /dev/null). For more see the manual page. Also have a look at transcode export

Installation:

sudo apt-get install transcode
0

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like