annotate DOCS/README @ 1411:db849cee5777

Pre-allocate some stack space to work around a problem with DLL alloca() code on a linux kernel.
author jkeil
date Sun, 29 Jul 2001 10:17:53 +0000
parents ea586e73d3b3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
1 MPlayer - Movie Player for LINUX (C) 2000-2001 Arpad Gereoffy (A'rpi/ESP-team)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
2 ================================ * See the file AUTHORS for the complete list *
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
3 http://mplayer.sourceforge.net (or http://mplayer.dev.hu)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
4
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
5 About:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
6 ~~~~~~
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
7 MPlayer is a movie player for LINUX. It plays most MPEG, AVI and ASF files,
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
8 supported by many native and Win32 DLL codecs. You can watch VCD, DVD and even
860
edc6758694ed sok csunya ize
gabucino
parents: 806
diff changeset
9 DivX movies too. The another big feature of mplayer is the wide range of
edc6758694ed sok csunya ize
gabucino
parents: 806
diff changeset
10 supported output drivers. It works with X11, Xv, DGA, OpenGL, SVGAlib, fbdev,
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
11 but you can use SDL (and this way all drivers of SDL, for example AAlib) and
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
12 some lowlevel card-specific drivers (for Matrox) too! Most of them supports
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
13 software or hardware scaling, so you can enjoy movies in fullscreen. And what
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
14 about the nice big antialiased shaded subtitles (7 supported types!!!) with
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
15 hungarian, english, cyrillic, czech, korean fonts, and OSD?
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
16
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
17 History:
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
18 ~~~~~~~~
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
19 This began a year ago...
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
20 I've tried lots of players under linux (mtv,xmps,dvdview,livid/oms,VideoLAN,
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
21 xine,xanim,avifile,xmmp) but they all have some problem. Mostly with
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
22 special files or with audio/video sync. Most of them is unable to play
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
23 both MPEG1, MPEG2 and AVI (DivX) files. Many players have image quality
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
24 or speed problems too. So I've decided to write/modify one...
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
25
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
26 - mpg12play v0.1-v0.3:
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
27 The first try, hacked together in a half hour!
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
28 I've used libmpeg3 from www.heroinewarrior.com up to the version 0.3,
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
29 but there were image quality and speed problems with it.
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
30 - mpg12play v0.5-v0.87:
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
31 Mpeg codec replaced with DVDview by Dirk Farin, it was a great stuff,
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
32 but it was slow and was written in C++ (I hate C++!!!)
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
33 - mpg12play v0.9-v0.95pre5:
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
34 Mpeg codec was libmpeg2 (mpeg2dec) by Aaron Holtzman & Michel Lespinasse.
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
35 It's great, optimized very fast C code with perfect image quality and
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
36 100% MPEG standard conformance.
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
37 - MPlayer v0.3-v0.9:
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
38 It was a pack of two programs: mpg12playv0.95pre6 and my new simple AVI
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
39 player 'avip' based on avifile's Win32 DLL loader.
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
40 - MPlayer v0.10:
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
41 The MPEG and AVI player in a single binary!
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
42 - MPlayer v0.11:
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
43 Some new developers joined and from 0.11 the mplayer project is a team-work!
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
44 Added .ASF file support, and OpenDivX (see www.projectmayo.com) en/decoding.
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
45 - MPlayer v0.17 "The IdegCounter"
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
46 The release version of the 0.11pre after 4 months of heavy development!
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
47 Try it, and be amazed! Thousands of new features added... and of course
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
48 old code was improved too, bugs removed etc.
1225
9b974dd1faf0 *** empty log message ***
gabucino
parents: 1201
diff changeset
49 - MPlayer 0.18 "The BugCounter"
1083
f12bd33b31d8 *** empty log message ***
gabucino
parents: 1074
diff changeset
50 2 months since 0.17 and here's a new release.. Completed ASF support,
f12bd33b31d8 *** empty log message ***
gabucino
parents: 1074
diff changeset
51 more subtitle formats, introduced libao (similar to libvo but to audio),
f12bd33b31d8 *** empty log message ***
gabucino
parents: 1074
diff changeset
52 even more stable than ever, and so on. It's a MUST !
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
53
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
54 As you see, I didn't write any codecs, just some players. Instead I spent
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
55 a lot of time finding the best way to parse bad damaged input files
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
56 (both MPEG and AVI) and to do perfect A-V sync with seeking ability.
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
57 My player is rock solid playing damaged MPEG files (useful for some VCDs),
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
58 and it plays bad AVI files which are unplayable with the famous
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
59 windows media player. Even AVI files without index chunk are playable, and
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
60 you can rebuild their indexes with the -idx option, thus enabling seeking!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
61 As you see, stability and quality are the most important things for me,
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
62 but the speed is also amazing.
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
63
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
64 What about the GUI?
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
65 ~~~~~~~~~~~~~~~~~~~
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
66 I'm not a GUI programmer. I hate GUIs, I like the pure black 80x25 console.
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
67 So the player has only keyboard control from the controlling console/xterm now.
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
68 There is a GUI development for the player, coordinated by Pontscho/Fresh!
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
69 It's still under development, but it will be merged and released real soon.
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
70 BTW he needs some nice skins, if you are a good graphician, contact him!!!
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
71
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
72 Supported input formats:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
73 ~~~~~~~~~~~~~~~~~~~~~~~~
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
74 - VCD (Video CD) directly from CD-ROM or from CDRwin's .bin image file
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
75 - DVD, directly from your DVD disk, using optional libcss for decryption
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
76 - MPEG 1/2 System Stream (PS/PES/VOB) and Elementary Stream (ES) file formats
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
77 - RIFF AVI file format
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
78 - ASF 1.0 file format
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
79 - supports reading from file, stdin, DVD drive or network via HTTP
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
80
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
81 Note: about quicktime (.mov/.qt) and realmedia (.ra/.rm) support read the FAQ!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
82
352
94b8455bf69c Sok changes.
gabucino
parents: 281
diff changeset
83 Supported audio & video codecs:
94b8455bf69c Sok changes.
gabucino
parents: 281
diff changeset
84 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
745
c653430f0789 <sigh> links replaced again </sigh>
gabucino
parents: 744
diff changeset
85 *** See http://mplayer.sourceforge.net/DOCS/codecs.html ***
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
86 *** for the complete, daily updated list!!! ***
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
87
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
88 The most important video codecs:
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
89 - MPEG1 (VCD) and MPEG2 (DVD) video
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
90 - DivX, OpenDivX and other MPEG4 variants
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
91 - Windows Media Video 7 (WMV1) used in .wmv files
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
92 - Intel Indeo codecs (3.1,3.2,4.1,5.0)
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
93 - MJPEG, ASV2 and other hardware formats
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
94
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
95 The most important audio codecs:
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
96 - MPEG layer 2, and layer 3 (MP3) audio (native code, with 3dnow optimization)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
97 - AC3 dolby audio (native code, with 3dnow optimization)
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
98 - Voxware audio
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
99 - alaw, msgsm, pcm and other simple old audio formats
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
100
744
6bb9d383c392 CODECS -> codecs.conf
gabucino
parents: 733
diff changeset
101 If you have a codec not listed here, and not supported yet, just
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
102 read http://mplayer.sourceforge.net/DOCS/codecs.html and DOCS/CODECS
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
103 to get info about its status and about how to help us adding support for it!
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
104
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
105 Supported video output devices:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
106 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
107 General:
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
108 - x11: X11 with optional SHM extension
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
109 - xv: X11 using overlays with the Xvideo extension (hardware YUV & scaling)
908
8184b287f1e3 *** empty log message ***
gabucino
parents: 907
diff changeset
110 - gl: OpenGL renderer, so far works only with :
8184b287f1e3 *** empty log message ***
gabucino
parents: 907
diff changeset
111 - all cards with Utah-GLX
8184b287f1e3 *** empty log message ***
gabucino
parents: 907
diff changeset
112 - Matrox cards with X/DRI >=4.0.3
8184b287f1e3 *** empty log message ***
gabucino
parents: 907
diff changeset
113 - Radeon with X/DRI CVS
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
114 - dga: X11 DGA extension
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
115 - fbdev:Output to general framebuffers
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
116 - svga: Output to SVGAlib
1056
d769cd81a215 *** empty log message ***
gabucino
parents: 943
diff changeset
117 - sdl: 1.1.7 : supports software scaling
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
118 1.1.8 : supports Xvideo (hardware scaling/fullscreen)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
119 1.2.0 : supports aalib (textmode rendering, very funny!)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
120 - ggi: similar to SDL
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
121
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
122 Card specific:
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
123 - mga: Matrox G200/G400 hardware YUV overlay via the mga_vid device
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
124 - xmga: Matrox G200/G400 overlay (mga_vid) in X11 window
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
125 (Xv emulation on X 3.3.x !)
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
126 - syncfb: Matrox G400 YUV support on framebuffer (obsoleted, use mga/xmga)
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
127 - 3dfx: Voodoo2/3 hardware YUV (/dev/3dfx) support (not yet tested, maybe broken)
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
128
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
129 Special:
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
130 - png: PNG files output (use -z switch to set compression)
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
131 - pgm: PGM files output (for testing purposes or ffmpeg encoding)
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
132 - md5: MD5sum output (for MPEG conformance tests)
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
133 - odivx:OpenDivX AVI File writer (use -br to set encoding bitrate)
352
94b8455bf69c Sok changes.
gabucino
parents: 281
diff changeset
134 - null: Null output (for speed tests/benchmarking)
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
135
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
136 NOTE: check DOCS/VIDEOCARDS for details and requirements!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
137
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
138 Supported audio output devices:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
139 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
140 - OSS (ioctl) driver
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
141 - SDL driver (supports up/downsampling, esd, arts etc)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
142 - native ALSA 0.5 driver
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
143 - native ALSA 0.9 driver (buggy, use OSS emulation!)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
144 - native ESD driver (under development?)
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
145 - SUN audio driver (/dev/audio) for BSD and Solaris8 users
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
146
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
147 NOTE: check DOCS/SOUNDCARDS for details!
96
2c04d6650bc9 very much changes
gabucino
parents: 70
diff changeset
148
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
149 Speed:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
150 ~~~~~~
764
60296841e0c5 Hungarian: v0.9
gabucino
parents: 749
diff changeset
151 Most of time-critical parts are optimized for MMX/MMXext/SSE/3DNow!/3DNow!Ex.
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
152 You can improve rendering speed by setting up MTRR registers, see doc in MTRR.
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
153 Some *old* benchmark results can be found in the file DOCS/SPEED.
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
154
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
155 Usage:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
156 ~~~~~~
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
157 file: mplayer [options] [path/]filename
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
158 VCD: mplayer [options] -vcd trackno /dev/cdrom
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
159 DVD: mplayer [options] -dvdauth /dev/dvd filename.VOB
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
160 net: mplayer [options] http://site.com/file.[mpg|avi]
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
161
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
162 Options:
540
4d0ad0f6b7dc some updates, not finished yet
arpi_esp
parents: 532
diff changeset
163 see `mplayer -h' for options
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
164 see `mplayer -vo help' for list of available video output drivers
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
165 see `mplayer -ao help' for list of available audio output drivers
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
166
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
167 Keys:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
168 <- or -> seek backward/forward 10 seconds
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
169 up or down seek backward/forward 1 minute
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
170 p or SPACE pause movie (press any key to continue)
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
171 q or ^C stop playing and quit program
522
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
172 o toggle OSD : none / seek / seek+timer
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
173 / and * decrease/increase volume
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
174 m toggle using master/pcm channel for volume setting
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
175 f toggle fullscreen (only with -vo sdl)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
176
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
177 Examples:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
178 mplayer -vo x11 /mnt/Films/Contact/contact2.mpg
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
179 mplayer -vcd 2 /dev/cdrom
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
180 mplayer -afm 3 /mnt/DVDtrailers/alien4.vob
522
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
181 mplayer -dvd /dev/dvd /mnt/dvd/matrix.vob
747
cc99cea3c7bd *** empty log message ***
gabucino
parents: 745
diff changeset
182 mplayer -abs 65536 -delay -0.4 -nobps ~/movies/test.avi
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
183
522
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
184 Note: in order to use Matrox YUV driver (-vo mga or xmga), first you'll have
764
60296841e0c5 Hungarian: v0.9
gabucino
parents: 749
diff changeset
185 to load the driver: see DOCS/VIDEOCARDS .
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
186
1071
29b5ada1ec4c *** empty log message ***
gabucino
parents: 1056
diff changeset
187 Playing from Net & stdin:
29b5ada1ec4c *** empty log message ***
gabucino
parents: 1056
diff changeset
188 ~~~~~~~~~~~~~~~~~~~~~~~~~
693
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
189 Now it's possible.
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
190
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
191 To play something by reading from stdin, just use '-' as filename:
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
192
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
193 cat test.mpg | mplayer -vo xv -
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
194
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
195 Restrictions:
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
196 mpg: no backward seeking
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
197 asf: no backward seeking
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
198 avi: no index reading -> no seeking at all, and playing of some files are
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
199 +impossible
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
200
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
201 No control from controlling terminal/xterm, but hotkeys and osd works
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
202 from the window. or course LIRC still works everywhere.
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
203
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
204 This feature combined with external wrappers extends possibilities.
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
205 For example, to play a movie just downloaded from your favourite divx
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
206 server:
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
207 rar p ast-nssvcd.rar | mplayer -vo xmga -fs -
1071
29b5ada1ec4c *** empty log message ***
gabucino
parents: 1056
diff changeset
208 or:
694
623b2213d10f wget example added
gabucino
parents: 693
diff changeset
209 wget ftp://micorsops.com/something.avi -O - | mplayer -
623b2213d10f wget example added
gabucino
parents: 693
diff changeset
210
693
3b039b8938e6 stdin stuff commited
gabucino
parents: 674
diff changeset
211
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
212 TV output:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
213 ~~~~~~~~~~
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
214 If you have a Matrox G400 Dual-Head card, you can watch movies on TV, using
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
215 the TV-out feature of the second head. Read DOCS/TVout-G400 for details!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
216
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
217 Sending bugreports, comments, feature requests etc:
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
218 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
219 First please read all the docs in this package, most of the problems are
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
220 described somewhere. At least read DOCS/BUGS ! We don't like answering
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
221 questions which are already answered in this readme or other docs.
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
222
674
10fc57f7e368 FAQ filename fixed
arpi_esp
parents: 670
diff changeset
223 Read the DOCS/MPlayer-FAQ. Most common problems are answered there!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
224
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
225 You should try the latest development version (from CVS) too, maybe your
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
226 bug is already fixed, but the new version hasn't been released.
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
227 If you couldn't solve the problem, then send a quality bugreport:
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
228 read DOCS/BUGREPORTS for instructions (where, what and how...)
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
229
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
230 Subscribe to the mplayer-users mailing list. There are many MPlayer
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
231 users, maybe they can help or know the solution to your problem.
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
232 You also should send ideas, feature requests, comments to there!
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
233 Please do not ask for features already listed in the DOCS/TODO!
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
234
6
7465ff4ad354 *** empty log message ***
gabucino
parents: 1
diff changeset
235 Contact information:
7465ff4ad354 *** empty log message ***
gabucino
parents: 1
diff changeset
236 ~~~~~~~~~~~~~~~~~~~~
10
ab921a7ef863 Updated links
gabucino
parents: 9
diff changeset
237 Homepage: http://mplayer.sourceforge.net
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
238
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
239 Mailing lists:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
240 ~~~~~~~~~~~~~~
107
845cef1a5ba0 mailing lists updated
arpi_esp
parents: 96
diff changeset
241 There are some public mailing lists on MPlayer. Subscribing can be achieved on
40
2fed43f60181 New data on mailing lists
gabucino
parents: 20
diff changeset
242 the following addresses:
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
243
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
244 - MPlayer core/hungarian developers list:
1298
ea586e73d3b3 *** empty log message ***
gabucino
parents: 1225
diff changeset
245 http://mp.dev.hu/mailman/listinfo/mplayer-devel
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
246
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
247 I dunno, it is the FLAME list in hungarian language :)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
248 Also some talking about mplayer core team internals, like mplayer
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
249 party, sponsors etc can be here.
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
250
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
251 - MPlayer developers list:
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
252 http://lists.sourceforge.net/lists/listinfo/mplayer-dev-eng
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
253
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
254 This list is about mplayer development! Talking about interface/API changes,
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
255 new libraryes, code optimization, ./configure changes, and send patches here.
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
256 Do NOT send bugreports, user questions, feature requests here!
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
257 This list should be kept low-traffic.
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
258
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
259 - MPlayer users list:
60
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
260 http://lists.sourceforge.net/lists/listinfo/mplayer-users
107
845cef1a5ba0 mailing lists updated
arpi_esp
parents: 96
diff changeset
261
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
262 - send bugreports here (after reading DOCS/BUGS, BUGREPORTS)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
263 - send feature requests here (after reading DOCS/TODO)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
264 - send user questions here (after reading DOCS/README, INSTALL, FAQ etc)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
265
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
266 - MPlayer & Matrox G200/G400/G450 users:
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
267 http://lists.sourceforge.net/lists/listinfo/mplayer-matrox
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
268
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
269 Send matrox-related questions here,
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
270 - things about mga_vid,
1201
0bddc179f042 some fixes, updates
arpi_esp
parents: 1084
diff changeset
271 - matrox's official beta drivers (for X 4.x.x)
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
272 - and about matroxfb-TVout stuff.
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
273
806
07e92a1c121c *** empty log message ***
gabucino
parents: 764
diff changeset
274 - mpg12play-portable developers:
07e92a1c121c *** empty log message ***
gabucino
parents: 764
diff changeset
275 http://lists.sourceforge.net/lists/listinfo/mplayer-mpg12play
07e92a1c121c *** empty log message ***
gabucino
parents: 764
diff changeset
276
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
277 This list is for talking about mplayer ports to non-x86 platforms
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
278 (IRIX, Solaris-SPARC, Alpha, Commodore64, Sharp Calculator,
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
279 Teapot etc...)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
280
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
281 - MPlayer announce:
60
434a367c673d MPlayer-Matrox list added
gabucino
parents: 40
diff changeset
282 http://lists.sourceforge.net/lists/listinfo/mplayer-announce
107
845cef1a5ba0 mailing lists updated
arpi_esp
parents: 96
diff changeset
283
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
284 Very low traffic list :)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
285 And it's read-only. I'll post something shit there if a new release
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
286 is done.
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
287
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
288 - MPlayer CVS-log:
1298
ea586e73d3b3 *** empty log message ***
gabucino
parents: 1225
diff changeset
289 http://mp.dev.hu/mailman/listinfo/mplayer-cvslog
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
290
1074
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
291 Send only questions about CVS changes here.
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
292 (if you don't understand why a change is required or you've better fix)
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
293 Be sure in that your target developer reads this list!
e196f109ff8a new mailing list stuff
gabucino
parents: 1072
diff changeset
294
749
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
295 NOTE: language of above lists are ENGLISH, unless explicitly stated otherwise.
550e3ff06099 big review ! (translators curse me:)
gabucino
parents: 747
diff changeset
296 Please do not send messages using other language!
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
297
764
60296841e0c5 Hungarian: v0.9
gabucino
parents: 749
diff changeset
298 License:
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
299 ~~~~~~~~
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
300 MPlayer incorporates a lot of code from other projects, but for now everything
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
301 except the OpenDivX stuff is under General Public License (GPL) version 2 or
1225
9b974dd1faf0 *** empty log message ***
gabucino
parents: 1201
diff changeset
302 later.
670
0c7f188e829d review, fixes
arpi_esp
parents: 657
diff changeset
303
1
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
304 Standard Disclaimer:
3b5f5d1c5041 Initial revision
arpi_esp
parents:
diff changeset
305 ~~~~~~~~~~~~~~~~~~~~
522
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
306 Use only at your own risk! There may be errors and inaccuracies that could
907
b194061e3f03 pre-review
gabucino
parents: 860
diff changeset
307 damage your system, your eye or ear. Proceed with caution, and although this is
522
b63c485a530d reviewed for release
gabucino
parents: 389
diff changeset
308 highly unlikely, we don't take any responsibility for that!