I want to convert a VOB file to another video format using ffmpeg. The video that I'm interested in is found in the first half of the VOB file. Is there a way to convert only the part that I'm interested in, or at least just the first half of the VOB, so that I don't have to convert the whole file?

link|improve this question

74% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Try Handbrake. It's a wrapper for ffmpeg that makes everything easy. It also has a cli version for batching.

link|improve this answer
feedback

yes, you can...ffmpeg -sameq -ss [start_seconds] -t [duration_seconds] -i [input_file] [outputfile]

link|improve this answer
What about the audio? – OSX NINJA Jan 1 '11 at 6:04
just add -acodec copy in the options – aking1012 Jan 1 '11 at 6:24
feedback

Your Answer

 
or
required, but never shown

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