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 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