annotate DOCS/README @ 60:434a367c673d

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