Code: Select all
wget http://www.videolan.org/pub/libdvdcss/1.2.12/libdvdcss-1.2.12.tar.bz2
bzip2 libdvdcss-1.2.12.tar.bz2
tar -xvf libdvdcss-1.2.12.tar
cd libdvdcss-1.2.12
./configure
make
make install
Code: Select all
sudo cp /usr/local/lib/libdvdcss* /lib
Code: Select all
mplayer dvd://1
Code: Select all
mplayer dvd://1 -dumpstream -dumpfile dvd.mpg
Yep a physical DVD drive connected via USB.ghans wrote:Is that a "real" external ODD ?
Code: Select all
mkfifo /tmp/dvdpipe
mplayer dvd://1 -dumpstream -dumpfile /tmp/dvdpipe &
omxplayer -r /tmp/dvdpipe

I've got as far as that, but only for unencrypted stuff I recorded myself.mikerr wrote:omxplayer can play individual .vob files (in chunks of 1GB)
Code: Select all
wget http://www.videolan.org/pub/libdvdcss/1.2.12/libdvdcss-1.2.12.tar.bz2
bzip2 libdvdcss-1.2.12.tar.bz2
tar -xvf libdvdcss-1.2.12.tar
cd libdvdcss-1.2.12
./configure
make
make install
Code: Select all
sudo cp /usr/local/lib/libdvdcss* /lib
Code: Select all
mkfifo /tmp/dvdpipe
mplayer dvd://1 -dumpstream -dumpfile /tmp/dvdpipe 1>/dev/null 2>/dev/null </dev/null &
omxplayer -r /tmp/dvdpipe




They're bang on except for the sudo and the bunzip.mikerr wrote:Great, glad to hear you got it working - and it verifies my instructions are correct


Hark at Mr smug.mikerr wrote:Ahem... I now have it working in XBMC GUI![]()
Yes, I can play commercial DVDs on XBMC entirely with my MCE remote, no SSH or keyboard needed !
Code: Select all
mkfifo /dvd/dvd.mpg
while :
do
mplayer dvd://1 -dumpstream -dumpfile /dvd/dvd.mpg 1>null 2>null
sleep 5
done
