Code: Select all
vobcopy -ICode: Select all
vobcopy -l -n xThe reason I bother with this instead of just using Handbrake, is that I have a raw file to work with, and it doesn't stress the dvdrom drive (I think).
I used to use Handbrake with the default settings for high quality, but found that after hours of encoding, it grabbed the wrong audio track
To get around this, I used
Code: Select all
HandBrakeCLI -a x -e ffmpeg --start-at duration:300 --stop-at duration:320 -i movie.vob -o movie.m4vYes, I could have used VLC for this part, but I was going for a command line only approach.
Then I used a modification of the High profile for Handbrake (the default gave me a Floating point exception)
Code: Select all
Handbrake -e x264 -q 20.0 -a 1 --detelecine --decomb --loose-anamorphic -i movie.vob -o movie.m4vI know there are many other approaches, and just wanted to see what other people do.