Code:
ffmpeg -ss 00:00:00 -t 00:15:00 -i file.vob -sameq file.mp4
The -ss is the start time and the -t is the end time.
if you want a h264 video file try this code
Code:
ffmpeg -ss 00:00:00 -t 00:15:00 -i file.vob -threads 0 -vcodec libx264 -vpre lossless_fast -crf 17 -acodec libfaac file.mp4
Add a Watermark to a Video with ffmpeg
http://www.linuxjournal.com/video/ad...k-video-ffmpeg
This is just a scratch of the power of ffmpeg. For more info read the man page for ffmpeg or do a google search like ffmpeg examples etc...