summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-02 18:17:32 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-09-02 18:17:32 +0000
commitb7c6e3ecb71d54edcbabe5ec6c3712b9368f6a79 (patch)
treed9c8bf4e2d247faf59fc9b9eb4ad1f52565c2bc1 /DOCS
parenteb61c1164a71c22966710b6ce75e1a2c875f31e7 (diff)
downloadmpv-b7c6e3ecb71d54edcbabe5ec6c3712b9368f6a79.tar.bz2
mpv-b7c6e3ecb71d54edcbabe5ec6c3712b9368f6a79.tar.xz
decerebrated-proof guide to the instalation of dvdnav
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24328 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/tech/dvdnav-howto.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/DOCS/tech/dvdnav-howto.txt b/DOCS/tech/dvdnav-howto.txt
new file mode 100644
index 0000000000..986f639a6b
--- /dev/null
+++ b/DOCS/tech/dvdnav-howto.txt
@@ -0,0 +1,29 @@
+How to compile mplayer with support for dvdnav:
+
+since the versions of dvdnav and dvdread generally shipped with most Linux
+distributions are generally outdated and unmaintained remove any piece of
+dvdnav and dvdread from your computer (something like the command below
+should suffice):
+$ rm -rf /usr/lib/libdvdnav* /usr/lib/libdvdread* /usr/include/dvdnav* \
+ /usr/include/dvdread* /usr/local/lib/libdvdnav* \
+ /usr/local/lib/libdvdread* /usr/local/include/dvdnav* \
+ /usr/local/include/dvdread* /usr/bin/dvdnav-config \
+ /usr/local/bin/dvdnav-config
+
+Now download dvdnav from MPHQ (dvdnav includes its own version of dvdread):
+$ svn co svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdnav libdvdnav
+$ cd libdvdnav
+$ ./autogen.sh && ./configure && make
+install it as root with
+$ make install
+
+Cd to MPlyer's source tree and run ./configure with your preferred parameters.
+After ./configure is run it should say that support for dvdnav and dvdread was enabled,
+otherwise investigate in configure.log the sections relative to the two libraries
+and try to understand what went wrong; if you can't solve the problem yourself
+post to mplayer-users the two sections.
+
+Notice: animated menus are working, but still menus and still scenes are not yet supported.
+Also, audio and subtitle languages selection by means of menus don't work yet, but
+they can be switched as usual at any time during playback pressing '#' and 'j'
+(or with the keys you chose to override those two bindings).