I'm using VLC on a freshly installed Debian. I want to watch a movie from DVD, which can only be opened via dvdsimple:// and is additionally to long to fit on one disc. Since my DVD drive is loud and I don't like switching DVDs while watching, I created two images from the discs onto my HD. Mounted them as /media/disc1 and /media/disc2, attached them to the playlist as
Code: Select all
<track>
<location>dvdsimple:///media/disc1#1</location>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>0</vlc:id>
<vlc:option>audio-track=2</vlc:option>
<vlc:option>disc-caching=300</vlc:option>
</extension>
</track>
<track>
<location>dvdsimple:///media/disc2#1</location>
<extension application="http://www.videolan.org/vlc/playlist/0">
<vlc:id>1</vlc:id>
<vlc:option>audio-track=2</vlc:option>
<vlc:option>disc-caching=300</vlc:option>
</extension>
</track>
It works with
Code: Select all
<vlc:option>stop-time=seconds</vlc:option>
Code: Select all
<location>dvdsimple:///media/disc1#1:10</location>
If that is important: I have a lenovo X220t with DVD drive in the docking station (which I do not use any more, having the images on my HD). The DVD won't work with menus in Win7 or debian either (But that's not the point), does work with menu in Windows media player and without menus in either VLC (both freshly installed with uninstalling former versions and deleting all settings). These problems might be related to language mix-ups. The DVD is german, my keyboards and ports of the OS are US-english. If I open the first disc in debian from the console I get
Code: Select all
vlc dvdsimple:///media/disc1#1 :audio-track=2
VLC media player 2.0.3 Twoflower (revision 2.0.2-93-g77aa89e)
[0x2156108] main libvlc: VLC wird mit dem Standard-Interface ausgeführt. Benutzen Sie 'cvlc', um VLC ohne Interface zu verwenden.
libdvdread: Using libdvdcss version 1.2.13 for DVD access
libdvdread: Attempting to use device /dev/loop2 mounted on /media/disc1 for CSS authentication
libdvdread: Could not open /dev/loop2 with libdvdcss.
libdvdread: Can't open /dev/loop2 for reading
libdvdread: Device /dev/loop2 inaccessible, CSS authentication not available.
[0x2682348] main input error: ES_OUT_RESET_PCR called
[0x2682348] main input error: Invalid PCR value in ES_OUT_SET_(GROUP_)PCR !
libva: VA-API version 0.32.0
libva: va_getDriverName() returns 0
libva: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva: va_openDriver() returns -1
[0x2734258] pulse audio output error: PulseAudio server connection failure: Connection refused
edited: Workaround with stop-time options slightly corrected sucht that the syntax is correct.