Mercurial > mplayer.hg
annotate DOCS/xml/en/formats.xml @ 13981:3e82594ec231
correct encoding
author | diego |
---|---|
date | Fri, 19 Nov 2004 18:34:33 +0000 |
parents | 7895a1b73828 |
children | 0d9e27059495 |
rev | line source |
---|---|
9675 | 1 <?xml version="1.0" encoding="iso-8859-1"?> |
10913
49b1a67e7381
Add revision keyword to english xml files, to ease translation synchronization
lumag
parents:
10679
diff
changeset
|
2 <!-- $Revision$ --> |
9675 | 3 <sect1 id="formats"> |
4 <title>Supported formats</title> | |
5 | |
6 <para> | |
7 It is important to clarify a common mistake. When people see a file with a | |
8 <filename>.AVI</filename> extension, they immediately conclude that it is | |
9 not an MPEG file. That is not true. At least not entirely. Contrary to | |
10 popular belief such a file <emphasis>can</emphasis> contain MPEG1 video. | |
11 </para> | |
12 | |
13 <para> | |
14 You see, a <emphasis role="bold">codec</emphasis> is not the same as a | |
15 <emphasis role="bold">file format</emphasis>. | |
13961
2946cbf097b5
DivX is MPEG4, so let's call it MPEG4 to avoid confusion.
diego
parents:
12759
diff
changeset
|
16 Examples of video <emphasis role="bold">codecs</emphasis> are: MPEG1, MPEG2, |
2946cbf097b5
DivX is MPEG4, so let's call it MPEG4 to avoid confusion.
diego
parents:
12759
diff
changeset
|
17 MPEG4 (DivX), Indeo5, 3ivx. |
9675 | 18 Examples of file <emphasis role="bold">formats</emphasis> are: MPG, AVI, ASF. |
19 </para> | |
20 | |
21 <para> | |
22 In theory, you can put an OpenDivX video and MP3 audio | |
23 into an <emphasis role="bold">MPG format file</emphasis>. However, most | |
24 players will not play it, since they expect MPEG1 video and MP2 audio (unlike | |
25 <emphasis role="bold">AVI</emphasis>, <emphasis role="bold">MPG</emphasis> | |
26 does not have the necessary fields to describe its video and audio streams). | |
27 Or you might put MPEG1 video into an AVI file. | |
13977 | 28 <ulink url="http://ffmpeg.org/">FFmpeg</ulink> and |
11540 | 29 <link linkend="mencoder"><application>MEncoder</application></link> can create these files. |
9675 | 30 </para> |
31 | |
32 | |
33 <sect2 id="video-formats"> | |
34 <title>Video formats</title> | |
35 | |
36 <sect3 id="mpg-vob-dat"> | |
37 <title>MPEG files</title> | |
38 | |
39 <para> | |
40 MPEG files come in different guises: | |
41 </para> | |
42 | |
43 <itemizedlist> | |
44 <listitem><simpara> | |
45 MPG: This is the most <emphasis role="bold">basic</emphasis> form of the | |
46 MPEG file formats. It contains MPEG1 video, and MP2 (MPEG-1 layer 2) or | |
47 rarely MP1 audio. | |
48 </simpara></listitem> | |
49 <listitem><simpara> | |
50 DAT: This is the very same format as MPG with a different extension. It | |
51 is used on <emphasis role="bold">Video CDs</emphasis>. Due to the way VCDs | |
52 are created and Linux is designed, the DAT files cannot be played nor copied | |
10184
b6c63ab184a4
Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents:
9683
diff
changeset
|
53 from VCDs as regular files. You have to use <option>vcd://</option> |
b6c63ab184a4
Changed a few remaining -dvd and -vcd options to dvd:// and vcd://.
diego
parents:
9683
diff
changeset
|
54 to play a Video CD. |
9675 | 55 </simpara></listitem> |
56 <listitem><simpara> | |
57 VOB: This is the MPEG file format on <emphasis role="bold">DVDs</emphasis>. | |
58 It is the same as MPG, plus the capability to contain subtitles or non-MPEG | |
59 (AC3) audio. It contains encoded MPEG2 video and usually AC3 audio, but DTS, | |
9683 | 60 MP2 and uncompressed LPCM are allowed, too. <emphasis role="bold">Read the |
11483 | 61 <link linkend="dvd">DVD</link> section</emphasis>! |
9675 | 62 </simpara></listitem> |
63 </itemizedlist> | |
64 | |
65 <para> | |
66 Series of frames form independent groups in MPEG files. This means that you | |
67 can cut/join an MPEG file with standard file tools (like | |
68 <command>dd</command>, <command>cut</command>), and it remains completely | |
69 functional. | |
70 </para> | |
71 | |
72 <para> | |
73 One important feature of MPGs is that they have a field to describe the | |
74 aspect ratio of the video stream within. For example SVCDs have 480x480 | |
75 resolution video, and in the header that field is set to 4:3, so that it is | |
76 played at 640x480. AVI files do not have this field, so they have to be | |
77 rescaled during encoding or played with the <option>-aspect</option> | |
78 option. | |
79 </para> | |
80 </sect3> | |
81 | |
82 | |
83 <sect3 id="avi"> | |
84 <title>AVI files</title> | |
85 | |
86 <para> | |
87 Designed by Microsoft, <emphasis role="bold">AVI (Audio Video Interleaved)</emphasis> | |
13974 | 88 is a widespread multipurpose format currently used mostly for MPEG4 (DivX and DivX4) |
9675 | 89 video. It has many known drawbacks and shortcomings (for example in streaming). It |
90 supports one video stream and 0 to 99 audio streams and can be as big as | |
9683 | 91 2GB, but there exists an extension allowing bigger files called |
92 <emphasis role="bold">OpenDML</emphasis>. Microsoft currently strongly | |
93 discourages its use and encourages ASF/WMV. Not that anybody cares. | |
9675 | 94 </para> |
95 | |
96 <para> | |
97 There is a hack that allows AVI files to contain an Ogg Vorbis audio | |
98 stream, but makes them incompatible with standard AVI. | |
99 <application>MPlayer</application> supports playing these files. Seeking is | |
100 also implemented but severely hampered by badly encoded files with | |
101 confusing headers. Unfortunately the only encoder currently capable of | |
102 creating these files, <application>NanDub</application>, has this problem. | |
103 </para> | |
104 | |
105 <note> | |
106 <para> | |
107 DV cameras create raw DV streams that DV grabbing utilities convert to two | |
108 different types of AVI files. The AVI will then contain either separate | |
109 audio and video streams that <application>MPlayer</application> can play or | |
110 the raw DV stream for which support is under development. | |
111 </para> | |
112 </note> | |
113 | |
114 <para> | |
115 There are two kinds of AVI files: | |
116 <itemizedlist> | |
117 <listitem><simpara> | |
118 <emphasis role="bold">Interleaved:</emphasis> Audio and video content is | |
119 interleaved. This is the standard usage. Recommended and mostly used. Some tools | |
120 create interleaved AVIs with bad sync. <application>MPlayer</application> | |
121 detects these as interleaved, and this climaxes in loss of A/V sync, | |
122 probably at seeking. These files should be played as non-interleaved | |
123 (with the <option>-ni</option> option). | |
124 </simpara></listitem> | |
125 <listitem><simpara> | |
126 <emphasis role="bold">Non-interleaved:</emphasis> First comes the whole | |
127 video stream, then the whole audio stream. It thus needs a lot of seeking, | |
128 making playing from network or CD-ROM difficult. | |
129 </simpara></listitem> | |
130 </itemizedlist> | |
131 </para> | |
132 | |
133 <para> | |
134 <application>MPlayer</application> supports two kinds of timings for AVI | |
135 files: | |
136 <itemizedlist> | |
137 <listitem><simpara> | |
138 <emphasis role="bold">bps-based:</emphasis> It is based on the | |
139 bitrate/samplerate of the video/audio stream. This method is used by | |
13977 | 140 most players, including <ulink url="http://avifile.sf.net">avifile</ulink> |
9675 | 141 and <application>Windows Media Player</application>. Files with broken |
142 headers, and files created with VBR audio but not VBR-compliant encoder | |
143 will result in A/V desync with this method (mostly at seeking). | |
144 </simpara></listitem> | |
145 <listitem><simpara> | |
146 <emphasis role="bold">interleaving-based:</emphasis> It does not use the bitrate | |
147 value of the header, instead it uses the relative position of interleaved | |
148 audio and video chunks, making badly encoded files with VBR audio playable. | |
149 </simpara></listitem> | |
150 </itemizedlist> | |
151 </para> | |
152 | |
153 <para> | |
154 Any audio and video codec is allowed, but note that VBR audio is not well | |
155 supported by most players. The file format makes it possible to use VBR | |
156 audio, but most players expect CBR audio, thus they fail with VBR. VBR is | |
157 uncommon and Microsoft's AVI specs only describe CBR audio. I also noticed | |
158 that most AVI encoders/multiplexers create bad files when using VBR audio. | |
11540 | 159 There are only two known exceptions: <application>NanDub</application> and |
160 <link linkend="mencoder"><application>MEncoder</application></link>. | |
9675 | 161 </para> |
162 </sect3> | |
163 | |
164 | |
165 <sect3 id="asf-wmv"> | |
166 <title>ASF/WMV files</title> | |
167 <para> | |
168 ASF (Active Streaming Format) comes from Microsoft. They developed two | |
169 variants of ASF, v1.0 and v2.0. v1.0 is used by their media tools (<application>Windows | |
170 Media Player</application> and <application>Windows Media Encoder</application>) | |
171 and is very secret. v2.0 is published and patented :). Of course they differ, | |
172 there is no compatibility at all (it is just another legal game). | |
173 <application>MPlayer</application> supports only v1.0, as nobody has ever seen | |
174 v2.0 files :). Note that ASF files nowadays come with the extension | |
175 <filename>.WMA</filename> or <filename>.WMV</filename>. | |
176 </para> | |
177 </sect3> | |
178 | |
179 | |
180 <sect3 id="qt-mov"> | |
181 <title>QuickTime/MOV files</title> | |
182 | |
183 <para> | |
184 These formats were designed by Apple and can contain any codec, CBR or VBR. | |
185 They usually have a <filename>.QT</filename> or <filename>.MOV</filename> | |
186 extension. Note that since the MPEG4 group chose QuickTime as the recommended | |
187 file format for MPEG4, their MOV files come with a <filename>.MPG</filename> or | |
188 <filename>.MP4</filename> extension (Interestingly the video and audio | |
9683 | 189 streams in these files are real MPG and AAC files. You can even extract them with the |
9675 | 190 <option>-dumpvideo</option> and <option>-dumpaudio</option> options.). |
191 </para> | |
192 | |
193 <note> | |
194 <para> | |
195 Most new QuickTime files use <emphasis role="bold">Sorenson</emphasis> video and | |
196 QDesign Music audio. See our <link linkend="sorenson">Sorenson</link> codec section. | |
197 </para> | |
198 </note> | |
199 </sect3> | |
200 | |
201 | |
202 <sect3 id="vivo"> | |
203 <title>VIVO files</title> | |
204 | |
205 <para> | |
206 <application>MPlayer</application> happily demuxes VIVO file formats. The | |
207 biggest disadvantage of the format is that it has no index block, nor a | |
208 fixed packet size or sync bytes and most files lack even keyframes, so | |
209 forget seeking! | |
210 </para> | |
211 | |
212 <para> | |
213 The video codec of VIVO/1.0 files is standard <emphasis role="bold">h.263</emphasis>. | |
214 The video codec of VIVO/2.0 files is a modified, nonstandard | |
215 <emphasis role="bold">h.263v2</emphasis>. The audio is the same, it may be | |
216 <emphasis role="bold">g.723 (standard)</emphasis>, or | |
217 <emphasis role="bold">Vivo Siren</emphasis>. | |
218 </para> | |
219 | |
220 <para> | |
221 See the | |
222 <link linkend="vivo-video">VIVO video codec</link> and | |
223 <link linkend="vivo-audio">VIVO audio codec</link> | |
224 sections for installation instructions. | |
225 </para> | |
226 </sect3> | |
227 | |
228 | |
229 <sect3 id="fli"> | |
230 <title>FLI files</title> | |
231 <para> | |
232 <emphasis role="bold">FLI</emphasis> is a very old file format used by | |
233 Autodesk Animator, but it is a common file format for short animations on the net. | |
234 <application>MPlayer</application> demuxes and decodes FLI movies and is | |
235 even able to seek within them (useful when looping with the | |
236 <option>-loop</option> option). FLI files do not have keyframes, so the | |
237 picture will be messy for a short time after seeking. | |
238 </para> | |
239 </sect3> | |
240 | |
241 | |
242 <sect3 id="realmedia"> | |
243 <title>RealMedia (RM) files</title> | |
244 | |
245 <para> | |
246 Yes, <application>MPlayer</application> can read (demux) RealMedia | |
12690 | 247 (<filename>.rm</filename>) files. |
248 Here are the lists of the supported <link | |
9675 | 249 linkend="realvideo">RealVideo</link> and <link |
250 linkend="realaudio">RealAudio</link> codecs. | |
251 </para> | |
252 </sect3> | |
253 | |
254 | |
255 <sect3 id="nuppelvideo"> | |
256 <title>NuppelVideo files</title> | |
257 <para> | |
258 <ulink url="http://mars.tuwien.ac.at/~roman/nuppelvideo">NuppelVideo</ulink> | |
259 is a TV grabber tool (AFAIK:). <application>MPlayer</application> can read | |
260 its <filename>.NUV</filename> files (only NuppelVideo 5.0). Those files can | |
261 contain uncompressed YV12, YV12+RTJpeg compressed, YV12 RTJpeg+lzo | |
262 compressed, and YV12+lzo compressed frames. | |
263 <application>MPlayer</application> decodes (and also <emphasis role="bold">encodes</emphasis> | |
13961
2946cbf097b5
DivX is MPEG4, so let's call it MPEG4 to avoid confusion.
diego
parents:
12759
diff
changeset
|
264 them with <application>MEncoder</application> to MPEG4 (DivX)/etc!) them all. |
2946cbf097b5
DivX is MPEG4, so let's call it MPEG4 to avoid confusion.
diego
parents:
12759
diff
changeset
|
265 Seeking works. |
9675 | 266 </para> |
267 </sect3> | |
268 | |
269 | |
270 <sect3 id="yuv4mpeg"> | |
271 <title>yuv4mpeg files</title> | |
272 <para> | |
13977 | 273 <ulink url="http://mjpeg.sf.net">yuv4mpeg / yuv4mpeg2</ulink> |
9675 | 274 is a file format used by the |
275 <ulink url="http://mjpeg.sf.net">mjpegtools programs</ulink>. | |
276 You can grab, produce, filter or encode video in this format using these tools. | |
277 The file format is really a sequence of uncompressed YUV 4:2:0 images. | |
278 </para> | |
279 </sect3> | |
280 | |
281 | |
282 <sect3 id="film"> | |
283 <title>FILM files</title> | |
284 <para> | |
285 This format is used on old Sega Saturn CD-ROM games. | |
286 </para> | |
287 </sect3> | |
288 | |
289 | |
290 <sect3 id="roq"> | |
291 <title>RoQ files</title> | |
292 <para> | |
293 RoQ files are multimedia files used in some ID games such as Quake III and | |
294 Return to Castle Wolfenstein. | |
295 </para> | |
296 </sect3> | |
297 | |
298 | |
299 <sect3 id="ogg"> | |
300 <title>OGG/OGM files</title> | |
301 <para> | |
302 This is a new fileformat from <ulink url="http://www.xiph.org">Xiphophorus</ulink>. | |
303 It can contain any video or audio codec, CBR or VBR. You'll need | |
304 <systemitem class="library">libogg</systemitem> and | |
305 <systemitem class="library">libvorbis</systemitem> installed before | |
306 compiling <application>MPlayer</application> to be able to play it. | |
307 </para> | |
308 </sect3> | |
309 | |
310 | |
311 <sect3 id="sdp"> | |
312 <title>SDP files</title> | |
313 <para> | |
314 <ulink url="ftp://ftp.rfc-editor.org/in-notes/rfc2327.txt">SDP</ulink> is an | |
315 IETF standard format for describing video and/or audio RTP streams. | |
316 (The "<ulink url="http://www.live.com/mplayer/">LIVE.COM Streaming Media</ulink>" | |
317 are required.) | |
318 </para> | |
319 </sect3> | |
320 | |
321 | |
322 <sect3 id="pva"> | |
323 <title>PVA files</title> | |
324 <para> | |
325 PVA is an MPEG-like format used by DVB TV boards' software (e.g.: | |
10679 | 326 <application>MultiDec</application>, <application>WinTV</application> under Windows). |
9675 | 327 </para> |
328 | |
329 <para> | |
330 The PVA specifications can be downloaded from the following address: | |
331 <ulink url="http://www.technotrend.de/download/av_format_v1.pdf"/> | |
332 </para> | |
333 </sect3> | |
334 | |
335 | |
12759
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
336 <sect3 id="nsv"> |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
337 <title>NSV files</title> |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
338 <para> |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
339 NSV (NullSoft Video) is the file format used by the |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
340 <application>Winamp</application> player to stream audio and video. |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
341 Video is VP3, VP5 or VP6, audio is MP3, AAC or VLB. |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
342 The audio only version of NSV has the <filename>.nsa</filename> extension. |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
343 <application>MPlayer</application> can play both NSV streams and files. |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
344 Please note that most files from the |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
345 <ulink url="http://www.winamp.com">Winamp site</ulink> use VLB audio, that |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
346 can't be decoded yet. Moreover streams from that site need an extra |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
347 depacketization layer that still has to be implemented (those files are |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
348 unplayable anyway because they use VLB audio). |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
349 </para> |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
350 </sect3> |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
351 |
111a9feec18c
NSV added to formats, cinepak etc codec updates by Roberto Togni.
diego
parents:
12690
diff
changeset
|
352 |
9675 | 353 <sect3 id="gif"> |
354 <title>GIF files</title> | |
355 <para> | |
356 The <emphasis role="bold">GIF</emphasis> format is a common format for web | |
357 graphics. There are two versions of the GIF spec, GIF87a and GIF89a. The | |
11540 | 358 main difference is that GIF89a allows for animation. <application>MPlayer</application> |
359 supports both formats through use of <systemitem class="library">libungif</systemitem> or | |
9675 | 360 another libgif-compatible library. Non-animated GIFs will be displayed as |
361 single frame videos. (Use the <option>-loop</option> and <option>-fixed-vo</option> | |
362 options to display these longer.) | |
363 </para> | |
364 | |
365 <para> | |
366 <application>MPlayer</application> currently does not support seeking in GIF | |
367 files. GIF files do not necessarily have a fixed frame size, nor a fixed | |
368 framerate. Rather, each frame is of independent size and is supposed to be | |
369 positioned in a certain place on a field of fixed-size. The framerate is | |
370 controlled by an optional block before each frame that specifies the next | |
371 frame's delay in centiseconds. | |
372 </para> | |
373 | |
374 <para> | |
375 Standard GIF files contain 24-bit RGB frames with at most an 8-bit indexed | |
11271
252fb0cf331a
spelling fixes, mostly by <ismail.donmez@boun.edu.tr>
diego
parents:
11002
diff
changeset
|
376 palette. These frames are usually LZW-compressed, although some GIF encoders |
9675 | 377 produce uncompressed frames to avoid patent issues with LZW compression. |
378 </para> | |
379 | |
380 <para> | |
381 If your distribution does not come with <systemitem class="library">libungif</systemitem>, | |
382 download a copy from the | |
383 <ulink url="http://prtr-13.ucsc.edu/~badger/software/libungif/index.shtml">libungif | |
384 homepage</ulink>. For detailed technical information, have a look at the | |
385 <ulink url="http://www.w3.org/Graphics/GIF/spec-gif89a.txt">GIF89a specification</ulink>. | |
386 </para> | |
387 </sect3> | |
388 </sect2> | |
389 | |
390 <!-- ********** --> | |
391 | |
392 <sect2 id="audio-formats"> | |
393 <title>Audio formats</title> | |
394 | |
395 <para> | |
396 <application>MPlayer</application> is a <emphasis role="bold">movie</emphasis> | |
397 and not a <emphasis role="bold">media</emphasis> player, although it can play | |
398 some audio file formats (they are listed in the sections below). This is not | |
399 a recommended usage of <application>MPlayer</application>, you better use <ulink | |
400 url="http://www.xmms.org">XMMS</ulink>. | |
401 </para> | |
402 | |
403 <sect3 id="mp3"> | |
404 <title>MP3 files</title> | |
405 <para> | |
406 You may have problems playing certain MP3 files that | |
407 <application>MPlayer</application> will misdetect as MPEGs and play | |
408 incorrectly or not at all. This cannot be fixed without dropping support | |
409 for certain broken MPEG files and thus will remain like this for the | |
410 foreseeable future. The <option>-demuxer</option> flag described in the | |
11731 | 411 man page may help you in these cases. |
9675 | 412 </para> |
413 </sect3> | |
414 | |
415 <sect3 id="wav"> | |
416 <title>WAV files</title> | |
417 <para> | |
418 </para> | |
419 </sect3> | |
420 | |
421 <sect3 id="ogg-vorbis"> | |
422 <title>OGG/OGM files (Vorbis)</title> | |
423 <para> | |
424 Requires properly installed | |
425 <systemitem class="library">libogg</systemitem> and | |
426 <systemitem class="library">libvorbis</systemitem>. | |
427 </para> | |
428 </sect3> | |
429 | |
430 <sect3 id="wma-asf"> | |
431 <title>WMA/ASF files</title> | |
432 <para> | |
433 </para> | |
434 </sect3> | |
435 | |
436 <sect3 id="mp4"> | |
437 <title>MP4 files</title> | |
438 <para></para> | |
439 </sect3> | |
440 | |
441 <sect3 id="cdda"> | |
442 <title>CD audio</title> | |
443 <para> | |
444 <application>MPlayer</application> can use <application>cdparanoia</application> | |
445 to play CDDA (Audio CD). The scope of this section does not contain enumerating | |
446 <application>cdparanoia</application>'s features. | |
447 </para> | |
448 | |
449 <para> | |
450 See the man page's <option>-cdda</option> option which can be used to pass | |
451 options to <application>cdparanoia</application>. | |
452 </para> | |
453 </sect3> | |
454 | |
455 <sect3 id="xmms"> | |
456 <title>XMMS</title> | |
457 <para> | |
458 <application>MPlayer</application> can use <application>XMMS</application> input | |
459 plugins to play many file formats. There are plugins for SNES game tunes, SID | |
460 tunes (from Commodore 64), many Amiga formats, .xm, .it, VQF, musepack, Bonk, | |
461 shorten and many others. You can find them at the | |
462 <ulink url="http://www.xmms.org/plugins_input.html">XMMS input plugin page</ulink>. | |
463 </para> | |
464 | |
465 <para> | |
466 For this feature you need to have <application>XMMS</application> and compile | |
467 <application>MPlayer</application> with <filename>./configure --enable-xmms</filename>. | |
468 If that does not work, you might need to set the <application>XMMS</application> | |
469 plugin and library path explicitly by way of the <option>--with-xmmsplugindir</option> | |
11002
d8c03c27af4f
Configure option typo found by Piotr Michniewski <cobra_666@poczta.onet.pl>
diego
parents:
10913
diff
changeset
|
470 and <option>--with-xmmslibdir</option> options. |
9675 | 471 </para> |
472 </sect3> | |
473 </sect2> | |
474 </sect1> |