I'm trying to write a batch file (script) to rip some DVD titles to MP4 files. What I'm finding is that it streams the title fine, but it won't move on (in the playlist). Instead, at the end of the title, the total run time is replaced by something small (e.g. from 3:45 to 1:10) and the progress bar reverts to zero, and it just sits there. If I add "vlc://quit" to the command line, it appears in the playlist, but the play (selection) bar never moves on to it, so my batch file 'hangs'. If I quit VLC manually, then it works, but I have to do this for all 30 titles on my DVD!
Someone previously posted a similar question, and they were solved by using "dvdsimple", but that option doesn't appear to exist in the latest build.
Here is my command line, can anyone tell me what I could do to make it move on?
Code: Select all
"C:\Program Files\VideoLAN\VLC\vlc.exe" --no-dvdnav-menu -vvv dvd:///"E:/Convert DVD for Mike/DVD_name/VIDEO_TS"#28 --sout=#transcode{vcodec=h264,vb=0,scale=0,acodec=mpga,ab=128,channels=2,samplerate=44100}:duplicate{dst=std{access=file,mux=mp4,dst="E:\Convert DVD for Mike\DVD_name\track28.mp4"}} vlc://quit
Thanks!