Mercurial > mplayer.hg
annotate DOCS/formats.html @ 6323:8b543b2e65f0
small g3 optflags upd
author | atmos4 |
---|---|
date | Fri, 07 Jun 2002 02:44:16 +0000 |
parents | 9c2cca3804c0 |
children | 748bb00cb05b |
rev | line source |
---|---|
2745 | 1 <HTML> |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
2 |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
3 <HEAD> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
4 <STYLE> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
5 .text |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
6 {font-family : Verdana, Arial, Helvetica, sans-serif; |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
7 font-size : 14px;} |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
8 </STYLE> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
9 </HEAD> |
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
10 |
2745 | 11 <BODY BGCOLOR=WHITE> |
12 | |
4982
6cb9d9a1716d
HTML: different font handling - idea from new hp dezign
gabucino
parents:
4663
diff
changeset
|
13 <FONT CLASS="text"> |
2745 | 14 |
15 <P><B><A NAME=2.1>2.1. Supported formats</A></B></P> | |
16 | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
17 <P>It is important to clarify a common mistake. When people see a file with a |
5395 | 18 <B>.AVI</B> extension, they immediately conclude that it is not an MPEG file. |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
19 That is not true. At least not entirely. Contrary to popular belief such a file |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
20 <B>can</B> contain MPEG1 video.</P> |
2745 | 21 |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
22 <P>You see, a <B>codec</B> is not the same as a <B>file format</B>.<BR> |
5395 | 23 Examples of video <B>codecs</B> are: MPEG1, MPEG2, DivX, Indeo5, 3ivx.<BR> |
24 Examples of file <B>formats</B> are: MPG, AVI, ASF.<BR> | |
2745 | 25 </P> |
26 | |
5395 | 27 <P>In theory, you can put an OpenDivX video and MP3 audio |
28 into an <B>MPG</B> format file. However, most players will not play it, since | |
29 they expect MPEG1 video and MP2 audio (unlike <B>AVI</B>, <B>MPG</B> does not have the | |
30 necessary fields to describe its video and audio streams). | |
31 Or you might put MPEG1 video into an AVI file. <A HREF="http://ffmpeg.sourceforge.net">FFmpeg</A> | |
4177 | 32 and <A HREF="encoding.html">MEncoder</A> can create these files.</P> |
2745 | 33 |
34 | |
35 | |
36 <P><B><A NAME=2.1.1>2.1.1. Video formats</A></B></P> | |
37 | |
38 | |
2865 | 39 <P><B><A NAME=2.1.1.1>2.1.1.1. MPEG files</A></B></P> |
2745 | 40 |
5395 | 41 <P>MPEG files come in different guises:</P> |
42 | |
43 <UL> | |
44 <LI>MPG: This is the most <B>basic</B> form of the MPEG file formats. It contains | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
45 MPEG1 video, and MP2 (MPEG-1 layer 2) or rarely MP1 audio.</LI> |
5395 | 46 <LI>DAT: This is the very same format as MPG with a different extension. It is used |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
47 on <B>Video CD</B>s. Due to the way VCDs are created and Linux is designed, |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
48 the DAT files cannot be played nor copied from VCDs as regular files. You have |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
49 to use the <CODE>-vcd</CODE> option to play the Video CD.</LI> |
5395 | 50 <LI>VOB: This is the MPEG file format on <B>DVD</B>s. It is the same as MPG, plus the |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
51 capability to contain subtitles or non-MPEG (AC3) audio. It contains encoded MPEG2 |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
52 video and usually AC3 audio, but DTS, MP2 and uncompressed LPCM are allowed, too.<BR> |
2865 | 53 <B>Read the <A HREF="cd-dvd.html#4.2">DVD section</A> !</B></LI> |
5395 | 54 </UL> |
2745 | 55 |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
56 <P>Series of frames form independent groups in MPEG files. This means that you |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
57 can cut/join an MPEG file with standard file tools (like dd, cut), and it |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
58 remains completely functional.</P> |
2865 | 59 |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
60 <P>One important feature of MPGs is that they have a field to describe |
2761 | 61 the aspect ratio of the video stream within. For example SVCDs have |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
62 480x480 resolution video, and in the header that field is set to 4:3, so that |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
63 it is played at 640x480. AVI files do not have this field, so they have to be |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
64 rescaled during encoding or played with the <CODE>-aspect</CODE> option.</P> |
2761 | 65 |
2745 | 66 |
67 <P><B><A NAME=2.1.1.2>2.1.1.2. AVI files</A></B></P> | |
68 | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
69 <P>Designed by Micro$oft, <B>AVI (Audio Video Interleaved)</B> is a |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
70 widespread multipurpose format currently used mostly for DivX and DivX4 |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
71 video. It has many known drawbacks and shortcomings (for example in streaming). |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
72 It supports one video stream and 0 to 99 audio streams and can be as big as |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
73 2GB. There exists an extension allowing bigger files called <B>OpenDMS</B>. |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
74 M$ currently strongly discourages its use and encourages ASF/WMV. Not that |
2745 | 75 anybody cares.<BR> |
5444 | 76 |
6175
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
77 <P>There is a hack that allows AVI files to contain an Ogg Vorbis audio |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
78 stream, but makes them incompatible with standard AVI. <B>MPlayer</B> |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
79 supports playing these files. Seeking is also implemented but severely |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
80 hampered by badly encoded files with confusing headers. Unfortunately the |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
81 only encoder currently capable of creating these files, nandub, has this |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
82 problem.</P> |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
83 |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
84 <P><B>NOTE:</B> DV cameras create raw DV streams that DV grabbing utilities |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
85 convert to two different types of AVI files. The AVI will then contain either |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
86 separate audio and video streams that <B>MPlayer</B> can play or the raw DV |
9c2cca3804c0
better wording, patch by Diego Biurrun <diego@biurrun.de>
arpi
parents:
6168
diff
changeset
|
87 stream for which support is under development.</P> |
2745 | 88 |
5395 | 89 <P>There are two kinds of AVI files:</P> |
2865 | 90 <UL> |
5395 | 91 <LI><B>Interleaved:</B> Audio and video content is interleaved. This is the |
2865 | 92 standard usage. Recommended and mostly used. Some tools create interleaved |
93 AVIs with bad sync. <B>MPlayer</B> detects these as interleaved, and this | |
94 climaxes in loss of A/V sync, probably at seeking. These files should be | |
95 played as non-interleaved (with the <CODE>-ni</CODE> option).</LI> | |
5395 | 96 <LI><B>Non-interleaved:</B> First comes the whole video stream, then the whole |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
97 audio stream. It thus needs a lot of seeking, making playing from network or |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
98 CD-Rom difficult.</LI> |
2865 | 99 </UL> |
100 | |
5395 | 101 <P><B>MPlayer</B> supports two kinds of timings for AVI files:</P> |
2865 | 102 <UL> |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
103 <LI><B>bps-based</B>: It is based on the bitrate/samplerate of the video/audio stream. This |
5395 | 104 method is used by most players, including <A HREF="http://avifile.sourceforge.net">avifile</A> |
105 and windows media player. | |
2865 | 106 Files with broken headers, and files created with VBR audio but not |
107 VBR-compliant encoder will result in A/V desync with this method (mostly at | |
108 seeking).</LI> | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
109 <LI><B>interleaving-based</B>: It does not use the bitrate value of the header, instead |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
110 it uses the relative position of interleaved audio and video chunks, making |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
111 badly encoded files with VBR audio playable.</LI> |
2865 | 112 </UL> |
113 | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
114 <P>Any audio and video codec is allowed, but note that VBR audio is not well |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
115 supported by most players. The file format makes it possible to use VBR |
2865 | 116 audio, but most players expect CBR audio, thus they fail with VBR. VBR is |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
117 uncommon and Microsoft's AVI specs only describe CBR audio. I also noticed that |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
118 most AVI encoders/multiplexers create bad files when using VBR audio. There are only |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
119 two exceptions (known to me): NaNDub and <A HREF="encoding.html">MEncoder</A>.</P> |
2865 | 120 |
2745 | 121 |
122 <P><B><A NAME=2.1.1.3>2.1.1.3. ASF/WMV files</A></B></P> | |
123 | |
2865 | 124 <P>ASF (active streaming format) comes from Microsoft. They developed two |
125 variants of ASF, v1.0 and v2.0. v1.0 is used by their media tools (windows | |
126 media player and windows media encoder) and is very secret. v2.0 is published | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
127 and patented :). Of course they differ, there is no compatibility at all (it is |
2865 | 128 just another legal game). <B>MPlayer</B> supports only v1.0, as nobody has ever seen |
5395 | 129 v2.0 files :). Note that ASF files nowadays come with the extension .WMA or |
2865 | 130 .WMV.</P> |
2745 | 131 |
132 | |
2865 | 133 <P><B><A NAME=2.1.1.4>2.1.1.4. QuickTime/MOV files</A></B></P> |
134 | |
5395 | 135 <P>These formats were designed by Apple. They usually have a .QT or .MOV extension. Note |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
136 that since the MPEG4 group chose QuickTime as the recommended file format |
5395 | 137 for MPEG4, their MOV files come with a .MPG or .MP4 extension (Interestingly |
138 the video and audio streams in these files are real MPG and AAC files. With the | |
139 <CODE>-dumpvideo</CODE> and <CODE>-dumpaudio</CODE> options you can even extract them!).</P> | |
2745 | 140 |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
141 <P><B>Codecs</B>: Any codec is allowed, both CBR and VBR. Note: most new QuickTime files use |
5395 | 142 <B>Sorensen</B> video and QDesign Music audio. These formats have not been |
143 disclosed and will probably remain so in the future, making Apple's QuickTime | |
144 player the only player able to play these files (on Windows/Mac OS only).</P> | |
2865 | 145 |
2745 | 146 |
6168 | 147 <P><B><A NAME=2.1.1.5>2.1.1.5. VIVO files</A></B></P> |
2745 | 148 |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
149 <P><B>MPlayer</B> happily demuxes VIVO file formats. The biggest disadvantage of |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
150 the format is that it has no index block, nor a fixed packet size or sync bytes |
2865 | 151 and most files lack even keyframes, so forget seeking!</P> |
152 | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
153 <P>The video codec of VIVO/1.0 files is standard <B>h.263</B>. The video codec |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
154 of VIVO/2.0 files is a modified, nonstandard <B>h.263v2</B>. The audio is the same, |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
155 it may be <B>g.723</B> (standard), or <B>Vivo Siren</B>.</P> |
2865 | 156 |
5395 | 157 <P>See the <A HREF="codecs.html#2.2.1.4">VIVO video codec</A> |
158 and <A HREF="codecs.html#2.2.2.4">VIVO audio codec</A> sections for installation | |
2855 | 159 instructions.</P> |
2745 | 160 |
161 | |
3806 | 162 <P><B><A NAME=2.1.1.6>2.1.1.6. FLI files</A></B></P> |
163 | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
164 <P><B>FLI</B> is a very old file format used by Autodesk Animator, but it is |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
165 a common file format for short animations on the net. <B>MPlayer</B> demuxes |
3806 | 166 and decodes FLI movies and is even able to seek within them (useful when |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
167 looping with the <CODE>-loop</CODE> option). FLI files do not have keyframes, so the picture |
3806 | 168 will be messy for a short time after seeking.</P> |
169 | |
170 | |
171 <P><B><A NAME=2.1.1.7>2.1.1.7. RealMedia (RM) files</A></B></P> | |
172 | |
5094 | 173 <P>Yes, <B>MPlayer</B> can read (demux) RealMedia (.rm) files. Seeking works |
174 (the format supports keyframes). Here are the lists of the supported | |
175 <A HREF="codecs.html#2.2.1.8">RealVideo</A> | |
3806 | 176 and <A HREF="codecs.html#2.2.2.5">RealAudio</A> codecs. |
177 | |
178 | |
3816 | 179 <P><B><A NAME=2.1.1.8>2.1.1.8. NuppelVideo files</A></B></P> |
180 | |
181 <P><A HREF="http://mars.tuwien.ac.at/~roman/nuppelvideo">NuppelVideo</A> | |
5395 | 182 is a TV grabber tool (AFAIK:). <B>MPlayer</B> can read its .NUV |
3816 | 183 files (only NuppelVideo 5.0). Those files can contain uncompressed YV12, |
184 YV12+RTJpeg compressed, YV12 RTJpeg+lzo compressed, and YV12+lzo compressed | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
185 frames. <B>MPlayer</B> decodes (and also <B>encodes</B> them with MEncoder to |
5958 | 186 DivX/etc!) them all. Seeking works.</P> |
3816 | 187 |
188 | |
3818 | 189 <P><B><A NAME=2.1.1.9>2.1.1.9. yuv4mpeg files</A></B></P> |
190 | |
191 <P><A HREF="http://mjpeg.sourceforge.net">yuv4mpeg / yuv4mpeg2</A> is | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
192 a file format used by the <A HREF="http://mjpeg.sf.net">mjpegtools programs</A>. |
5122
0d1642a26189
"sok ize, mutyur, bizbasz." --Gabucino, Feb 12 23:39:36 2002
arpi
parents:
5094
diff
changeset
|
193 You can grab, produce, filter or encode video in this format using these. |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
194 The file format is really a sequence of uncompressed YUV 4:2:0 images. |
5122
0d1642a26189
"sok ize, mutyur, bizbasz." --Gabucino, Feb 12 23:39:36 2002
arpi
parents:
5094
diff
changeset
|
195 </P> |
3818 | 196 |
197 | |
4339 | 198 <P><B><A NAME=2.1.1.10>2.1.1.10. FILM files</A></B></P> |
199 | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
200 <P>This format is used on old Sega Saturn CD-Rom games.</P> |
4339 | 201 |
202 | |
4503 | 203 <P><B><A NAME=2.1.1.11>2.1.1.11. RoQ files</A></B></P> |
204 | |
4584 | 205 <P>RoQ files are multimedia files used in some ID games such as Quake III and |
206 Return to Castle Wolfenstein.</P> | |
4503 | 207 |
208 | |
5860 | 209 <P><B><A NAME=2.1.1.12>2.1.1.12. OGG files</A></B></P> |
210 | |
211 <P>This is a new fileformat from Xiphophorus, developed to contain Vorbis | |
212 audio. You'll need <CODE>libogg</CODE> and <CODE>libvorbis</CODE> installed | |
5959 | 213 before compiling <B>MPlayer</B> to be able to play it.</P> |
5860 | 214 |
215 | |
2745 | 216 <P><B><A NAME=2.1.2>2.1.2. Audio formats</A></B></P> |
217 | |
5378 | 218 <P><B>MPlayer</B> is a <B>Movie</B> and not a <B>Media</B> player, although |
219 it can play some audio file formats (they are listed in the sections below). | |
220 This is not a recommended usage of <B>MPlayer</B>, you better use | |
221 <A HREF="http://www.xmms.org">xmms</A>.</P> | |
222 | |
223 | |
224 <P><B><A NAME=2.1.2.1>2.1.2.1. MP3 files</A></B></P> | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
225 |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
226 <P>You may have problems playing certain MP3 files that <B>MPlayer</B> will |
5378 | 227 misdetect as MPEGs and play incorrectly or not at all. This cannot be fixed |
228 without dropping support for certain broken MPEG files and thus will remain | |
5362
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
229 like this for the foreseeable future. The <CODE>-demuxer</CODE> flag described |
5882b38e1c2d
applied Diego's cosmetics patch :) with some small fixes
arpi
parents:
5122
diff
changeset
|
230 in the manpage may help you in these cases.</P> |
2745 | 231 |
5378 | 232 |
233 <P><B><A NAME=2.1.2.2>2.1.2.2. WAV files</A></B></P> | |
234 | |
235 | |
236 <P><B><A NAME=2.1.2.3>2.1.2.3. OGG files (Vorbis)</A></B></P> | |
237 | |
5860 | 238 <P>Requires properly installed <CODE>libogg</CODE> and |
239 <CODE>libvorbis</CODE>.</P> | |
5378 | 240 |
241 | |
242 <P><B><A NAME=2.1.2.4>2.1.2.4. WMA/ASF files</A></B></P> | |
243 | |
244 | |
245 <P><B><A NAME=2.1.2.5>2.1.2.5. MP4 files</A></B></P> | |
246 | |
2745 | 247 </BODY> |
248 </HTML> |