Merge svn changes up to r28204
[mplayer/glamo.git] / README
blob62e6d7b7a9b321beaaf1469782d2eacbc1e397a3
1 Welcome to MPlayer, The Movie Player. MPlayer can play most standard video
2 formats out of the box and almost all others with the help of external codecs.
3 MPlayer currently works best from the command line, but visual feedback for
4 many functions is available from its onscreen status display (OSD), which is
5 also used for displaying subtitles. MPlayer also has a GUI with skin support and
6 several unofficial alternative graphical frontends are available.
8 MEncoder is a command line video encoder for advanced users that can be built
9 from the MPlayer source tree. Unofficial graphical frontends exist but are
10 not included.
12 This document is for getting you started in a few minutes. It cannot answer all
13 of your questions. If you have problems, please read the documentation in
14 DOCS/HTML/en/index.html, which should help you solve most of your problems.
15 Also read the man page to learn how to use MPlayer.
18 Requirements:
19 - You need a working development environment that can compile programs.
20   On popular Linux distributions, this means having the glibc development
21   package(s) installed.
22 - To compile MPlayer with X11 support, you need to have the X Window System
23   development packages (like for XFree86 or X.Org) installed.
24 - For the GUI you need the GTK development packages.
27 Before you start...
28 Make sure that your version of X has Xvideo support, without it even very
29 fast machines may not be able to properly play high resolution videos in
30 fullscreen mode. Consult DOCS/HTML/en/video.html for details. There you may
31 also find out about special card-specific video output drivers that can yield
32 optimal performance.
35 ______________________
36 STEP0: Getting MPlayer
37 ~~~~~~~~~~~~~~~~~~~~~~
39 Official releases and Subversion snapshots, as well as binary codec packages
40 and a number of different skins for the GUI are available from the download
41 section of our homepage at
43   http://www.mplayerhq.hu/dload.html
45 MPlayer has builtin support for the most common audio and video formats. For a
46 few formats no native decoder exists and external binary codecs are required
47 to handle them. Examples are newer RealVideo variants and a variety of rare
48 formats. However, binary codecs are NOT required in this day and age, they are
49 strictly optional.
51 Please note that binary codecs only work on the processor architecture they
52 were compiled for. Choose the correct package for your processor. No other
53 package is necessary.
55 The GUI needs at least one skin and codec packages add support for some more
56 video and audio formats. MPlayer does not come with any of these by default,
57 you have to download and install them separately.
59 You can also get MPlayer via Subversion. Issue the following commands to get
60 the latest sources:
62   svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
64 A directory named 'mplayer' will be created. It will include all necessary
65 FFmpeg libraries, you don't need to get them separately as was the case in
66 the past. You can later update your sources by saying
68   svn update
70 from within that directory.
73 _______________________________
74 STEP1: Installing Binary Codecs
75 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
77 Unpack the codecs archives and put the contents in a directory where MPlayer
78 will find them. The default directory is /usr/local/lib/codecs/ (it used to be
79 /usr/local/lib/win32 in the past, this also works) but you can change that to
80 something else by passing the '--codecsdir' option to './configure'.
83 __________________________
84 STEP2: Configuring MPlayer
85 ~~~~~~~~~~~~~~~~~~~~~~~~~~
87 MPlayer can be adapted to all kinds of needs and hardware environments. Run
89   ./configure
91 to configure MPlayer with the default options. GUI support has to be enabled
92 separately, run
94   ./configure --enable-gui
96 if you want to use the GUI.
98 If something does not work as expected, try
100   ./configure --help
102 to see the available options and select what you need.
104 The configure script prints a summary of enabled and disabled options. If you
105 have something installed that configure fails to detect, check the file
106 configure.log for errors and reasons for the failure. Repeat this step until
107 you are satisfied with the enabled feature set.
110 ________________________
111 STEP3: Compiling MPlayer
112 ~~~~~~~~~~~~~~~~~~~~~~~~
114 Now you can start the compilation by typing
116   make
118 You can install MPlayer with
120   make install
122 provided that you have write permission in the installation directory.
124 If all went well, you can run MPlayer by typing 'mplayer'. A help screen with a
125 summary of the most common options and keyboard shortcuts should be displayed.
127 If you get 'unable to load shared library' or similar errors, run
128 'ldd ./mplayer' to check which libraries fail and go back to STEP 3 to fix it.
129 Sometimes running 'ldconfig' is enough to fix the problem.
131 NOTE: If you run Debian you can configure, compile and build a proper Debian
132 .deb package with only one command:
134   fakeroot debian/rules binary
136 If you want to pass custom options to configure, you can set up the
137 DEB_BUILD_OPTIONS environment variable. For instance, if you want GUI
138 and OSD menu support you would use:
140   DEB_BUILD_OPTIONS="--enable-gui --enable-menu" fakeroot debian/rules binary
142 You can also pass some variables to the Makefile. For example, if you want
143 to compile with gcc 3.4 even if it's not the default compiler:
145   CC=gcc-3.4 DEB_BUILD_OPTIONS="--enable-gui" fakeroot debian/rules binary
147 To clean up the source tree run the following command:
149   fakeroot debian/rules clean
151 ______________________________________
152 STEP4: Choose an onscreen display font
153 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
155 You can use any TrueType font installed on your system. Just pass '-font
156 /path/to/font.ttf' on the command line or add 'font=/path/to/font.ttf' to
157 your configuration file. The manual page has more details. Alternatively
158 you can create a symbolic link from either ~/.mplayer/subfont.ttf or
159 /usr/local/share/mplayer/subfont.ttf to your TrueType font.
162 ____________________________
163 STEP5: Installing a GUI skin
164 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
166 Unpack the archive and put the contents in /usr/local/share/mplayer/skins/ or
167 ~/.mplayer/skins/. MPlayer will use the skin in the subdirectory named default
168 of /usr/local/share/mplayer/skins/ or ~/.mplayer/skins/ unless told otherwise
169 via the '-skin' switch. You should therefore rename your skin subdirectory or
170 make a suitable symbolic link.
173 __________________
174 STEP6: Let's play!
175 ~~~~~~~~~~~~~~~~~~
177 That's it for the moment. To start playing movies, open a command line and try
179   mplayer <moviefile>
181 or for the GUI
183   gmplayer <moviefile>
185 gmplayer is a symbolic link to mplayer created by 'make install'.
186 Without <moviefile>, gmplayer will start with the GUI filepicker.
188 To play a VCD track or a DVD title, try:
190   mplayer vcd://2 -cdrom-device /dev/hdc
191   mplayer dvd://1 -alang en -slang hu -dvd-device /dev/hdd
193 See 'mplayer -help' and 'man mplayer' for further options.
195 'mplayer -vo help' will show you the available video output drivers. Experiment
196 with the '-vo' switch to see which one gives you the best performance.
197 If you get jerky playback or no sound, experiment with the '-ao' switch (see
198 '-ao help') to choose between different audio drivers. Note that jerky playback
199 is caused by buggy audio drivers or a slow processor and video card. With a
200 good audio and video driver combination, one can play DVDs and 720x576 MPEG-4
201 files smoothly on a Celeron 366. Slower systems may need the '-framedrop'
202 option.
204 Questions you may have are probably answered in the rest of the documentation.
205 The places to start reading are the man page, DOCS/HTML/en/index.html and
206 DOCS/HTML/en/faq.html. If you find a bug, please report it, but first read
207 DOCS/HTML/en/bugreports.html.