2007-08-28 06:22:57 +00:00
|
|
|
\input texinfo @c -*- texinfo -*-
|
|
|
|
|
|
|
|
@settitle General Documentation
|
|
|
|
@titlepage
|
|
|
|
@center @titlefont{General Documentation}
|
|
|
|
@end titlepage
|
|
|
|
|
2011-01-29 12:24:13 +00:00
|
|
|
@top
|
|
|
|
|
|
|
|
@contents
|
2007-08-28 06:22:57 +00:00
|
|
|
|
2011-12-03 20:50:19 +00:00
|
|
|
@chapter External libraries
|
2007-08-28 06:22:57 +00:00
|
|
|
|
2011-03-17 15:55:58 +00:00
|
|
|
FFmpeg can be hooked up with a number of external libraries to add support
|
2007-08-28 06:22:57 +00:00
|
|
|
for more formats. None of them are used by default, their use has to be
|
2012-05-16 17:24:39 +00:00
|
|
|
explicitly requested by passing the appropriate flags to
|
|
|
|
@command{./configure}.
|
2007-08-28 06:22:57 +00:00
|
|
|
|
2011-11-17 23:57:09 +00:00
|
|
|
@section OpenJPEG
|
|
|
|
|
|
|
|
FFmpeg can use the OpenJPEG libraries for encoding/decoding J2K videos. Go to
|
|
|
|
@url{http://www.openjpeg.org/} to get the libraries and follow the installation
|
|
|
|
instructions. To enable using OpenJPEG in FFmpeg, pass @code{--enable-libopenjpeg} to
|
|
|
|
@file{./configure}.
|
|
|
|
|
|
|
|
|
2011-12-03 20:50:19 +00:00
|
|
|
@section OpenCORE and VisualOn libraries
|
2007-08-28 06:22:57 +00:00
|
|
|
|
2011-12-03 20:50:19 +00:00
|
|
|
Spun off Google Android sources, OpenCore and VisualOn libraries provide
|
|
|
|
encoders for a number of audio codecs.
|
2009-06-05 12:32:40 +00:00
|
|
|
|
2011-12-03 20:50:19 +00:00
|
|
|
@float NOTE
|
|
|
|
OpenCORE and VisualOn libraries are under the Apache License 2.0
|
|
|
|
(see @url{http://www.apache.org/licenses/LICENSE-2.0} for details), which is
|
2009-06-05 12:32:40 +00:00
|
|
|
incompatible with the LGPL version 2.1 and GPL version 2. You have to
|
2011-03-17 15:55:58 +00:00
|
|
|
upgrade FFmpeg's license to LGPL version 3 (or if you have enabled
|
2009-06-05 12:32:40 +00:00
|
|
|
GPL components, GPL version 3) to use it.
|
2011-12-03 20:50:19 +00:00
|
|
|
@end float
|
|
|
|
|
|
|
|
@subsection OpenCORE AMR
|
|
|
|
|
2011-12-10 00:25:15 +00:00
|
|
|
FFmpeg can make use of the OpenCORE libraries for AMR-NB
|
2011-12-03 20:50:19 +00:00
|
|
|
decoding/encoding and AMR-WB decoding.
|
|
|
|
|
|
|
|
Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
|
|
|
|
instructions for installing the libraries.
|
|
|
|
Then pass @code{--enable-libopencore-amrnb} and/or
|
|
|
|
@code{--enable-libopencore-amrwb} to configure to enable them.
|
|
|
|
|
|
|
|
@subsection VisualOn AAC encoder library
|
|
|
|
|
2011-12-10 00:25:15 +00:00
|
|
|
FFmpeg can make use of the VisualOn AACenc library for AAC encoding.
|
2011-12-03 20:50:19 +00:00
|
|
|
|
|
|
|
Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
|
|
|
|
instructions for installing the library.
|
|
|
|
Then pass @code{--enable-libvo-aacenc} to configure to enable it.
|
|
|
|
|
|
|
|
@subsection VisualOn AMR-WB encoder library
|
|
|
|
|
2011-12-10 00:25:15 +00:00
|
|
|
FFmpeg can make use of the VisualOn AMR-WBenc library for AMR-WB encoding.
|
2011-12-03 20:50:19 +00:00
|
|
|
|
|
|
|
Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
|
|
|
|
instructions for installing the library.
|
|
|
|
Then pass @code{--enable-libvo-amrwbenc} to configure to enable it.
|
|
|
|
|
|
|
|
@section LAME
|
|
|
|
|
2011-12-10 00:25:15 +00:00
|
|
|
FFmpeg can make use of the LAME library for MP3 encoding.
|
2011-12-03 20:50:19 +00:00
|
|
|
|
|
|
|
Go to @url{http://lame.sourceforge.net/} and follow the
|
|
|
|
instructions for installing the library.
|
|
|
|
Then pass @code{--enable-libmp3lame} to configure to enable it.
|
|
|
|
|
|
|
|
@section libvpx
|
|
|
|
|
2011-12-10 00:25:15 +00:00
|
|
|
FFmpeg can make use of the libvpx library for VP8 encoding.
|
2011-12-03 20:50:19 +00:00
|
|
|
|
|
|
|
Go to @url{http://www.webmproject.org/} and follow the instructions for
|
|
|
|
installing the library. Then pass @code{--enable-libvpx} to configure to
|
|
|
|
enable it.
|
|
|
|
|
|
|
|
@section x264
|
|
|
|
|
2011-12-10 00:25:15 +00:00
|
|
|
FFmpeg can make use of the x264 library for H.264 encoding.
|
2011-12-03 20:50:19 +00:00
|
|
|
|
|
|
|
Go to @url{http://www.videolan.org/developers/x264.html} and follow the
|
|
|
|
instructions for installing the library. Then pass @code{--enable-libx264} to
|
|
|
|
configure to enable it.
|
|
|
|
|
|
|
|
@float NOTE
|
|
|
|
x264 is under the GNU Public License Version 2 or later
|
|
|
|
(see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
|
2011-12-10 00:25:15 +00:00
|
|
|
details), you must upgrade FFmpeg's license to GPL in order to use it.
|
2011-12-03 20:50:19 +00:00
|
|
|
@end float
|
|
|
|
|
2012-06-15 21:42:13 +00:00
|
|
|
@section libilbc
|
|
|
|
|
|
|
|
iLBC is a narrowband speech codec that has been made freely available
|
|
|
|
by Google as part of the WebRTC project. libilbc is a packaging friendly
|
2012-06-21 11:36:30 +00:00
|
|
|
copy of the iLBC codec. FFmpeg can make use of the libilbc library for
|
2012-06-15 21:42:13 +00:00
|
|
|
iLBC encoding and decoding.
|
|
|
|
|
|
|
|
Go to @url{https://github.com/dekkers/libilbc} and follow the instructions for
|
|
|
|
installing the library. Then pass @code{--enable-libilbc} to configure to
|
|
|
|
enable it.
|
|
|
|
|
2009-06-05 12:32:40 +00:00
|
|
|
|
2007-08-28 06:22:57 +00:00
|
|
|
|
2012-01-03 09:47:42 +00:00
|
|
|
@chapter Supported File Formats, Codecs or Features
|
2007-08-28 06:22:57 +00:00
|
|
|
|
2009-11-20 10:23:40 +00:00
|
|
|
You can use the @code{-formats} and @code{-codecs} options to have an exhaustive list.
|
2007-08-28 06:22:57 +00:00
|
|
|
|
|
|
|
@section File Formats
|
|
|
|
|
2011-03-17 15:55:58 +00:00
|
|
|
FFmpeg supports the following file formats through the @code{libavformat}
|
2007-08-28 06:22:57 +00:00
|
|
|
library:
|
|
|
|
|
|
|
|
@multitable @columnfractions .4 .1 .1 .4
|
2008-09-26 19:58:27 +00:00
|
|
|
@item Name @tab Encoding @tab Decoding @tab Comments
|
2008-07-10 16:33:10 +00:00
|
|
|
@item 4xm @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@tab 4X Technologies format, used in some games.
|
2009-05-06 22:06:19 +00:00
|
|
|
@item 8088flex TMV @tab @tab X
|
2011-09-25 15:57:58 +00:00
|
|
|
@item ACT Voice @tab @tab X
|
|
|
|
@tab contains G.729 audio
|
2010-01-14 14:02:06 +00:00
|
|
|
@item Adobe Filmstrip @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item Audio IFF (AIFF) @tab X @tab X
|
2008-07-10 16:33:10 +00:00
|
|
|
@item American Laser Games MM @tab @tab X
|
|
|
|
@tab Multimedia format used in games like Mad Dog McCree.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item 3GPP AMR @tab X @tab X
|
2010-08-19 14:54:37 +00:00
|
|
|
@item Apple HTTP Live Streaming @tab @tab X
|
2011-09-16 02:50:26 +00:00
|
|
|
@item Artworx Data Format @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item ASF @tab X @tab X
|
|
|
|
@item AVI @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item AVISynth @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item AVS @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Multimedia format used by the Creature Shock game.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Beam Software SIFF @tab @tab X
|
|
|
|
@tab Audio and video format used in some games by Beam Software.
|
|
|
|
@item Bethesda Softworks VID @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in some games from Bethesda Softworks.
|
2011-09-22 11:36:33 +00:00
|
|
|
@item Binary text @tab @tab X
|
2010-01-31 12:35:09 +00:00
|
|
|
@item Bink @tab @tab X
|
|
|
|
@tab Multimedia format used by many games.
|
2011-03-08 15:11:10 +00:00
|
|
|
@item Bitmap Brothers JV @tab @tab X
|
|
|
|
@tab Used in Z and Z95 games.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Brute Force & Ignorance @tab @tab X
|
|
|
|
@tab Used in the game Flash Traffic: City of Angels.
|
2011-05-18 11:48:39 +00:00
|
|
|
@item BWF @tab X @tab X
|
2011-12-19 16:10:34 +00:00
|
|
|
@item CRI ADX @tab X @tab X
|
2011-11-21 07:34:18 +00:00
|
|
|
@tab Audio-only format used in console video games.
|
2011-11-01 10:58:44 +00:00
|
|
|
@item Discworld II BMV @tab @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Interplay C93 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in the game Cyberia from Interplay.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Delphine Software International CIN @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Multimedia format used by Delphine Software games.
|
2009-12-17 17:25:31 +00:00
|
|
|
@item CD+G @tab @tab X
|
|
|
|
@tab Video format used by CD+G karaoke disks
|
2012-02-14 17:36:20 +00:00
|
|
|
@item Commodore CDXL @tab @tab X
|
|
|
|
@tab Amiga CD video format
|
2011-05-15 01:25:27 +00:00
|
|
|
@item Core Audio Format @tab X @tab X
|
2009-09-16 12:26:59 +00:00
|
|
|
@tab Apple Core Audio Format
|
2009-02-12 17:52:05 +00:00
|
|
|
@item CRC testing format @tab X @tab
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Creative Voice @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Created for the Sound Blaster Pro.
|
2008-07-10 16:33:10 +00:00
|
|
|
@item CRYO APC @tab @tab X
|
|
|
|
@tab Audio format used in some games by CRYO Interactive Entertainment.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item D-Cinema audio @tab X @tab X
|
2010-01-10 05:47:50 +00:00
|
|
|
@item Deluxe Paint Animation @tab @tab X
|
2011-03-15 08:37:48 +00:00
|
|
|
@item DFA @tab @tab X
|
|
|
|
@tab This format is used in Chronomaster game
|
2009-02-12 17:49:10 +00:00
|
|
|
@item DV video @tab X @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item DXA @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab This format is used in the non-Windows version of the Feeble Files
|
|
|
|
game and different game cutscenes repacked for use with ScummVM.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item Electronic Arts cdata @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item Electronic Arts Multimedia @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in various EA games; files have extensions like WVE and UV2.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item FFM (FFserver live feed) @tab X @tab X
|
|
|
|
@item Flash (SWF) @tab X @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Flash 9 (AVM2) @tab X @tab X
|
|
|
|
@tab Only embedded audio is decoded.
|
|
|
|
@item FLI/FLC/FLX animation @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab .fli/.flc files
|
2011-04-22 17:24:17 +00:00
|
|
|
@item Flash Video (FLV) @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Macromedia Flash video files
|
2009-02-12 17:52:05 +00:00
|
|
|
@item framecrc testing format @tab X @tab
|
2009-01-17 20:08:43 +00:00
|
|
|
@item FunCom ISS @tab @tab X
|
|
|
|
@tab Audio format used in various games from FunCom like The Longest Journey.
|
2011-10-10 08:49:16 +00:00
|
|
|
@item G.723.1 @tab X @tab X
|
2011-09-29 23:16:30 +00:00
|
|
|
@item G.729 BIT @tab X @tab X
|
2011-10-29 22:01:46 +00:00
|
|
|
@item G.729 raw @tab @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item GIF Animation @tab X @tab
|
2008-07-08 14:34:15 +00:00
|
|
|
@item GXF @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley
|
2008-07-10 16:33:10 +00:00
|
|
|
playout servers.
|
2011-09-16 02:50:26 +00:00
|
|
|
@item iCEDraw File @tab @tab X
|
2011-12-04 06:45:24 +00:00
|
|
|
@item ICO @tab @tab X
|
|
|
|
@tab Microsoft Windows ICO
|
2009-03-02 03:30:53 +00:00
|
|
|
@item id Quake II CIN video @tab @tab X
|
2008-07-08 15:05:59 +00:00
|
|
|
@item id RoQ @tab X @tab X
|
2011-11-29 16:46:29 +00:00
|
|
|
@tab Used in Quake III, Jedi Knight 2 and other computer games.
|
2010-11-22 22:09:26 +00:00
|
|
|
@item IEC61937 encapsulation @tab X @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item IFF @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Interchange File Format
|
2012-06-17 12:54:31 +00:00
|
|
|
@item iLBC @tab X @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item Interplay MVE @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Format used in various Interplay computer games.
|
2009-12-03 00:27:01 +00:00
|
|
|
@item IV8 @tab @tab X
|
|
|
|
@tab A format generated by IndigoVision 8000 video server.
|
2011-01-18 06:59:49 +00:00
|
|
|
@item IVF (On2) @tab X @tab X
|
2010-05-27 21:23:04 +00:00
|
|
|
@tab A format used by libvpx
|
2011-09-06 19:05:27 +00:00
|
|
|
@item LATM @tab X @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item LMLM4 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used by Linux Media Labs MPEG-4 PCI boards
|
2011-08-19 22:27:38 +00:00
|
|
|
@item LOAS @tab @tab X
|
|
|
|
@tab contains LATM multiplexed AAC audio
|
2010-10-01 11:08:24 +00:00
|
|
|
@item LXF @tab @tab X
|
|
|
|
@tab VR native stream format, used by Leitch/Harris' video servers.
|
2008-07-10 16:33:10 +00:00
|
|
|
@item Matroska @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item Matroska audio @tab X @tab
|
2010-12-27 07:46:53 +00:00
|
|
|
@item FFmpeg metadata @tab X @tab X
|
2010-12-27 07:46:49 +00:00
|
|
|
@tab Metadata in text format.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item MAXIS XA @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in Sim City 3000; file extension .xa.
|
2009-09-22 17:28:03 +00:00
|
|
|
@item MD Studio @tab @tab X
|
2012-03-21 22:18:54 +00:00
|
|
|
@item Metal Gear Solid: The Twin Snakes @tab @tab X
|
2010-11-26 10:11:16 +00:00
|
|
|
@item Mobotix .mxg @tab @tab X
|
2008-07-10 16:33:10 +00:00
|
|
|
@item Monkey's Audio @tab @tab X
|
2008-07-10 18:01:21 +00:00
|
|
|
@item Motion Pixels MVI @tab @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item MOV/QuickTime/MP4 @tab X @tab X
|
|
|
|
@tab 3GP, 3GP2, PSP, iPod variants supported
|
2009-03-02 02:58:22 +00:00
|
|
|
@item MP2 @tab X @tab X
|
|
|
|
@item MP3 @tab X @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item MPEG-1 System @tab X @tab X
|
|
|
|
@tab muxed audio and video, VCD format supported
|
|
|
|
@item MPEG-PS (program stream) @tab X @tab X
|
|
|
|
@tab also known as @code{VOB} file, SVCD and DVD format supported
|
|
|
|
@item MPEG-TS (transport stream) @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab also known as DVB Transport Stream
|
2008-07-08 14:34:15 +00:00
|
|
|
@item MPEG-4 @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab MPEG-4 is a variant of QuickTime.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item MIME multipart JPEG @tab X @tab
|
2008-07-08 15:01:44 +00:00
|
|
|
@item MSN TCP webcam @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used by MSN Messenger webcam streams.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item MTV @tab @tab X
|
|
|
|
@item Musepack @tab @tab X
|
|
|
|
@item Musepack SV8 @tab @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Material eXchange Format (MXF) @tab X @tab X
|
|
|
|
@tab SMPTE 377M, used by D-Cinema, broadcast industry.
|
2009-02-22 10:47:16 +00:00
|
|
|
@item Material eXchange Format (MXF), D-10 Mapping @tab X @tab X
|
|
|
|
@tab SMPTE 386M, D-10/IMX Mapping.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item NC camera feed @tab @tab X
|
|
|
|
@tab NC (AVIP NC4600) camera streams
|
2009-03-08 18:33:24 +00:00
|
|
|
@item NTT TwinVQ (VQF) @tab @tab X
|
|
|
|
@tab Nippon Telegraph and Telephone Corporation TwinVQ.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Nullsoft Streaming Video @tab @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item NuppelVideo @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item NUT @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab NUT Open Container Format
|
2009-02-12 17:52:05 +00:00
|
|
|
@item Ogg @tab X @tab X
|
2011-03-26 15:25:10 +00:00
|
|
|
@item Playstation Portable PMP @tab @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item TechnoTrend PVA @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used by TechnoTrend DVB PCI boards.
|
2009-05-20 17:19:39 +00:00
|
|
|
@item QCP @tab @tab X
|
2009-02-12 22:52:03 +00:00
|
|
|
@item raw ADTS (AAC) @tab X @tab X
|
2008-07-08 15:05:59 +00:00
|
|
|
@item raw AC-3 @tab X @tab X
|
2010-07-27 07:18:36 +00:00
|
|
|
@item raw Chinese AVS video @tab X @tab X
|
2009-02-12 22:52:03 +00:00
|
|
|
@item raw CRI ADX @tab X @tab X
|
|
|
|
@item raw Dirac @tab X @tab X
|
|
|
|
@item raw DNxHD @tab X @tab X
|
|
|
|
@item raw DTS @tab X @tab X
|
|
|
|
@item raw E-AC-3 @tab X @tab X
|
|
|
|
@item raw FLAC @tab X @tab X
|
|
|
|
@item raw GSM @tab @tab X
|
|
|
|
@item raw H.261 @tab X @tab X
|
|
|
|
@item raw H.263 @tab X @tab X
|
|
|
|
@item raw H.264 @tab X @tab X
|
|
|
|
@item raw Ingenient MJPEG @tab @tab X
|
2008-07-08 15:05:59 +00:00
|
|
|
@item raw MJPEG @tab X @tab X
|
2009-02-12 22:52:03 +00:00
|
|
|
@item raw MLP @tab @tab X
|
|
|
|
@item raw MPEG @tab @tab X
|
|
|
|
@item raw MPEG-1 @tab @tab X
|
|
|
|
@item raw MPEG-2 @tab @tab X
|
|
|
|
@item raw MPEG-4 @tab X @tab X
|
|
|
|
@item raw NULL @tab X @tab
|
2009-02-12 22:58:33 +00:00
|
|
|
@item raw video @tab X @tab X
|
2009-02-12 22:52:03 +00:00
|
|
|
@item raw id RoQ @tab X @tab
|
|
|
|
@item raw Shorten @tab @tab X
|
2009-03-19 21:46:56 +00:00
|
|
|
@item raw TrueHD @tab X @tab X
|
2009-02-12 22:52:03 +00:00
|
|
|
@item raw VC-1 @tab @tab X
|
|
|
|
@item raw PCM A-law @tab X @tab X
|
|
|
|
@item raw PCM mu-law @tab X @tab X
|
|
|
|
@item raw PCM signed 8 bit @tab X @tab X
|
|
|
|
@item raw PCM signed 16 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM signed 16 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM signed 24 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM signed 24 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM signed 32 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM signed 32 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM unsigned 8 bit @tab X @tab X
|
|
|
|
@item raw PCM unsigned 16 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM unsigned 16 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM unsigned 24 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM unsigned 24 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM unsigned 32 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM unsigned 32 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM floating-point 32 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM floating-point 32 bit little-endian @tab X @tab X
|
|
|
|
@item raw PCM floating-point 64 bit big-endian @tab X @tab X
|
|
|
|
@item raw PCM floating-point 64 bit little-endian @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item RDT @tab @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item REDCODE R3D @tab @tab X
|
2009-01-20 07:42:14 +00:00
|
|
|
@tab File format used by RED Digital cameras, contains JPEG 2000 frames and PCM audio.
|
2008-07-10 16:33:10 +00:00
|
|
|
@item RealMedia @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item Redirector @tab @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Renderware TeXture Dictionary @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item RL2 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Audio and video format used in some games by Entertainment Software Partners.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item RPL/ARMovie @tab @tab X
|
2010-07-20 14:13:24 +00:00
|
|
|
@item Lego Mindstorms RSO @tab X @tab X
|
2009-12-04 16:52:16 +00:00
|
|
|
@item RTMP @tab X @tab X
|
|
|
|
@tab Output is performed by publishing stream to RTMP server
|
2010-10-19 07:38:53 +00:00
|
|
|
@item RTP @tab X @tab X
|
2010-02-22 21:28:19 +00:00
|
|
|
@item RTSP @tab X @tab X
|
2010-10-13 09:06:59 +00:00
|
|
|
@item SAP @tab X @tab X
|
2011-11-02 15:30:27 +00:00
|
|
|
@item SBG @tab @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item SDP @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item Sega FILM/CPK @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in many Sega Saturn console games.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Sierra SOL @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab .sol files used in Sierra Online games.
|
2008-07-08 14:34:15 +00:00
|
|
|
@item Sierra VMD @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in Sierra CD-ROM games.
|
2008-07-08 14:34:15 +00:00
|
|
|
@item Smacker @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Multimedia format used by many games.
|
2012-01-14 19:29:59 +00:00
|
|
|
@item SMJPEG @tab X @tab X
|
2011-12-24 01:57:34 +00:00
|
|
|
@tab Used in certain Loki game ports.
|
2012-06-25 17:36:57 +00:00
|
|
|
@item Smush @tab @tab X
|
2012-03-19 02:55:26 +00:00
|
|
|
@tab Multimedia format used in some LucasArts games.
|
2011-10-21 21:32:33 +00:00
|
|
|
@item Sony OpenMG (OMA) @tab X @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@tab Audio format used in Sony Sonic Stage and Sony Vegas.
|
|
|
|
@item Sony PlayStation STR @tab @tab X
|
2009-08-10 16:27:33 +00:00
|
|
|
@item Sony Wave64 (W64) @tab @tab X
|
2009-05-30 18:51:15 +00:00
|
|
|
@item SoX native format @tab X @tab X
|
2008-07-10 16:33:10 +00:00
|
|
|
@item SUN AU format @tab X @tab X
|
2010-07-18 08:06:55 +00:00
|
|
|
@item Text files @tab @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item THP @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used on the Nintendo GameCube.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Tiertex Limited SEQ @tab @tab X
|
|
|
|
@tab Tiertex .seq files used in the DOS CD-ROM version of the game Flashback.
|
2009-02-12 17:52:05 +00:00
|
|
|
@item True Audio @tab @tab X
|
|
|
|
@item VC-1 test bitstream @tab X @tab X
|
2008-07-08 14:34:15 +00:00
|
|
|
@item WAV @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item WavPack @tab @tab X
|
2010-06-04 22:40:54 +00:00
|
|
|
@item WebM @tab X @tab X
|
2011-09-13 23:21:15 +00:00
|
|
|
@item Windows Televison (WTV) @tab X @tab X
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Wing Commander III movie @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Multimedia format used in Origin's Wing Commander III computer game.
|
2009-02-12 17:49:10 +00:00
|
|
|
@item Westwood Studios audio @tab @tab X
|
|
|
|
@tab Multimedia format used in Westwood Studios games.
|
|
|
|
@item Westwood Studios VQA @tab @tab X
|
|
|
|
@tab Multimedia format used in Westwood Studios games.
|
2011-08-16 19:26:45 +00:00
|
|
|
@item XMV @tab @tab X
|
|
|
|
@tab Microsoft video container used in Xbox games.
|
2011-04-12 11:59:39 +00:00
|
|
|
@item xWMA @tab @tab X
|
|
|
|
@tab Microsoft audio container used by XAudio 2.
|
2011-09-16 02:50:26 +00:00
|
|
|
@item eXtended BINary text (XBIN) @tab @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item YUV4MPEG pipe @tab X @tab X
|
2010-03-29 22:17:01 +00:00
|
|
|
@item Psygnosis YOP @tab @tab X
|
2012-03-18 17:00:18 +00:00
|
|
|
@item ZeroCodec Lossless Video @tab @tab X
|
2007-08-28 06:22:57 +00:00
|
|
|
@end multitable
|
|
|
|
|
|
|
|
@code{X} means that encoding (resp. decoding) is supported.
|
|
|
|
|
|
|
|
@section Image Formats
|
|
|
|
|
|
|
|
FFmpeg can read and write images for each frame of a video sequence. The
|
|
|
|
following image formats are supported:
|
|
|
|
|
|
|
|
@multitable @columnfractions .4 .1 .1 .4
|
2008-09-26 19:58:27 +00:00
|
|
|
@item Name @tab Encoding @tab Decoding @tab Comments
|
2009-03-02 00:24:10 +00:00
|
|
|
@item .Y.U.V @tab X @tab X
|
|
|
|
@tab one raw file per component
|
|
|
|
@item animated GIF @tab X @tab X
|
|
|
|
@tab Only uncompressed GIFs are generated.
|
2009-03-02 00:29:24 +00:00
|
|
|
@item BMP @tab X @tab X
|
|
|
|
@tab Microsoft BMP image
|
2011-03-26 04:12:35 +00:00
|
|
|
@item DPX @tab X @tab X
|
2009-06-12 05:29:29 +00:00
|
|
|
@tab Digital Picture Exchange
|
2012-04-06 04:02:25 +00:00
|
|
|
@item EXR @tab @tab X
|
|
|
|
@tab OpenEXR
|
2009-03-02 00:24:10 +00:00
|
|
|
@item JPEG @tab X @tab X
|
|
|
|
@tab Progressive JPEG is not supported.
|
2011-05-23 21:13:34 +00:00
|
|
|
@item JPEG 2000 @tab X @tab X
|
2009-03-02 00:29:24 +00:00
|
|
|
@item JPEG-LS @tab X @tab X
|
|
|
|
@item LJPEG @tab X @tab
|
|
|
|
@tab Lossless JPEG
|
2009-03-02 06:13:54 +00:00
|
|
|
@item PAM @tab X @tab X
|
2009-03-02 00:24:10 +00:00
|
|
|
@tab PAM is a PNM extension with alpha support.
|
2009-03-02 06:13:54 +00:00
|
|
|
@item PBM @tab X @tab X
|
2009-03-02 00:29:24 +00:00
|
|
|
@tab Portable BitMap image
|
2009-03-20 17:23:45 +00:00
|
|
|
@item PCX @tab X @tab X
|
2009-03-02 00:24:10 +00:00
|
|
|
@tab PC Paintbrush
|
2009-03-02 06:13:54 +00:00
|
|
|
@item PGM @tab X @tab X
|
2009-03-02 00:27:51 +00:00
|
|
|
@tab Portable GrayMap image
|
2009-03-02 06:13:54 +00:00
|
|
|
@item PGMYUV @tab X @tab X
|
2009-03-02 00:24:10 +00:00
|
|
|
@tab PGM with U and V components in YUV 4:2:0
|
2010-06-08 11:55:06 +00:00
|
|
|
@item PIC @tab @tab X
|
|
|
|
@tab Pictor/PC Paint
|
2009-03-02 00:24:10 +00:00
|
|
|
@item PNG @tab X @tab X
|
2009-03-02 06:13:54 +00:00
|
|
|
@item PPM @tab X @tab X
|
2009-03-02 00:27:51 +00:00
|
|
|
@tab Portable PixelMap image
|
2009-03-02 00:24:10 +00:00
|
|
|
@item PTX @tab @tab X
|
|
|
|
@tab V.Flash PTX format
|
|
|
|
@item SGI @tab X @tab X
|
|
|
|
@tab SGI RGB image format
|
2012-02-16 21:08:51 +00:00
|
|
|
@item Sun Rasterfile @tab X @tab X
|
2009-03-02 03:41:58 +00:00
|
|
|
@tab Sun RAS image format
|
2009-03-02 00:24:10 +00:00
|
|
|
@item TIFF @tab X @tab X
|
|
|
|
@tab YUV, JPEG and some extension is not supported yet.
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Truevision Targa @tab X @tab X
|
|
|
|
@tab Targa (.TGA) image format
|
2012-03-23 22:54:09 +00:00
|
|
|
@item XBM @tab X @tab X
|
2012-03-17 17:43:58 +00:00
|
|
|
@tab X BitMap image format
|
2012-01-21 17:45:52 +00:00
|
|
|
@item XWD @tab X @tab X
|
|
|
|
@tab X Window Dump image format
|
2007-08-28 06:22:57 +00:00
|
|
|
@end multitable
|
|
|
|
|
|
|
|
@code{X} means that encoding (resp. decoding) is supported.
|
|
|
|
|
2009-02-06 11:49:31 +00:00
|
|
|
@code{E} means that support is provided through an external library.
|
|
|
|
|
2007-08-28 06:22:57 +00:00
|
|
|
@section Video Codecs
|
|
|
|
|
|
|
|
@multitable @columnfractions .4 .1 .1 .4
|
2008-09-26 19:58:27 +00:00
|
|
|
@item Name @tab Encoding @tab Decoding @tab Comments
|
2009-03-02 01:55:21 +00:00
|
|
|
@item 4X Movie @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in certain computer games.
|
2009-05-06 22:06:19 +00:00
|
|
|
@item 8088flex TMV @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item 8SVX exponential @tab @tab X
|
|
|
|
@item 8SVX fibonacci @tab @tab X
|
2010-08-23 11:48:50 +00:00
|
|
|
@item A64 multicolor @tab X @tab
|
|
|
|
@tab Creates video suitable to be played on a commodore 64 (multicolor mode).
|
2009-02-12 17:49:10 +00:00
|
|
|
@item American Laser Games MM @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in games like Mad Dog McCree.
|
2011-09-25 15:35:45 +00:00
|
|
|
@item AMV Video @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in Chinese MP3 players.
|
2010-07-18 08:06:55 +00:00
|
|
|
@item ANSI/ASCII art @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Apple MJPEG-B @tab @tab X
|
2011-10-28 20:13:58 +00:00
|
|
|
@item Apple ProRes @tab X @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Apple QuickDraw @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: qdrw
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Asus v1 @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: ASV1
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Asus v2 @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: ASV2
|
2008-07-08 14:41:12 +00:00
|
|
|
@item ATI VCR1 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: VCR1
|
2008-07-08 14:41:12 +00:00
|
|
|
@item ATI VCR2 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: VCR2
|
2009-12-23 13:04:57 +00:00
|
|
|
@item Auravision Aura @tab @tab X
|
2009-12-23 16:01:15 +00:00
|
|
|
@item Auravision Aura 2 @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Autodesk Animator Flic video @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Autodesk RLE @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: AASC
|
2012-01-25 19:46:57 +00:00
|
|
|
@item Avid 1:1 10-bit RGB Packer @tab X @tab X
|
2012-01-04 14:10:58 +00:00
|
|
|
@tab fourcc: AVrp
|
2009-03-02 01:55:21 +00:00
|
|
|
@item AVS (Audio Video Standard) video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Video encoding used by the Creature Shock game.
|
2012-02-05 19:43:33 +00:00
|
|
|
@item AYUV @tab X @tab X
|
|
|
|
@tab Microsoft uncompressed packed 4:4:4:4
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Beam Software VB @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Bethesda VID video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in some games from Bethesda Softworks.
|
2010-02-21 13:28:46 +00:00
|
|
|
@item Bink Video @tab @tab X
|
2011-03-08 15:11:10 +00:00
|
|
|
@item Bitmap Brothers JV video @tab @tab X
|
2012-01-01 12:16:42 +00:00
|
|
|
@item y41p Brooktree uncompressed 4:1:1 12-bit @tab X @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Brute Force & Ignorance @tab @tab X
|
|
|
|
@tab Used in the game Flash Traffic: City of Angels.
|
2008-07-08 15:01:44 +00:00
|
|
|
@item C93 video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Codec used in Cyberia game.
|
2008-07-08 14:41:12 +00:00
|
|
|
@item CamStudio @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: CSCD
|
2009-12-17 17:25:31 +00:00
|
|
|
@item CD+G @tab @tab X
|
|
|
|
@tab Video codec for CD+G karaoke disks
|
2012-02-14 17:36:20 +00:00
|
|
|
@item CDXL @tab @tab X
|
|
|
|
@tab Amiga CD video codec
|
2010-07-27 07:18:36 +00:00
|
|
|
@item Chinese AVS video @tab E @tab X
|
|
|
|
@tab AVS1-P2, JiZhun profile, encoding through external library libxavs
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Delphine Software International CIN video @tab @tab X
|
|
|
|
@tab Codec used in Delphine Software International games.
|
2011-11-01 10:58:44 +00:00
|
|
|
@item Discworld II BMV Video @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Cinepak @tab @tab X
|
2011-12-08 00:05:23 +00:00
|
|
|
@item Cirrus Logic AccuPak @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: CLJR
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Creative YUV (CYUV) @tab @tab X
|
2011-03-15 08:37:48 +00:00
|
|
|
@item DFA @tab @tab X
|
|
|
|
@tab Codec used in Chronomaster game.
|
2011-10-31 00:13:41 +00:00
|
|
|
@item Dirac @tab E @tab X
|
2012-04-14 12:54:03 +00:00
|
|
|
@tab supported through external library libschroedinger
|
2010-01-10 05:41:36 +00:00
|
|
|
@item Deluxe Paint Animation @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item DNxHD @tab X @tab X
|
|
|
|
@tab aka SMPTE VC3
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Duck TrueMotion 1.0 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: DUCK
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Duck TrueMotion 2.0 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: TM20
|
2009-03-02 01:55:21 +00:00
|
|
|
@item DV (Digital Video) @tab X @tab X
|
2011-12-09 10:06:02 +00:00
|
|
|
@item Dxtory capture format @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Feeble Files/ScummVM DXA @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Codec originally used in Feeble Files game.
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Electronic Arts CMV video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in NHL 95 game.
|
2009-06-13 02:19:41 +00:00
|
|
|
@item Electronic Arts Madcow video @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Electronic Arts TGV video @tab @tab X
|
|
|
|
@item Electronic Arts TGQ video @tab @tab X
|
|
|
|
@item Electronic Arts TQI video @tab @tab X
|
|
|
|
@item Escape 124 @tab @tab X
|
2011-12-08 12:13:42 +00:00
|
|
|
@item Escape 130 @tab @tab X
|
2009-08-31 05:48:17 +00:00
|
|
|
@item FFmpeg video codec #1 @tab X @tab X
|
2012-02-01 21:25:06 +00:00
|
|
|
@tab lossless codec (fourcc: FFV1)
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Flash Screen Video v1 @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: FSV1
|
2011-07-23 14:47:10 +00:00
|
|
|
@item Flash Screen Video v2 @tab X @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Flash Video (FLV) @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Sorenson H.263 used in Flash
|
2012-02-01 20:30:33 +00:00
|
|
|
@item Forward Uncompressed @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Fraps @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item H.261 @tab X @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item H.263 / H.263-1996 @tab X @tab X
|
|
|
|
@item H.263+ / H.263-1998 / H.263 version 2 @tab X @tab X
|
|
|
|
@item H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 @tab E @tab X
|
2008-10-25 08:41:00 +00:00
|
|
|
@tab encoding supported through external library libx264
|
2009-03-02 03:30:53 +00:00
|
|
|
@item H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (VDPAU acceleration) @tab E @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item HuffYUV @tab X @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item HuffYUV FFmpeg variant @tab X @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item IBM Ultimotion @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: ULTI
|
2008-07-08 15:01:44 +00:00
|
|
|
@item id Cinematic video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in Quake II.
|
2009-03-02 03:41:58 +00:00
|
|
|
@item id RoQ video @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in Quake III, Jedi Knight 2, other computer games.
|
2010-02-03 09:56:16 +00:00
|
|
|
@item IFF ILBM @tab @tab X
|
2011-11-29 16:46:29 +00:00
|
|
|
@tab IFF interleaved bitmap
|
2010-02-03 09:56:16 +00:00
|
|
|
@item IFF ByteRun1 @tab @tab X
|
|
|
|
@tab IFF run length encoded bitmap
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Intel H.263 @tab @tab X
|
|
|
|
@item Intel Indeo 2 @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Intel Indeo 3 @tab @tab X
|
2011-12-06 13:50:32 +00:00
|
|
|
@item Intel Indeo 4 @tab @tab X
|
2010-02-09 07:55:07 +00:00
|
|
|
@item Intel Indeo 5 @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Interplay C93 @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@tab Used in the game Cyberia from Interplay.
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Interplay MVE video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in Interplay .MVE files.
|
2011-11-17 23:57:09 +00:00
|
|
|
@item J2K @tab X @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Karl Morton's video codec @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Codec used in Worms games.
|
2010-03-09 01:03:09 +00:00
|
|
|
@item Kega Game Video (KGV1) @tab @tab X
|
|
|
|
@tab Kega emulator screen capture codec.
|
2011-01-08 21:22:15 +00:00
|
|
|
@item Lagarith @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item LCL (LossLess Codec Library) MSZH @tab @tab X
|
|
|
|
@item LCL (LossLess Codec Library) ZLIB @tab E @tab E
|
2008-07-08 14:41:12 +00:00
|
|
|
@item LOCO @tab @tab X
|
2012-03-19 02:54:19 +00:00
|
|
|
@item LucasArts Smush @tab @tab X
|
2012-06-25 17:36:57 +00:00
|
|
|
@tab Used in LucasArts games.
|
2008-07-08 14:41:12 +00:00
|
|
|
@item lossless MJPEG @tab X @tab X
|
|
|
|
@item Microsoft RLE @tab @tab X
|
2012-06-15 18:37:37 +00:00
|
|
|
@item Microsoft Screen 1 @tab @tab X
|
|
|
|
@tab Also known as Windows Media Video V7 Screen.
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Microsoft Video 1 @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Mimic @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Used in MSN Messenger Webcam streams.
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Miro VideoXL @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: VIXL
|
2009-03-02 01:40:21 +00:00
|
|
|
@item MJPEG (Motion JPEG) @tab X @tab X
|
2011-03-28 16:02:19 +00:00
|
|
|
@item Mobotix MxPEG video @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Motion Pixels video @tab @tab X
|
|
|
|
@item MPEG-1 video @tab X @tab X
|
|
|
|
@item MPEG-1/2 video XvMC (X-Video Motion Compensation) @tab @tab X
|
|
|
|
@item MPEG-1/2 video (VDPAU acceleration) @tab @tab X
|
|
|
|
@item MPEG-2 video @tab X @tab X
|
|
|
|
@item MPEG-4 part 2 @tab X @tab X
|
2011-10-31 00:11:19 +00:00
|
|
|
@tab libxvidcore can be used alternatively for encoding.
|
2010-07-20 14:15:23 +00:00
|
|
|
@item MPEG-4 part 2 Microsoft variant version 1 @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item MPEG-4 part 2 Microsoft variant version 2 @tab X @tab X
|
|
|
|
@item MPEG-4 part 2 Microsoft variant version 3 @tab X @tab X
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Nintendo Gamecube THP video @tab @tab X
|
2009-03-02 03:52:40 +00:00
|
|
|
@item NuppelVideo/RTjpeg @tab @tab X
|
|
|
|
@tab Video encoding used in NuppelVideo files.
|
2008-07-08 14:41:12 +00:00
|
|
|
@item On2 VP3 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab still experimental
|
2008-07-08 14:41:12 +00:00
|
|
|
@item On2 VP5 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: VP50
|
2008-07-08 14:41:12 +00:00
|
|
|
@item On2 VP6 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: VP60,VP61,VP62
|
2010-06-22 19:24:09 +00:00
|
|
|
@item VP8 @tab E @tab X
|
|
|
|
@tab fourcc: VP80, encoding supported through external library libvpx
|
2008-07-08 14:41:12 +00:00
|
|
|
@item planar RGB @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: 8BPS
|
2011-09-15 03:50:44 +00:00
|
|
|
@item Prores @tab @tab X
|
|
|
|
@tab fourcc: apch,apcn,apcs,apco
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Q-team QPEG @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourccs: QPEG, Q1.0, Q1.1
|
2009-03-02 01:55:21 +00:00
|
|
|
@item QuickTime 8BPS video @tab @tab X
|
2009-03-02 03:41:58 +00:00
|
|
|
@item QuickTime Animation (RLE) video @tab X @tab X
|
|
|
|
@tab fourcc: 'rle '
|
|
|
|
@item QuickTime Graphics (SMC) @tab @tab X
|
|
|
|
@tab fourcc: 'smc '
|
|
|
|
@item QuickTime video (RPZA) @tab @tab X
|
|
|
|
@tab fourcc: rpza
|
2012-01-25 19:46:57 +00:00
|
|
|
@item R10K AJA Kona 10-bit RGB Codec @tab X @tab X
|
|
|
|
@item R210 Quicktime Uncompressed RGB 10-bit @tab X @tab X
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Raw Video @tab X @tab X
|
2007-08-28 06:22:57 +00:00
|
|
|
@item RealVideo 1.0 @tab X @tab X
|
|
|
|
@item RealVideo 2.0 @tab X @tab X
|
2008-12-20 18:06:01 +00:00
|
|
|
@item RealVideo 3.0 @tab @tab X
|
|
|
|
@tab still far from ideal
|
2008-12-01 06:40:36 +00:00
|
|
|
@item RealVideo 4.0 @tab @tab X
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Renderware TXD (TeXture Dictionary) @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Texture dictionaries used by the Renderware Engine.
|
2009-03-02 03:41:58 +00:00
|
|
|
@item RL2 video @tab @tab X
|
|
|
|
@tab used in some games by Entertainment Software Partners
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Sierra VMD video @tab @tab X
|
|
|
|
@tab Used in Sierra VMD files.
|
2008-07-08 15:01:44 +00:00
|
|
|
@item Smacker video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Video encoding used in Smacker.
|
2009-03-02 02:25:31 +00:00
|
|
|
@item SMPTE VC-1 @tab @tab X
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Snow @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab experimental wavelet codec (fourcc: SNOW)
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Sony PlayStation MDEC (Motion DECoder) @tab @tab X
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Sorenson Vector Quantizer 1 @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: SVQ1
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Sorenson Vector Quantizer 3 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: SVQ3
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Sunplus JPEG (SP5X) @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: SP5X
|
2009-03-02 02:25:31 +00:00
|
|
|
@item TechSmith Screen Capture Codec @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab fourcc: TSCC
|
2008-10-25 08:51:46 +00:00
|
|
|
@item Theora @tab E @tab X
|
2008-10-25 08:41:00 +00:00
|
|
|
@tab encoding supported through external library libtheora
|
2009-03-02 03:41:58 +00:00
|
|
|
@item Tiertex Limited SEQ video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Codec used in DOS CD-ROM FlashBack game.
|
2011-10-16 15:20:17 +00:00
|
|
|
@item Ut Video @tab @tab X
|
2011-12-13 19:33:48 +00:00
|
|
|
@item v210 QuickTime uncompressed 4:2:2 10-bit @tab X @tab X
|
2012-01-04 14:24:38 +00:00
|
|
|
@item v308 QuickTime uncompressed 4:4:4 @tab X @tab X
|
2012-02-05 19:43:33 +00:00
|
|
|
@item v408 QuickTime uncompressed 4:4:4:4 @tab X @tab X
|
2011-12-13 19:33:48 +00:00
|
|
|
@item v410 QuickTime uncompressed 4:4:4 10-bit @tab X @tab X
|
2011-11-11 23:13:35 +00:00
|
|
|
@item VBLE Lossless Codec @tab @tab X
|
2009-03-02 01:40:21 +00:00
|
|
|
@item VMware Screen Codec / VMware Video @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Codec used in videos captured by VMware.
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Westwood Studios VQA (Vector Quantized Animation) video @tab @tab X
|
2011-08-17 12:24:42 +00:00
|
|
|
@item Windows Media Image @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Windows Media Video 7 @tab X @tab X
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Windows Media Video 8 @tab X @tab X
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Windows Media Video 9 @tab @tab X
|
|
|
|
@tab not completely working
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Wing Commander III / Xan @tab @tab X
|
|
|
|
@tab Used in Wing Commander III .MVE files.
|
2011-02-04 22:41:07 +00:00
|
|
|
@item Wing Commander IV / Xan @tab @tab X
|
|
|
|
@tab Used in Wing Commander IV.
|
2008-07-08 14:41:12 +00:00
|
|
|
@item Winnov WNV1 @tab @tab X
|
|
|
|
@item WMV7 @tab X @tab X
|
2009-02-12 17:52:05 +00:00
|
|
|
@item YAMAHA SMAF @tab X @tab X
|
2010-03-29 22:17:01 +00:00
|
|
|
@item Psygnosis YOP Video @tab @tab X
|
2012-01-04 14:35:15 +00:00
|
|
|
@item yuv4 @tab X @tab X
|
|
|
|
@tab libquicktime uncompressed packed 4:2:0
|
2008-07-08 14:41:12 +00:00
|
|
|
@item ZLIB @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab part of LCL, encoder experimental
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Zip Motion Blocks Video @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Encoder works only in PAL8.
|
2007-08-28 06:22:57 +00:00
|
|
|
@end multitable
|
|
|
|
|
|
|
|
@code{X} means that encoding (resp. decoding) is supported.
|
|
|
|
|
2008-10-25 08:51:46 +00:00
|
|
|
@code{E} means that support is provided through an external library.
|
|
|
|
|
2007-08-28 06:22:57 +00:00
|
|
|
@section Audio Codecs
|
|
|
|
|
2008-10-27 14:16:42 +00:00
|
|
|
@multitable @columnfractions .4 .1 .1 .4
|
2008-09-26 19:58:27 +00:00
|
|
|
@item Name @tab Encoding @tab Decoding @tab Comments
|
2008-07-08 14:47:22 +00:00
|
|
|
@item 8SVX audio @tab @tab X
|
2011-09-26 00:28:21 +00:00
|
|
|
@item AAC+ @tab E @tab X
|
|
|
|
@tab encoding supported through external library libaacplus
|
2008-10-25 08:51:46 +00:00
|
|
|
@item AAC @tab E @tab X
|
2010-12-19 19:40:23 +00:00
|
|
|
@tab encoding supported through external library libfaac and libvo-aacenc
|
2009-03-02 06:31:28 +00:00
|
|
|
@item AC-3 @tab IX @tab X
|
2009-03-02 05:55:03 +00:00
|
|
|
@item ADPCM 4X Movie @tab @tab X
|
|
|
|
@item ADPCM CDROM XA @tab @tab X
|
|
|
|
@item ADPCM Creative Technology @tab @tab X
|
|
|
|
@tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
|
|
|
|
@item ADPCM Electronic Arts @tab @tab X
|
|
|
|
@tab Used in various EA titles.
|
|
|
|
@item ADPCM Electronic Arts Maxis CDROM XS @tab @tab X
|
|
|
|
@tab Used in Sim City 3000.
|
|
|
|
@item ADPCM Electronic Arts R1 @tab @tab X
|
|
|
|
@item ADPCM Electronic Arts R2 @tab @tab X
|
|
|
|
@item ADPCM Electronic Arts R3 @tab @tab X
|
|
|
|
@item ADPCM Electronic Arts XAS @tab @tab X
|
2010-09-23 21:33:29 +00:00
|
|
|
@item ADPCM G.722 @tab X @tab X
|
2009-03-02 05:55:03 +00:00
|
|
|
@item ADPCM G.726 @tab X @tab X
|
|
|
|
@item ADPCM IMA AMV @tab @tab X
|
|
|
|
@tab Used in AMV files
|
|
|
|
@item ADPCM IMA Electronic Arts EACS @tab @tab X
|
|
|
|
@item ADPCM IMA Electronic Arts SEAD @tab @tab X
|
|
|
|
@item ADPCM IMA Funcom @tab @tab X
|
|
|
|
@item ADPCM IMA QuickTime @tab X @tab X
|
|
|
|
@item ADPCM IMA Loki SDL MJPEG @tab @tab X
|
|
|
|
@item ADPCM IMA WAV @tab X @tab X
|
|
|
|
@item ADPCM IMA Westwood @tab @tab X
|
|
|
|
@item ADPCM ISS IMA @tab @tab X
|
|
|
|
@tab Used in FunCom games.
|
|
|
|
@item ADPCM IMA Duck DK3 @tab @tab X
|
|
|
|
@tab Used in some Sega Saturn console games.
|
|
|
|
@item ADPCM IMA Duck DK4 @tab @tab X
|
|
|
|
@tab Used in some Sega Saturn console games.
|
|
|
|
@item ADPCM Microsoft @tab X @tab X
|
|
|
|
@item ADPCM MS IMA @tab X @tab X
|
|
|
|
@item ADPCM Nintendo Gamecube THP @tab @tab X
|
|
|
|
@item ADPCM QT IMA @tab X @tab X
|
|
|
|
@item ADPCM SEGA CRI ADX @tab X @tab X
|
|
|
|
@tab Used in Sega Dreamcast games.
|
|
|
|
@item ADPCM Shockwave Flash @tab X @tab X
|
|
|
|
@item ADPCM SMJPEG IMA @tab @tab X
|
|
|
|
@tab Used in certain Loki game ports.
|
|
|
|
@item ADPCM Sound Blaster Pro 2-bit @tab @tab X
|
|
|
|
@item ADPCM Sound Blaster Pro 2.6-bit @tab @tab X
|
|
|
|
@item ADPCM Sound Blaster Pro 4-bit @tab @tab X
|
|
|
|
@item ADPCM Westwood Studios IMA @tab @tab X
|
|
|
|
@tab Used in Westwood Studios games like Command and Conquer.
|
|
|
|
@item ADPCM Yamaha @tab X @tab X
|
2010-03-01 14:30:28 +00:00
|
|
|
@item AMR-NB @tab E @tab X
|
2010-02-21 18:01:56 +00:00
|
|
|
@tab encoding supported through external library libopencore-amrnb
|
2009-12-29 14:48:09 +00:00
|
|
|
@item AMR-WB @tab E @tab X
|
|
|
|
@tab encoding supported through external library libvo-amrwbenc
|
2008-08-19 19:25:00 +00:00
|
|
|
@item Apple lossless audio @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab QuickTime fourcc 'alac'
|
2009-09-22 17:28:03 +00:00
|
|
|
@item Atrac 1 @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Atrac 3 @tab @tab X
|
2010-01-31 12:51:15 +00:00
|
|
|
@item Bink Audio @tab @tab X
|
|
|
|
@tab Used in Bink and Smacker files in many games.
|
2011-10-25 08:14:34 +00:00
|
|
|
@item CELT @tab @tab E
|
2011-04-23 09:42:26 +00:00
|
|
|
@tab decoding supported through external library libcelt
|
2009-03-02 01:55:21 +00:00
|
|
|
@item Delphine Software International CIN audio @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Codec used in Delphine Software International games.
|
2011-11-01 10:58:44 +00:00
|
|
|
@item Discworld II BMV Audio @tab @tab X
|
2009-03-02 01:55:21 +00:00
|
|
|
@item COOK @tab @tab X
|
|
|
|
@tab All versions except 5.1 are supported.
|
2011-04-26 19:07:55 +00:00
|
|
|
@item DCA (DTS Coherent Acoustics) @tab X @tab X
|
2009-03-02 06:01:32 +00:00
|
|
|
@item DPCM id RoQ @tab X @tab X
|
2011-11-29 16:46:29 +00:00
|
|
|
@tab Used in Quake III, Jedi Knight 2 and other computer games.
|
2009-03-02 06:01:32 +00:00
|
|
|
@item DPCM Interplay @tab @tab X
|
|
|
|
@tab Used in various Interplay computer games.
|
|
|
|
@item DPCM Sierra Online @tab @tab X
|
|
|
|
@tab Used in Sierra Online game audio files.
|
|
|
|
@item DPCM Sol @tab @tab X
|
|
|
|
@item DPCM Xan @tab @tab X
|
2009-06-12 15:27:10 +00:00
|
|
|
@tab Used in Origin's Wing Commander IV AVI files.
|
2008-07-08 14:47:22 +00:00
|
|
|
@item DSP Group TrueSpeech @tab @tab X
|
|
|
|
@item DV audio @tab @tab X
|
2011-05-24 19:20:56 +00:00
|
|
|
@item Enhanced AC-3 @tab X @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item FLAC (Free Lossless Audio Codec) @tab X @tab IX
|
2011-10-10 08:49:16 +00:00
|
|
|
@item G.723.1 @tab X @tab X
|
2011-09-25 15:57:58 +00:00
|
|
|
@item G.729 @tab @tab X
|
2010-07-10 07:55:06 +00:00
|
|
|
@item GSM @tab E @tab X
|
|
|
|
@tab encoding supported through external library libgsm
|
|
|
|
@item GSM Microsoft variant @tab E @tab X
|
|
|
|
@tab encoding supported through external library libgsm
|
2012-06-02 19:07:02 +00:00
|
|
|
@item IAC (Indeo Audio Coder) @tab @tab X
|
2012-06-15 21:42:13 +00:00
|
|
|
@item iLBC (Internet Low Bitrate Codec) @tab E @tab E
|
|
|
|
@tab encoding and decoding supported through external library libilbc
|
2009-03-02 03:30:53 +00:00
|
|
|
@item IMC (Intel Music Coder) @tab @tab X
|
|
|
|
@item MACE (Macintosh Audio Compression/Expansion) 3:1 @tab @tab X
|
|
|
|
@item MACE (Macintosh Audio Compression/Expansion) 6:1 @tab @tab X
|
2009-03-19 21:23:39 +00:00
|
|
|
@item MLP (Meridian Lossless Packing) @tab @tab X
|
|
|
|
@tab Used in DVD-Audio discs.
|
2008-07-08 14:47:22 +00:00
|
|
|
@item Monkey's Audio @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Only versions 3.97-3.99 are supported.
|
2009-03-02 03:30:53 +00:00
|
|
|
@item MP1 (MPEG audio layer 1) @tab @tab IX
|
|
|
|
@item MP2 (MPEG audio layer 2) @tab IX @tab IX
|
|
|
|
@item MP3 (MPEG audio layer 3) @tab E @tab IX
|
|
|
|
@tab encoding supported through external library LAME, ADU MP3 and MP3onMP4 also supported
|
2009-11-11 22:36:17 +00:00
|
|
|
@item MPEG-4 Audio Lossless Coding (ALS) @tab @tab X
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Musepack SV7 @tab @tab X
|
|
|
|
@item Musepack SV8 @tab @tab X
|
2009-03-02 03:52:40 +00:00
|
|
|
@item Nellymoser Asao @tab X @tab X
|
|
|
|
@item PCM A-law @tab X @tab X
|
|
|
|
@item PCM mu-law @tab X @tab X
|
|
|
|
@item PCM 16-bit little-endian planar @tab @tab X
|
|
|
|
@item PCM 32-bit floating point big-endian @tab X @tab X
|
|
|
|
@item PCM 32-bit floating point little-endian @tab X @tab X
|
|
|
|
@item PCM 64-bit floating point big-endian @tab X @tab X
|
|
|
|
@item PCM 64-bit floating point little-endian @tab X @tab X
|
|
|
|
@item PCM D-Cinema audio signed 24-bit @tab X @tab X
|
|
|
|
@item PCM signed 8-bit @tab X @tab X
|
|
|
|
@item PCM signed 16-bit big-endian @tab X @tab X
|
|
|
|
@item PCM signed 16-bit little-endian @tab X @tab X
|
|
|
|
@item PCM signed 24-bit big-endian @tab X @tab X
|
|
|
|
@item PCM signed 24-bit little-endian @tab X @tab X
|
|
|
|
@item PCM signed 32-bit big-endian @tab X @tab X
|
|
|
|
@item PCM signed 32-bit little-endian @tab X @tab X
|
2009-08-26 22:10:35 +00:00
|
|
|
@item PCM signed 16/20/24-bit big-endian in MPEG-TS @tab @tab X
|
2009-03-02 03:52:40 +00:00
|
|
|
@item PCM unsigned 8-bit @tab X @tab X
|
|
|
|
@item PCM unsigned 16-bit big-endian @tab X @tab X
|
|
|
|
@item PCM unsigned 16-bit little-endian @tab X @tab X
|
|
|
|
@item PCM unsigned 24-bit big-endian @tab X @tab X
|
|
|
|
@item PCM unsigned 24-bit little-endian @tab X @tab X
|
|
|
|
@item PCM unsigned 32-bit big-endian @tab X @tab X
|
|
|
|
@item PCM unsigned 32-bit little-endian @tab X @tab X
|
2011-09-29 16:12:23 +00:00
|
|
|
@item PCM Zork @tab @tab X
|
2008-12-02 16:48:05 +00:00
|
|
|
@item QCELP / PureVoice @tab @tab X
|
2009-03-02 03:41:58 +00:00
|
|
|
@item QDesign Music Codec 2 @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab There are still some distortions.
|
2010-06-11 09:01:25 +00:00
|
|
|
@item RealAudio 1.0 (14.4K) @tab X @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Real 14400 bit/s codec
|
2009-03-02 03:41:58 +00:00
|
|
|
@item RealAudio 2.0 (28.8K) @tab @tab X
|
2008-07-10 16:31:11 +00:00
|
|
|
@tab Real 28800 bit/s codec
|
2009-03-02 03:41:58 +00:00
|
|
|
@item RealAudio 3.0 (dnet) @tab IX @tab X
|
2008-08-31 19:59:52 +00:00
|
|
|
@tab Real low bitrate AC-3 codec
|
2012-03-17 07:48:57 +00:00
|
|
|
@item RealAudio Lossless @tab @tab X
|
2010-01-10 21:38:15 +00:00
|
|
|
@item RealAudio SIPR / ACELP.NET @tab @tab X
|
2008-07-08 15:01:44 +00:00
|
|
|
@item Shorten @tab @tab X
|
2009-03-02 02:25:31 +00:00
|
|
|
@item Sierra VMD audio @tab @tab X
|
|
|
|
@tab Used in Sierra VMD files.
|
2008-07-08 15:01:44 +00:00
|
|
|
@item Smacker audio @tab @tab X
|
2011-04-12 22:29:09 +00:00
|
|
|
@item SMPTE 302M AES3 audio @tab @tab X
|
2008-09-01 13:32:30 +00:00
|
|
|
@item Sonic @tab X @tab X
|
|
|
|
@tab experimental codec
|
|
|
|
@item Sonic lossless @tab X @tab X
|
|
|
|
@tab experimental codec
|
2011-09-28 16:34:07 +00:00
|
|
|
@item Speex @tab E @tab E
|
2008-10-25 08:41:00 +00:00
|
|
|
@tab supported through external library libspeex
|
2008-07-08 14:47:22 +00:00
|
|
|
@item True Audio (TTA) @tab @tab X
|
2009-03-19 21:23:39 +00:00
|
|
|
@item TrueHD @tab @tab X
|
|
|
|
@tab Used in HD-DVD and Blu-Ray discs.
|
2009-08-23 01:55:54 +00:00
|
|
|
@item TwinVQ (VQF flavor) @tab @tab X
|
2012-06-25 17:36:57 +00:00
|
|
|
@item VIMA @tab @tab X
|
2012-03-19 02:52:08 +00:00
|
|
|
@tab Used in LucasArts SMUSH animations.
|
2009-03-02 03:30:53 +00:00
|
|
|
@item Vorbis @tab E @tab X
|
2010-03-09 16:44:10 +00:00
|
|
|
@tab A native but very primitive encoder exists.
|
2008-07-08 15:01:44 +00:00
|
|
|
@item WavPack @tab @tab X
|
2009-03-02 01:40:21 +00:00
|
|
|
@item Westwood Audio (SND1) @tab @tab X
|
|
|
|
@item Windows Media Audio 1 @tab X @tab X
|
|
|
|
@item Windows Media Audio 2 @tab X @tab X
|
2012-03-01 12:43:00 +00:00
|
|
|
@item Windows Media Audio Lossless @tab @tab X
|
2009-09-02 16:41:49 +00:00
|
|
|
@item Windows Media Audio Pro @tab @tab X
|
2010-02-12 14:22:41 +00:00
|
|
|
@item Windows Media Audio Voice @tab @tab X
|
2007-08-28 06:22:57 +00:00
|
|
|
@end multitable
|
|
|
|
|
|
|
|
@code{X} means that encoding (resp. decoding) is supported.
|
|
|
|
|
2008-10-25 08:51:46 +00:00
|
|
|
@code{E} means that support is provided through an external library.
|
|
|
|
|
2007-08-28 06:22:57 +00:00
|
|
|
@code{I} means that an integer-only version is available, too (ensures high
|
|
|
|
performance on systems without hardware floating point support).
|
|
|
|
|
2008-10-25 09:08:09 +00:00
|
|
|
@section Subtitle Formats
|
|
|
|
|
2009-03-18 07:49:51 +00:00
|
|
|
@multitable @columnfractions .4 .1 .1 .1 .1
|
2009-02-08 22:24:04 +00:00
|
|
|
@item Name @tab Muxing @tab Demuxing @tab Encoding @tab Decoding
|
2010-12-28 23:55:56 +00:00
|
|
|
@item SSA/ASS @tab X @tab X @tab X @tab X
|
2009-02-08 22:24:04 +00:00
|
|
|
@item DVB @tab X @tab X @tab X @tab X
|
|
|
|
@item DVD @tab X @tab X @tab X @tab X
|
2011-04-18 15:40:51 +00:00
|
|
|
@item JACOsub @tab X @tab X @tab @tab X
|
2012-04-14 19:46:01 +00:00
|
|
|
@item MicroDVD @tab X @tab X @tab @tab X
|
2009-08-25 08:47:39 +00:00
|
|
|
@item PGS @tab @tab @tab @tab X
|
2012-06-17 09:43:34 +00:00
|
|
|
@item RealText @tab @tab X @tab @tab X
|
2012-06-17 09:42:47 +00:00
|
|
|
@item SAMI @tab @tab X @tab @tab X
|
2010-09-14 03:55:12 +00:00
|
|
|
@item SubRip (SRT) @tab X @tab X @tab X @tab X
|
2009-06-19 09:56:35 +00:00
|
|
|
@item XSUB @tab @tab @tab X @tab X
|
2008-10-25 09:08:09 +00:00
|
|
|
@end multitable
|
|
|
|
|
|
|
|
@code{X} means that the feature is supported.
|
|
|
|
|
2009-02-13 09:52:15 +00:00
|
|
|
@section Network Protocols
|
|
|
|
|
2009-03-18 07:49:51 +00:00
|
|
|
@multitable @columnfractions .4 .1
|
2009-02-13 09:52:15 +00:00
|
|
|
@item Name @tab Support
|
|
|
|
@item file @tab X
|
|
|
|
@item Gopher @tab X
|
2012-06-14 08:34:16 +00:00
|
|
|
@item HLS @tab X
|
2009-02-13 09:52:15 +00:00
|
|
|
@item HTTP @tab X
|
2012-06-14 08:34:16 +00:00
|
|
|
@item HTTPS @tab X
|
|
|
|
@item MMSH @tab X
|
|
|
|
@item MMST @tab X
|
2009-02-13 09:52:15 +00:00
|
|
|
@item pipe @tab X
|
2012-06-14 08:34:16 +00:00
|
|
|
@item RTMP @tab X
|
|
|
|
@item RTMPE @tab E
|
|
|
|
@item RTMPS @tab E
|
|
|
|
@item RTMPT @tab E
|
|
|
|
@item RTMPTE @tab E
|
2009-02-13 09:52:15 +00:00
|
|
|
@item RTP @tab X
|
2012-06-14 08:34:16 +00:00
|
|
|
@item SCTP @tab X
|
2009-02-13 09:52:15 +00:00
|
|
|
@item TCP @tab X
|
2012-06-14 08:34:16 +00:00
|
|
|
@item TLS @tab X
|
2009-02-13 09:52:15 +00:00
|
|
|
@item UDP @tab X
|
|
|
|
@end multitable
|
|
|
|
|
|
|
|
@code{X} means that the protocol is supported.
|
|
|
|
|
2012-06-14 08:34:16 +00:00
|
|
|
@code{E} means that support is provided through an external library.
|
|
|
|
|
2009-02-13 09:52:15 +00:00
|
|
|
|
2009-03-18 07:55:34 +00:00
|
|
|
@section Input/Output Devices
|
|
|
|
|
|
|
|
@multitable @columnfractions .4 .1 .1
|
|
|
|
@item Name @tab Input @tab Output
|
|
|
|
@item ALSA @tab X @tab X
|
|
|
|
@item BKTR @tab X @tab
|
|
|
|
@item DV1394 @tab X @tab
|
2012-03-13 11:43:47 +00:00
|
|
|
@item Linux framebuffer @tab X @tab
|
2009-04-02 23:53:47 +00:00
|
|
|
@item JACK @tab X @tab
|
2012-03-13 11:43:47 +00:00
|
|
|
@item LIBCDIO @tab X
|
2009-03-18 07:55:34 +00:00
|
|
|
@item LIBDC1394 @tab X @tab
|
|
|
|
@item OSS @tab X @tab X
|
2011-12-03 20:53:09 +00:00
|
|
|
@item Pulseaudio @tab X @tab
|
2009-03-18 07:55:34 +00:00
|
|
|
@item Video4Linux2 @tab X @tab
|
|
|
|
@item VfW capture @tab X @tab
|
|
|
|
@item X11 grabbing @tab X @tab
|
|
|
|
@end multitable
|
|
|
|
|
2009-03-19 01:04:23 +00:00
|
|
|
@code{X} means that input/output is supported.
|
2009-03-18 07:55:34 +00:00
|
|
|
|
2012-01-03 09:47:42 +00:00
|
|
|
@section Timecode
|
|
|
|
|
|
|
|
@multitable @columnfractions .4 .1 .1
|
|
|
|
@item Codec/format @tab Read @tab Write
|
2012-05-31 07:31:04 +00:00
|
|
|
@item AVI @tab X @tab X
|
2012-01-03 09:47:42 +00:00
|
|
|
@item DV @tab X @tab X
|
|
|
|
@item GXF @tab X @tab X
|
2012-03-05 07:51:08 +00:00
|
|
|
@item MOV @tab X @tab X
|
2012-01-03 09:47:42 +00:00
|
|
|
@item MPEG1/2 @tab X @tab X
|
2012-02-23 15:58:01 +00:00
|
|
|
@item MXF @tab X @tab X
|
2012-01-03 09:47:42 +00:00
|
|
|
@end multitable
|
|
|
|
|
2007-08-28 06:22:57 +00:00
|
|
|
@bye
|