Hi
I'm trying to make vlc play a series of dvd titles in sequence. Through a script I generate a playlist and feed it to vlc. The vlc command I run may look like this:
cvlc --sub-language da,en -f big_bang_theory_1_1.iso@2 big_bang_theory_3_1.iso@4 vlc://quit
Now, I don't think it is a surprise that I want it to play a couple episodes from a tv series. However, after the first episode has been played I end up at the title menu and has to click next to move on. It happens for most of the series I have (West Wing is the only series is where it doesn't happen).
I have doing something like:
for FILE in ${filelist} # filelist = (big_bang_theory_1_1.iso@2, big_bang_theory_3_1.iso@4)
do
cvlc --sub-language da,en -f ${FILE} vlc://quit
done
and adding --no-dvdnav-menu but that doesn't change a thing.
Hope somebody has some ideas.
Yours
/peter