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?
Asked
Active
Viewed 1,358 times
2 Answers
2
Try Handbrake. It's a wrapper for ffmpeg that makes everything easy. It also has a cli version for batching.
bahamat
- 5,782
2
yes, you can...ffmpeg -sameq -ss [start_seconds] -t [duration_seconds] -i [input_file] [outputfile]
RobotHumans
- 5,934