Mercurial > mplayer.hg
view DOCS/tech/dvdnav-howto.txt @ 28698:c7a1f29c98c2
r27390 Fix a misleading section in the libavcodec options manual
r27407 Add video driver for Nintendo Wii/GameCube.
r27454 Mention IVTV, S3 and SH_VEU drivers within VIDIX section of manpage.
r27466 Document -lavcopts o, aka libavcodec AVOption.
r27542 'mp3lame' audio output codec was wrongly listed as 'lame'.
r27606 Make -heartbeat-cmd and -stop-xscreensaver sections reference each other.
r27638 add lavfopts matroska suboption
r27639 document lavc/lavf avoption o suboption
r27650 add outdir sub-option to vo png
r27690 whitespace cosmetics
r27691 vo_fbdev now supports -geometry.
r27768 update x264's section with r999 of x264
r27800 improve documentation of latest x264's options
r27801 Clarify screenw/screenh options
author | kraymer |
---|---|
date | Wed, 25 Feb 2009 14:23:07 +0000 |
parents | e708dca1b539 |
children | 92d75e703bc0 |
line wrap: on
line source
How to compile MPlayer with support for dvdnav: Since the versions of dvdnav and dvdread generally shipped with most Linux distributions are outdated and unmaintained remove any traces 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 libdvdread and libdvdnav (in this order) : $ svn co svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdread libdvdread $ cd libdvdread $ ./autogen.sh && ./configure && make (or, if you feel brave and want to help us improve the new build system) $ ./configure2 && make install it as root with $ make install $ svn co svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdnav libdvdnav $ cd libdvdnav $ ./autogen.sh && ./configure && make (or, if you feel brave and want to help us improve the new build system) $ ./configure2 && make install it as root with $ make install From within the MPlayer source tree run $ ./configure --disable-dvdread-internal followed by your preferred parameters. Be warned that you *MUST* disable MPlayer's internal copy of dvdread or something - most likely - won't work as expected (if at all). After configure is run it should say that support for dvdnav and dvdread was enabled. If not, investigate the dvdnav and dvdread sections in configure.log and try to understand what went wrong. If you can't solve the problem yourself post the two sections to mplayer-users. Notice: Audio and subtitle language selection by means of menus doesn't work yet. Nonetheless they can be switched as usual at any time during playback by pressing '#' and 'j' (or the keys you chose to override those two bindings).