Page 1 of 1

Struggling with multi-VOB to MP4 conversion

Posted: 15 Sep 2006 21:57
by PhilipC
I've got a DVD that was created in a consumer DVD recorder. The recording has been split into multiple VOB files by the DVD recorder.

I want to convert this recording into an MP4 file. I've been trying to come up with a command line that does all of this, and this is what I've got so far:

Code: Select all

vlc --sout="#transcode{vcodec=mp4v,vb=1024,scale=1,acodec=mp4a,ab=192,channels=2}:std{access=file,mux=mp4,url="D:\Video.mp4"}}" --sout-keep --aspect-ratio=16:9 --sout-transcode-width=1024 --sout-transcode-height=576 E:\VIDEO_TS\VTS_01_1.VOB E:\VIDEO_TS\VTS_01_2.VOB E:\VIDEO_TS\VTS_01_3.VOB E:\VIDEO_TS\VTS_01_4.VOB vlc:quit
The width & height may look strange but I'm transcoding this for my laptop and not a portable device. I don't want to use the original VOBs because they are much bigger in size.

The problem I've got is that the end result only appears to contain the output from the first two VOB files. I don't understand why the other two files aren't being included in the MP4 output file.

Have I overlooked an option or something?

--Philip