1
|
1 MoviePlayer v0.11 (C) 2000-2001. by Arpad Gereoffy (A'rpi/ESP-team)
|
|
2 ================= * See the file AUTHORS for the complete list! *
|
|
3
|
|
4 About:
|
|
5 ~~~~~~
|
|
6 Yes. Yet another movie player for linux.
|
|
7 What is the special with this? It works, at least for me :)
|
|
8 I've tried lots of players under linux (mtv,xmps,dvdview,livid/oms,VideoLAN,
|
|
9 xine,xanim,avifile,xmmp) but they all have some problem. Mostly with
|
|
10 special files or with audio/video sync. Most of them is unable to play
|
|
11 both mpeg1, mpeg2 and avi (DivX) files. Many players have image quality
|
|
12 or speed problems too. So I've decided to write/modify one...
|
|
13
|
|
14 Short history:
|
|
15 - mpg12play v0.1 has born, using libmpeg3 from www.heroinewarrior.com
|
|
16 - mpg12play 2nd generation (v0.5-), using dvdview by Dirk Farin
|
|
17 - mpg12play 3nd generation (v0.9-), using libmpeg2 (mpeg2dec) by Aaron Holtzman
|
|
18 - mplayer has born, containing mpg12play 0.90pre5 and a new simple avi player
|
|
19 - mplayer 0.10, mpeg and avi player in a single binary
|
|
20 - mplayer 0.11: added .asf file support, and OpenDivX en/decoding
|
|
21
|
|
22 As you see, I didn't write any codecs, just some players. But I spent
|
|
23 a lot of time finding the best way to parse bad damaged input files
|
|
24 (both mpg and avi) and to do perfect A-V sync with seeking ability.
|
|
25 My player is rock solid playing damaged mpeg files (useful for some VCDs),
|
|
26 and it plays bad AVI files which are unplayable with the famous
|
|
27 windows media player. Even AVI files without index chunk are playable!
|
|
28 As you see, stability and quality are the most important things for me,
|
|
29 speed has lower priority, but is still very important.
|
|
30
|
|
31 What about the GUI?
|
|
32 I'm not a GUI programmer. I hate GUIs, I like the pure black 80x25 console.
|
|
33 So the player has only keyboard control from the controlling console/xterm now.
|
|
34 But there is a GUI development for the player, coordinated by Pontscho/Fresh!
|
|
35 It's still under development, but it will be merged and released soon.
|
|
36 BTW he needs some nice skins, if you are a good graphician, contact him!!!
|
|
37
|
|
38 Win32 codecs?
|
352
|
39 Yes, we are using Win32 (Video for Windows, DirectShow) codecs for AVI/ASF
|
|
40 decoding. They must be installed to the /usr/lib/win32/ directory, with all
|
|
41 lower case. You can grab the codecs package from our homepage, or can be found
|
|
42 in your C:\WINDOWS\SYSTEM\ dir, see codecs.c for filenames.
|
1
|
43
|
|
44 Supported input formats:
|
|
45 ~~~~~~~~~~~~~~~~~~~~~~~~
|
|
46 - VCD (Video CD) directly from CD-ROM or from CDRwin's .bin image file
|
|
47 - MPEG 1/2 System Stream (PS/VOB) and Elementary Stream (ES) file formats
|
|
48 - RIFF AVI file format
|
|
49 - ASF 1.0 file format
|
|
50
|
352
|
51 Supported audio & video codecs:
|
|
52 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
53 See DOCS/CODECS for complete list.
|
1
|
54
|
|
55 Supported video output devices:
|
|
56 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
96
|
57 - mga: Matrox G200/G400 hardware YUV overlay via the mga_vid device
|
|
58 - xmga: Matrox G200/G400 overlay (mga_vid) in X11 window
|
1
|
59 (Xv emulation on X 3.3.x !)
|
352
|
60 - syncfb: Matrox G400 YUV support on framebuffer (not tested, maybe broken)
|
96
|
61 - xv: X11 using overlays with the Xvideo extension (hardware YUV & scaling)
|
352
|
62 - x11: X11 with SHM extension
|
96
|
63 - gl: OpenGL renderer, works only with Utah-GLX! (no DRI or nVidia drivers)
|
352
|
64 - dga: X11 DGA extension
|
|
65 - fsdga:X11 DGA extension with fullscreen scaling (only 24/32bpp and MPEG!)
|
|
66 - sdl: SDL >= v1.1.7 driver (supports software scaling, and versions >=1.1.8
|
|
67 even support Xvideo, thus hardware rendering)
|
|
68 (NOT supported by us! Don't submit SDL bugreports!)
|
|
69 - fbdev:Output to general framebuffers
|
|
70 - svga: Output to SVGAlib
|
|
71 - null: Null output (for speed tests/benchmarking)
|
96
|
72 - 3dfx: Voodoo2/3 hardware YUV (/dev/3dfx) support (not yet tested, maybe broken)
|
352
|
73 - odivx:OpenDivX AVI File writer
|
96
|
74 - pgm: PGM file output (for testing purposes)
|
|
75 - md5: MD5sum output (for mpeg conformance tests)
|
|
76
|
281
|
77 NOTE: check DOCS/VIDEOCARDS !
|
1
|
78
|
|
79 Supported audio output devices:
|
|
80 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
81 - OSS driver
|
281
|
82 - ALSA driver with OSS emulation (NOT recommended, causes annoying delays)
|
|
83 - ESD with the esddsp utility (not tested)
|
1
|
84
|
96
|
85 NOTE: check DOCS/SOUNDCARDS !
|
|
86
|
1
|
87 Speed:
|
|
88 ~~~~~~
|
|
89 Most of time-critical parts are optimized for MMX/SSE/3DNow!.
|
|
90 You can improve rendering speed by setting up MTRR registers, see doc in MTRR.
|
|
91 Some benchmark results can be found in the doc file SPEED.
|
|
92
|
|
93 Usage:
|
|
94 ~~~~~~
|
|
95 mplayer [options] [-vo driver] [path/]filename
|
|
96
|
|
97 Options:
|
|
98 see mplayer -h for options
|
|
99 see mplayer -vo help for available output drivers
|
|
100
|
|
101 Keys:
|
|
102 <- or -> seek backward/forward 10 seconds
|
|
103 up or down seek backward/forward 1 minute
|
|
104 p or SPACE pause movie (press any key to continue)
|
|
105 q or ^C stop playing and quit program
|
|
106
|
|
107 Examples:
|
|
108 mplayer -vo x11 /mnt/Films/Contact/contact2.mpg
|
|
109 mplayer -afm 3 /mnt/DVDtrailers/alien4.vob
|
|
110 mplayer -vcd 2 /dev/cdrom
|
|
111 mplayer -alsa -abs 65536 -delay -0.4 -nobps ~/movies/test.avi
|
|
112
|
|
113 Note: for using Matrox YUV driver (-vo mga or xmga), you have to first
|
|
114 load the driver: insmod drivers/mga_vid.o
|
|
115
|
|
116 License:
|
|
117 ~~~~~~~~
|
|
118 Since MPlayer incorporates a lot of code from other projects, this isn't
|
|
119 decided yet.
|
|
120 We're going for GPL (will be pretty hard, though).
|
|
121
|
|
122 TV output:
|
|
123 ~~~~~~~~~~
|
|
124 If you have a Matrox G400 Dual-Head card, you can watch movies on TV,
|
|
125 using TV-out feature of the second head. You must have matroxfb support
|
|
126 enabled in your kernel (2.4.x kernels). You don't need X11 for this!
|
|
127 Tested only with PAL TV!
|
|
128
|
|
129 cd TVout
|
|
130 ./modules
|
|
131 ./cloning or ./independ
|
|
132 ./TV-704x528 (or another TV* script)
|
|
133
|
|
134 Sending bugreports:
|
|
135 ~~~~~~~~~~~~~~~~~~~
|
|
136 First please read all the docs in this package, most of the problems are
|
|
137 described somewhere. At least read the Troubleshooting section!
|
|
138 We don't like answering questions which are already answered in this
|
|
139 readme or other docs.
|
|
140 You should try the latest test (pre) release version too, maybe your bug
|
|
141 is already fixed, but the new version hasn't been released.
|
|
142 If you couldn't solve the problem, then send a quality bugreport
|
40
|
143 via E-Mail to the MPlayer-users list : mplayer-users@lists.sourceforge.net
|
1
|
144
|
|
145 *NEVER* send attached AVIs, MPEGs, or any big files to this list!!!
|
|
146 Upload them to ftp://thot.banki.hu/incoming , and inform the list about
|
|
147 your upload.
|
|
148
|
|
149 Please include these:
|
|
150 - your kernel version number ('uname -a')
|
|
151 - linux distribution and glibc version (example: Slackware 7.1 + glibc 2.1.3)
|
|
152 - gcc and binutils version ('gcc -v' and 'as --version')
|
|
153 - your X11 version (example: X 4.0.2 + DRI snapshot2001jan12)
|
|
154 - video card vendor/model (example: Matrox G400 MAX AGP)
|
|
155 - CPU vendor and type (example: Intel Celeron2-566 at 850MHz)
|
|
156
|
|
157 Also include the required logs (as attachment, may be compressed zip/gz/bz2)
|
|
158 depending the problem type (see bellow at Troubleshooting section).
|
|
159
|
|
160 To log output to a file, use the &> shell operator. For example:
|
|
161 ./configure &>configure.log
|
|
162 mplayer -v test.avi &>play.log
|
|
163
|
|
164 If we ask you for the file, then you have two choices:
|
|
165 - upload the file to ftp://thot.banki.hu/incoming (at least a few megabytes)
|
|
166 - send the exact URL of the file, and we'll download it soon.
|
|
167
|
|
168 Please do not ask for features already listed in the TODO!
|
|
169
|
|
170 Troubleshooting:
|
|
171 ~~~~~~~~~~~~~~~~
|
|
172 1. Please read the docs first...
|
|
173
|
|
174 2. If you have compiling problems:
|
|
175 - if you are an experienced programmer, please try to fix it, and send
|
|
176 us the patch
|
|
177 - if gcc reports problems around inttypes.h, try to copy DOCS/inttypes.h
|
|
178 to the directory where the error occured. (or upgrade glibc to 2.1/newer)
|
|
179 - if gcc reports problems around video_out_gl.c, try disabling OpenGL
|
|
180 support: ./configure --disable-gl (you have broken OpenGL headers/libs)
|
|
181 - if you are a user, send us a bugreport (see above), including these:
|
|
182 - output of ./configure
|
|
183 - output of make dep and make
|
|
184 - config.h and all of config.mak files
|
|
185 Note: many users reported that SSE was not detected while running on P3.
|
|
186 Current stable 2.2.x kernels does NOT support SSE, so you can't use it
|
6
|
187 without patches or using the 2.4.x series. (or try latest 2.2.19 or newer)
|
1
|
188
|
|
189 3. If you have a problem with the player, please run it with -v option, and
|
|
190 send the output of it, with a detailed description of the problem.
|
|
191 - can't play AVI files: check that codec .DLL and .ACM files are installed to
|
|
192 /usr/lib/win32/ and are all lowercase (divxc32.dll instead of DivXc32.DLL)
|
|
193
|
|
194 4. If you have a file-specific problem (can't play a special file,
|
|
195 crashes with it or similar) then please run with -v -v -v (debug level 3).
|
|
196 Send us the output and the problem description via email bugreport.
|
|
197 We may ask you to upload the file.
|
|
198 - if it segfaults with an AVI file with MP3 audio, try with -afm 1 or -afm 4
|
|
199 - if it's still bad, try with -nosound
|
|
200
|
|
201 5. If you have problem with display driver, please first check the list above,
|
|
202 many of them isn't yet capable to AVI playing, and some of them are
|
|
203 untested and/or unfinished.
|
|
204
|
|
205 6. If you have speed problems (too slow playing), then please first check that:
|
281
|
206 - you don't use OpenGL driver while have software-only opengl (Utah-GLX
|
|
207 disabled, or not yet installed, conflicting libs installed, or your
|
|
208 hardware not supported etc...)
|
1
|
209 - you have set up MTRR registers properly (many new cards are really
|
|
210 slow without setting up MTRR registers. it's NOT done by X 3.3.x! Also,
|
|
211 there are older K6-2's, which lack MTRR support /stepping=0/).
|
281
|
212 Check DOCS/MTRR !
|
1
|
213 - you have a fast machine (don't report that your 386 can't play DivX)
|
|
214 - try with Null output (-vo null) and check CPU usage (first % value)
|
|
215
|
|
216 7. sound-related problems:
|
|
217 - maybe your card doesn't support 48kHz playback and the movie requires it.
|
|
218 - try player with the -noalsa option
|
|
219 - delayed audio with some AVI files: try with -bps or -nobps option!
|
|
220 - if you experienced delayed audio, try to compensate with -delay or -abs.
|
|
221 you can specify audio card's buffer size in bytes with -abs option, or
|
|
222 specify audio delay in seconds (positive/negative float) with -delay
|
|
223 for example: mplayer -alsa -delay -0.75 test.avi
|
|
224 mplayer -abs 65536 -delay 0.3 test.mpg
|
|
225 - to play AVI files with VBR MP3 audio use the -mc 0 option!
|
|
226 - no sound at all: check that you have working OSS driver (/dev/dsp),
|
|
227 and it isn't used by another program (for example esd, xmms etc.)
|
281
|
228 - use OSS. If the problem persists, use ALSA ;)
|
1
|
229
|
|
230 8. unsupported codecs (AVI files):
|
281
|
231 Check DOCS/CODECS
|
1
|
232
|
6
|
233 Contact information:
|
|
234 ~~~~~~~~~~~~~~~~~~~~
|
10
|
235 Homepage: http://mplayer.sourceforge.net
|
1
|
236
|
|
237 Mailing lists:
|
|
238 ~~~~~~~~~~~~~~
|
107
|
239 There are some public mailing lists on MPlayer. Subscribing can be achieved on
|
40
|
240 the following addresses:
|
1
|
241
|
107
|
242 - MPlayer users list: (send your ideas, bugreports, feature requests here)
|
60
|
243 http://lists.sourceforge.net/lists/listinfo/mplayer-users
|
107
|
244
|
|
245 - MPlayer announce: (information about new releases or big changes in CVS)
|
60
|
246 http://lists.sourceforge.net/lists/listinfo/mplayer-announce
|
107
|
247
|
|
248 - MPlayer & Matrox G200/G400/G450 users: (about TV-out, mga_vid, syncfb, Xv)
|
|
249 http://lists.sourceforge.net/lists/listinfo/mplayer-matrox
|
|
250
|
|
251 - MPlayer CVS-log: (announce about _every_ CVS commits)
|
|
252 http://lists.sourceforge.net/lists/listinfo/mplayer-cvslog
|
1
|
253
|
|
254 Standard Disclaimer:
|
|
255 ~~~~~~~~~~~~~~~~~~~~
|
|
256 Use only at your own risk! There may be errors and inaccuracies that could
|
|
257 be damaging to your system or your eye. Proceed with caution, and although
|
|
258 this is highly unlikely, I don't take any responsibility for that!
|