annotate DOCS/README @ 10:ab921a7ef863

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