Dvd-plugin
From VDR Wiki
(Difference between revisions)
m (image) |
m |
||
| Line 16: | Line 16: | ||
==Installation== | ==Installation== | ||
To install a52dec | To install a52dec | ||
| - | + | cd $SOURCEDIR | |
| - | cd $SOURCEDIR | + | tar -xvzf a52dec-<VERSION>.tar.gz |
| - | tar -xvzf a52dec-<VERSION>.tar.gz | + | cd a52dec-<VERSION> |
| - | cd a52dec-<VERSION> | + | ./configure --prefix=/usr/local |
| - | ./configure --prefix=/usr/local | + | make |
| - | make | + | make install |
| - | make install | + | ldconfig |
| - | ldconfig | + | |
| - | + | ||
and libdvdnav | and libdvdnav | ||
| - | + | cd $SOURCEDIR | |
| - | cd $SOURCEDIR | + | tar -xvzf libdvdnav-<VERSION>.tar.gz |
| - | tar -xvzf libdvdnav-<VERSION>.tar.gz | + | cd libdvdnav-<VERSION> |
| - | cd libdvdnav-<VERSION> | + | ./configure --prefix=/usr/local |
| - | ./configure --prefix=/usr/local | + | make |
| - | make | + | make install |
| - | make install | + | ldconfig |
| - | ldconfig | + | |
| - | + | ||
See also [[plugin installation]]. | See also [[plugin installation]]. | ||
| Line 41: | Line 37: | ||
===Options=== | ===Options=== | ||
As the libraries are installed with ''--prefix=/usr/local'', the '''Makefile''' has to be adapted | As the libraries are installed with ''--prefix=/usr/local'', the '''Makefile''' has to be adapted | ||
| - | + | - NAVDIR = /usr/include/dvdnav | |
| - | - NAVDIR = /usr/include/dvdnav | + | + NAVDIR = /usr/local/include/dvdnav |
| - | + NAVDIR = /usr/local/include/dvdnav | + | |
| - | + | ||
| Line 61: | Line 55: | ||
==CVS== | ==CVS== | ||
| - | + | cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dvdplugin login | |
| - | cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dvdplugin login | + | cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dvdplugin co dvd |
| - | cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dvdplugin co dvd | + | |
| - | + | ||
==Links== | ==Links== | ||
Revision as of 22:24, 30 November 2004
Contents |
Description
The DVD plugin can play DVDs with there DVD menu.
|
Hint |
|
The usage and distribution of the libdvdcss library is illegal in some countries (e.g. USA). The plugin does not need this library, but then CSS protected DVDs cannot be played. |
Hardware requirements
- DVD drive
Software requirements
- a52dec
- libdvdnav
Installation
To install a52dec
cd $SOURCEDIR tar -xvzf a52dec-<VERSION>.tar.gz cd a52dec-<VERSION> ./configure --prefix=/usr/local make make install ldconfig
and libdvdnav
cd $SOURCEDIR tar -xvzf libdvdnav-<VERSION>.tar.gz cd libdvdnav-<VERSION> ./configure --prefix=/usr/local make make install ldconfig
See also plugin installation.
Options
As the libraries are installed with --prefix=/usr/local, the Makefile has to be adapted
- NAVDIR = /usr/include/dvdnav + NAVDIR = /usr/local/include/dvdnav
Configuration
Parameter
| Parameter (short) | Parameter (long) | Description |
|---|---|---|
| -C DEV | --dvd=DEV | use DEV as the DVD device (default: /dev/dvd) |
Problems
CVS
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dvdplugin login cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dvdplugin co dvd
Links
| [1] | http://jausoft.com/Files/vdr/vdr-dvd | Plugin homepage |
| [2] | http://sourceforge.net/projects/dvdplugin | Projekt site at SourceForge |
| [3] | http://liba52.sourceforge.net | A free ATSC A/52-Stream-Dekoder |
| [4] | http://developers.videolan.org | VideoLAN developer homepage |
| [5] | http://dvd.sourceforge.net | DVD resources for Open-Source development |
