comparison DOCS/README @ 693:3b039b8938e6

stdin stuff commited
author gabucino
date Fri, 04 May 2001 12:00:28 +0000
parents 10fc57f7e368
children 623b2213d10f
comparison
equal deleted inserted replaced
692:14a2f35921a0 693:3b039b8938e6
68 - VCD (Video CD) directly from CD-ROM or from CDRwin's .bin image file 68 - VCD (Video CD) directly from CD-ROM or from CDRwin's .bin image file
69 - DVD, directly from your DVD disk, using optional libcss for decryption 69 - DVD, directly from your DVD disk, using optional libcss for decryption
70 - MPEG 1/2 System Stream (PS/PES/VOB) and Elementary Stream (ES) file formats 70 - MPEG 1/2 System Stream (PS/PES/VOB) and Elementary Stream (ES) file formats
71 - RIFF AVI file format 71 - RIFF AVI file format
72 - ASF 1.0 file format 72 - ASF 1.0 file format
73 - supports reading from file or stdin
73 74
74 Supported audio & video codecs: 75 Supported audio & video codecs:
75 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 76 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
76 *** See DOCS/CODECS for the complete list, or check *** 77 *** See DOCS/CODECS for the complete list, or check ***
77 *** http://mplayer.sourceforge.net/DOCS/codecs.html *** 78 *** http://mplayer.sourceforge.net/DOCS/codecs.html ***
165 to load the driver: insmod drivers/mga_vid.o , or to make it automatic 166 to load the driver: insmod drivers/mga_vid.o , or to make it automatic
166 insert the following line at the end of /etc/modules.conf: 167 insert the following line at the end of /etc/modules.conf:
167 alias char-major-178 mga_vid 168 alias char-major-178 mga_vid
168 and run 'depmod -a' . 169 and run 'depmod -a' .
169 170
171 Playing from stdin:
172 ~~~~~~~~~~~~~~~~~~~
173 Now it's possible.
174
175 To play something by reading from stdin, just use '-' as filename:
176
177 cat test.mpg | mplayer -vo xv -
178
179 Restrictions:
180 mpg: no backward seeking
181 asf: no backward seeking
182 avi: no index reading -> no seeking at all, and playing of some files are
183 +impossible
184
185 No control from controlling terminal/xterm, but hotkeys and osd works
186 from the window. or course LIRC still works everywhere.
187
188 This feature combined with external wrappers extends possibilities.
189 For example, to play a movie just downloaded from your favourite divx
190 server:
191 rar p ast-nssvcd.rar | mplayer -vo xmga -fs -
192
193 With an asf grabber or http dump program you can play from the net.
194 (however we planned to add direct asf/http/ftp inputs with seeking and other
195 stuff, but for now it's a good workaround)
196
170 TV output: 197 TV output:
171 ~~~~~~~~~~ 198 ~~~~~~~~~~
172 If you have a Matrox G400 Dual-Head card, you can watch movies on TV, using 199 If you have a Matrox G400 Dual-Head card, you can watch movies on TV, using
173 the TV-out feature of the second head. Read DOCS/TVout-G400 for details! 200 the TV-out feature of the second head. Read DOCS/TVout-G400 for details!
174 201