annotate DOCS/README @ 96:2c04d6650bc9

very much changes
author gabucino
date Mon, 12 Mar 2001 14:56:55 +0000
parents 2d68bae1aca3
children 845cef1a5ba0
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 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
77 - mga: Matrox G200/G400 hardware YUV overlay via the mga_vid device
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
78 - xmga: Matrox G200/G400 overlay (mga_vid) in X11 window
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
79 (Xv emulation on X 3.3.x !)
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
80 - x11: X11 optionally with SHM extension
69
fa426a6cf8e3 "DGA only for 24/32bpp" info added
gabucino
parents: 67
diff changeset
81 - dga: X11 DGA extension (only in 24/32bpp)
fa426a6cf8e3 "DGA only for 24/32bpp" info added
gabucino
parents: 67
diff changeset
82 - fsdga:X11 DGA extension with fullscreen scaling (only 24/32bpp and MPEG!)
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
83 - xv: X11 using overlays with the Xvideo extension (hardware YUV & scaling)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
84 - gl: OpenGL renderer, works only with Utah-GLX! (no DRI or nVidia drivers)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
85 - syncfb: Matrox G400 YUV support on framebuffer (not tested, maybe broken)
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
86 - 3dfx: Voodoo2/3 hardware YUV (/dev/3dfx) support (not yet tested, maybe broken)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
87 - sdl: SDL >= v1.1.7 driver (slower than 'x11', but supports software scaling)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
88 (NOT supported by us! Don't submit SDL bugreports!)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
89 - null: Null output (for speed tests/benchmarking)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
90 - pgm: PGM file output (for testing purposes)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
91 - md5: MD5sum output (for mpeg conformance tests)
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
92
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
93 NOTE: not all are available for AVI files
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
94
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
95 Supported audio output devices:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
96 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
97 - OSS driver
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
98 - ALSA driver with OSS emulation
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
99 - ESD with the esddsp utility
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
100
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
101 NOTE: check DOCS/SOUNDCARDS !
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
102
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
103 Speed:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
104 ~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
105 Most of time-critical parts are optimized for MMX/SSE/3DNow!.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
106 You can improve rendering speed by setting up MTRR registers, see doc in MTRR.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
107 Some benchmark results can be found in the doc file SPEED.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
108
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
109 Usage:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
110 ~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
111 mplayer [options] [-vo driver] [path/]filename
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
112
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
113 Options:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
114 see mplayer -h for options
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
115 see mplayer -vo help for available output drivers
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
116
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
117 Keys:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
118 <- or -> seek backward/forward 10 seconds
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
119 up or down seek backward/forward 1 minute
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
120 p or SPACE pause movie (press any key to continue)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
121 q or ^C stop playing and quit program
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
122
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
123 Examples:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
124 mplayer -vo x11 /mnt/Films/Contact/contact2.mpg
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
125 mplayer -afm 3 /mnt/DVDtrailers/alien4.vob
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
126 mplayer -vcd 2 /dev/cdrom
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
127 mplayer -alsa -abs 65536 -delay -0.4 -nobps ~/movies/test.avi
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
128
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
129 Note: for using Matrox YUV driver (-vo mga or xmga), you have to first
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
130 load the driver: insmod drivers/mga_vid.o
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
131
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
132 License:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
133 ~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
134 Since MPlayer incorporates a lot of code from other projects, this isn't
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
135 decided yet.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
136 We're going for GPL (will be pretty hard, though).
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
137
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
138 TV output:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
139 ~~~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
140 If you have a Matrox G400 Dual-Head card, you can watch movies on TV,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
141 using TV-out feature of the second head. You must have matroxfb support
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
142 enabled in your kernel (2.4.x kernels). You don't need X11 for this!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
143 Tested only with PAL TV!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
144
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
145 cd TVout
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
146 ./modules
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
147 ./cloning or ./independ
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
148 ./TV-704x528 (or another TV* script)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
149
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
150 Sending bugreports:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
151 ~~~~~~~~~~~~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
152 First please read all the docs in this package, most of the problems are
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
153 described somewhere. At least read the Troubleshooting section!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
154 We don't like answering questions which are already answered in this
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
155 readme or other docs.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
156 You should try the latest test (pre) release version too, maybe your bug
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
157 is already fixed, but the new version hasn't been released.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
158 If you couldn't solve the problem, then send a quality bugreport
40
2fed43f60181 New data on mailing lists
gabucino
parents: 20
diff changeset
159 via E-Mail to the MPlayer-users list : mplayer-users@lists.sourceforge.net
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
160
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
161 *NEVER* send attached AVIs, MPEGs, or any big files to this list!!!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
162 Upload them to ftp://thot.banki.hu/incoming , and inform the list about
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
163 your upload.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
164
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
165 Please include these:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
166 - your kernel version number ('uname -a')
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
167 - linux distribution and glibc version (example: Slackware 7.1 + glibc 2.1.3)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
168 - gcc and binutils version ('gcc -v' and 'as --version')
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
169 - your X11 version (example: X 4.0.2 + DRI snapshot2001jan12)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
170 - video card vendor/model (example: Matrox G400 MAX AGP)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
171 - CPU vendor and type (example: Intel Celeron2-566 at 850MHz)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
172
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
173 Also include the required logs (as attachment, may be compressed zip/gz/bz2)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
174 depending the problem type (see bellow at Troubleshooting section).
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
175
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
176 To log output to a file, use the &> shell operator. For example:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
177 ./configure &>configure.log
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
178 mplayer -v test.avi &>play.log
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
179
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
180 If we ask you for the file, then you have two choices:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
181 - upload the file to ftp://thot.banki.hu/incoming (at least a few megabytes)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
182 - send the exact URL of the file, and we'll download it soon.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
183
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
184 Please do not ask for features already listed in the TODO!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
185
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
186 Troubleshooting:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
187 ~~~~~~~~~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
188 1. Please read the docs first...
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
189
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
190 2. If you have compiling problems:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
191 - if you are an experienced programmer, please try to fix it, and send
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
192 us the patch
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
193 - if gcc reports problems around inttypes.h, try to copy DOCS/inttypes.h
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
194 to the directory where the error occured. (or upgrade glibc to 2.1/newer)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
195 - if gcc reports problems around video_out_gl.c, try disabling OpenGL
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
196 support: ./configure --disable-gl (you have broken OpenGL headers/libs)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
197 - if you are a user, send us a bugreport (see above), including these:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
198 - output of ./configure
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
199 - output of make dep and make
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
200 - config.h and all of config.mak files
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
201 Note: many users reported that SSE was not detected while running on P3.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
202 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
203 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
204
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
205 3. If you have a problem with the player, please run it with -v option, and
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
206 send the output of it, with a detailed description of the problem.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
207 - can't play AVI files: check that codec .DLL and .ACM files are installed to
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
208 /usr/lib/win32/ and are all lowercase (divxc32.dll instead of DivXc32.DLL)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
209
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
210 4. If you have a file-specific problem (can't play a special file,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
211 crashes with it or similar) then please run with -v -v -v (debug level 3).
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
212 Send us the output and the problem description via email bugreport.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
213 We may ask you to upload the file.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
214 - 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
215 - if it's still bad, try with -nosound
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
216
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
217 5. If you have problem with display driver, please first check the list above,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
218 many of them isn't yet capable to AVI playing, and some of them are
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
219 untested and/or unfinished.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
220
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
221 6. If you have speed problems (too slow playing), then please first check that:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
222 - you don't use OpenGL driver while have software-only opengl (DRI disabled,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
223 or not yet installed, conflicting libs installed, or your hardware not
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
224 supported etc...)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
225 - you have set up MTRR registers properly (many new cards are really
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
226 slow without setting up MTRR registers. it's NOT done by X 3.3.x! Also,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
227 there are older K6-2's, which lack MTRR support /stepping=0/).
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
228 - you have a fast machine (don't report that your 386 can't play DivX)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
229 - try with Null output (-vo null) and check CPU usage (first % value)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
230
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
231 7. sound-related problems:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
232 - maybe your card doesn't support 48kHz playback and the movie requires it.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
233 - try player with the -noalsa option
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
234 - delayed audio with some AVI files: try with -bps or -nobps option!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
235 - if you experienced delayed audio, try to compensate with -delay or -abs.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
236 you can specify audio card's buffer size in bytes with -abs option, or
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
237 specify audio delay in seconds (positive/negative float) with -delay
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
238 for example: mplayer -alsa -delay -0.75 test.avi
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
239 mplayer -abs 65536 -delay 0.3 test.mpg
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
240 - to play AVI files with VBR MP3 audio use the -mc 0 option!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
241 - no sound at all: check that you have working OSS driver (/dev/dsp),
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
242 and it isn't used by another program (for example esd, xmms etc.)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
243
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
244 8. unsupported codecs (AVI files):
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
245 We may add support for your movie, but we need the following things:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
246 - the codec DLL file: find it in your WINDOWS directory. In the SYSTEM.INI
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
247 there will be a listing of the installed codecs (vids.<codecname>=DLLfile)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
248 - a sample file encoded with that codec.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
249
6
7465ff4ad354 *** empty log message ***
gabucino
parents: 1
diff changeset
250 Contact information:
7465ff4ad354 *** empty log message ***
gabucino
parents: 1
diff changeset
251 ~~~~~~~~~~~~~~~~~~~~
10
ab921a7ef863 Updated links
gabucino
parents: 9
diff changeset
252 Homepage: http://mplayer.sourceforge.net
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
253
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
254 Mailing lists:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
255 ~~~~~~~~~~~~~~
60
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
256 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
257 the following addresses:
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
258
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
259 - MPlayer-users
60
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
260 http://lists.sourceforge.net/lists/listinfo/mplayer-users
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
261 - MPlayer-announce
60
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
262 http://lists.sourceforge.net/lists/listinfo/mplayer-announce
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
263 - MPlayer-Matrox-users
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
264 http://lists.sourceforge.net/mailman/listinfo/mplayer-matrox
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
265
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
266 Standard Disclaimer:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
267 ~~~~~~~~~~~~~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
268 Use only at your own risk! There may be errors and inaccuracies that could
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
269 be damaging to your system or your eye. Proceed with caution, and although
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
270 this is highly unlikely, I don't take any responsibility for that!