general.texi 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185
  1. \input texinfo @c -*- texinfo -*-
  2. @documentencoding UTF-8
  3. @settitle General Documentation
  4. @titlepage
  5. @center @titlefont{General Documentation}
  6. @end titlepage
  7. @top
  8. @contents
  9. @chapter External libraries
  10. FFmpeg can be hooked up with a number of external libraries to add support
  11. for more formats. None of them are used by default, their use has to be
  12. explicitly requested by passing the appropriate flags to
  13. @command{./configure}.
  14. @section OpenJPEG
  15. FFmpeg can use the OpenJPEG libraries for encoding/decoding J2K videos. Go to
  16. @url{http://www.openjpeg.org/} to get the libraries and follow the installation
  17. instructions. To enable using OpenJPEG in FFmpeg, pass @code{--enable-libopenjpeg} to
  18. @file{./configure}.
  19. @section OpenCORE, VisualOn, and Fraunhofer libraries
  20. Spun off Google Android sources, OpenCore, VisualOn and Fraunhofer
  21. libraries provide encoders for a number of audio codecs.
  22. @float NOTE
  23. OpenCORE and VisualOn libraries are under the Apache License 2.0
  24. (see @url{http://www.apache.org/licenses/LICENSE-2.0} for details), which is
  25. incompatible to the LGPL version 2.1 and GPL version 2. You have to
  26. upgrade FFmpeg's license to LGPL version 3 (or if you have enabled
  27. GPL components, GPL version 3) by passing @code{--enable-version3} to configure in
  28. order to use it.
  29. The Fraunhofer AAC library is licensed under a license incompatible to the GPL
  30. and is not known to be compatible to the LGPL. Therefore, you have to pass
  31. @code{--enable-nonfree} to configure to use it.
  32. @end float
  33. @subsection OpenCORE AMR
  34. FFmpeg can make use of the OpenCORE libraries for AMR-NB
  35. decoding/encoding and AMR-WB decoding.
  36. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  37. instructions for installing the libraries.
  38. Then pass @code{--enable-libopencore-amrnb} and/or
  39. @code{--enable-libopencore-amrwb} to configure to enable them.
  40. @subsection VisualOn AMR-WB encoder library
  41. FFmpeg can make use of the VisualOn AMR-WBenc library for AMR-WB encoding.
  42. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  43. instructions for installing the library.
  44. Then pass @code{--enable-libvo-amrwbenc} to configure to enable it.
  45. @subsection Fraunhofer AAC library
  46. FFmpeg can make use of the Fraunhofer AAC library for AAC encoding.
  47. Go to @url{http://sourceforge.net/projects/opencore-amr/} and follow the
  48. instructions for installing the library.
  49. Then pass @code{--enable-libfdk-aac} to configure to enable it.
  50. @section LAME
  51. FFmpeg can make use of the LAME library for MP3 encoding.
  52. Go to @url{http://lame.sourceforge.net/} and follow the
  53. instructions for installing the library.
  54. Then pass @code{--enable-libmp3lame} to configure to enable it.
  55. @section TwoLAME
  56. FFmpeg can make use of the TwoLAME library for MP2 encoding.
  57. Go to @url{http://www.twolame.org/} and follow the
  58. instructions for installing the library.
  59. Then pass @code{--enable-libtwolame} to configure to enable it.
  60. @section libvpx
  61. FFmpeg can make use of the libvpx library for VP8/VP9 encoding.
  62. Go to @url{http://www.webmproject.org/} and follow the instructions for
  63. installing the library. Then pass @code{--enable-libvpx} to configure to
  64. enable it.
  65. @section libwavpack
  66. FFmpeg can make use of the libwavpack library for WavPack encoding.
  67. Go to @url{http://www.wavpack.com/} and follow the instructions for
  68. installing the library. Then pass @code{--enable-libwavpack} to configure to
  69. enable it.
  70. @section OpenH264
  71. FFmpeg can make use of the OpenH264 library for H.264 encoding.
  72. Go to @url{http://www.openh264.org/} and follow the instructions for
  73. installing the library. Then pass @code{--enable-libopenh264} to configure to
  74. enable it.
  75. @section x264
  76. FFmpeg can make use of the x264 library for H.264 encoding.
  77. Go to @url{http://www.videolan.org/developers/x264.html} and follow the
  78. instructions for installing the library. Then pass @code{--enable-libx264} to
  79. configure to enable it.
  80. @float NOTE
  81. x264 is under the GNU Public License Version 2 or later
  82. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  83. details), you must upgrade FFmpeg's license to GPL in order to use it.
  84. @end float
  85. @section x265
  86. FFmpeg can make use of the x265 library for HEVC encoding.
  87. Go to @url{http://x265.org/developers.html} and follow the instructions
  88. for installing the library. Then pass @code{--enable-libx265} to configure
  89. to enable it.
  90. @float NOTE
  91. x265 is under the GNU Public License Version 2 or later
  92. (see @url{http://www.gnu.org/licenses/old-licenses/gpl-2.0.html} for
  93. details), you must upgrade FFmpeg's license to GPL in order to use it.
  94. @end float
  95. @section kvazaar
  96. FFmpeg can make use of the kvazaar library for HEVC encoding.
  97. Go to @url{https://github.com/ultravideo/kvazaar} and follow the
  98. instructions for installing the library. Then pass
  99. @code{--enable-libkvazaar} to configure to enable it.
  100. @section libilbc
  101. iLBC is a narrowband speech codec that has been made freely available
  102. by Google as part of the WebRTC project. libilbc is a packaging friendly
  103. copy of the iLBC codec. FFmpeg can make use of the libilbc library for
  104. iLBC encoding and decoding.
  105. Go to @url{https://github.com/TimothyGu/libilbc} and follow the instructions for
  106. installing the library. Then pass @code{--enable-libilbc} to configure to
  107. enable it.
  108. @section libzvbi
  109. libzvbi is a VBI decoding library which can be used by FFmpeg to decode DVB
  110. teletext pages and DVB teletext subtitles.
  111. Go to @url{http://sourceforge.net/projects/zapping/} and follow the instructions for
  112. installing the library. Then pass @code{--enable-libzvbi} to configure to
  113. enable it.
  114. @section AviSynth
  115. FFmpeg can read AviSynth scripts as input. To enable support, pass
  116. @code{--enable-avisynth} to configure. The correct headers are
  117. included in compat/avisynth/, which allows the user to enable support
  118. without needing to search for these headers themselves.
  119. For Windows, supported AviSynth variants are
  120. @url{http://avisynth.nl, AviSynth 2.6 RC1 or higher} for 32-bit builds and
  121. @url{http://avs-plus.net, AviSynth+ r1718 or higher} for 32-bit and 64-bit builds.
  122. For Linux and OS X, the supported AviSynth variant is
  123. @url{https://github.com/avxsynth/avxsynth, AvxSynth}.
  124. @float NOTE
  125. AviSynth and AvxSynth are loaded dynamically. Distributors can build FFmpeg
  126. with @code{--enable-avisynth}, and the binaries will work regardless of the
  127. end user having AviSynth or AvxSynth installed - they'll only need to be
  128. installed to use AviSynth scripts (obviously).
  129. @end float
  130. @section Intel QuickSync Video
  131. FFmpeg can use Intel QuickSync Video (QSV) for accelerated encoding and decoding
  132. of multiple codecs. To use QSV, FFmpeg must be linked against the @code{libmfx}
  133. dispatcher, which loads the actual decoding libraries.
  134. The dispatcher is open source and can be downloaded from
  135. @url{https://github.com/lu-zero/mfx_dispatch.git}. FFmpeg needs to be configured
  136. with the @code{--enable-libmfx} option and @code{pkg-config} needs to be able to
  137. locate the dispatcher's @code{.pc} files.
  138. @chapter Supported File Formats, Codecs or Features
  139. You can use the @code{-formats} and @code{-codecs} options to have an exhaustive list.
  140. @section File Formats
  141. FFmpeg supports the following file formats through the @code{libavformat}
  142. library:
  143. @multitable @columnfractions .4 .1 .1 .4
  144. @item Name @tab Encoding @tab Decoding @tab Comments
  145. @item 3dostr @tab @tab X
  146. @item 4xm @tab @tab X
  147. @tab 4X Technologies format, used in some games.
  148. @item 8088flex TMV @tab @tab X
  149. @item AAX @tab @tab X
  150. @tab Audible Enhanced Audio format, used in audiobooks.
  151. @item AA @tab @tab X
  152. @tab Audible Format 2, 3, and 4, used in audiobooks.
  153. @item ACT Voice @tab @tab X
  154. @tab contains G.729 audio
  155. @item Adobe Filmstrip @tab X @tab X
  156. @item Audio IFF (AIFF) @tab X @tab X
  157. @item American Laser Games MM @tab @tab X
  158. @tab Multimedia format used in games like Mad Dog McCree.
  159. @item 3GPP AMR @tab X @tab X
  160. @item Amazing Studio Packed Animation File @tab @tab X
  161. @tab Multimedia format used in game Heart Of Darkness.
  162. @item Apple HTTP Live Streaming @tab @tab X
  163. @item Artworx Data Format @tab @tab X
  164. @item Interplay ACM @tab @tab X
  165. @tab Audio only format used in some Interplay games.
  166. @item ADP @tab @tab X
  167. @tab Audio format used on the Nintendo Gamecube.
  168. @item AFC @tab @tab X
  169. @tab Audio format used on the Nintendo Gamecube.
  170. @item ADS/SS2 @tab @tab X
  171. @tab Audio format used on the PS2.
  172. @item APNG @tab X @tab X
  173. @item ASF @tab X @tab X
  174. @item AST @tab X @tab X
  175. @tab Audio format used on the Nintendo Wii.
  176. @item AVI @tab X @tab X
  177. @item AviSynth @tab @tab X
  178. @item AVR @tab @tab X
  179. @tab Audio format used on Mac.
  180. @item AVS @tab @tab X
  181. @tab Multimedia format used by the Creature Shock game.
  182. @item Beam Software SIFF @tab @tab X
  183. @tab Audio and video format used in some games by Beam Software.
  184. @item Bethesda Softworks VID @tab @tab X
  185. @tab Used in some games from Bethesda Softworks.
  186. @item Binary text @tab @tab X
  187. @item Bink @tab @tab X
  188. @tab Multimedia format used by many games.
  189. @item Bitmap Brothers JV @tab @tab X
  190. @tab Used in Z and Z95 games.
  191. @item Brute Force & Ignorance @tab @tab X
  192. @tab Used in the game Flash Traffic: City of Angels.
  193. @item BFSTM @tab @tab X
  194. @tab Audio format used on the Nintendo WiiU (based on BRSTM).
  195. @item BRSTM @tab @tab X
  196. @tab Audio format used on the Nintendo Wii.
  197. @item BWF @tab X @tab X
  198. @item CRI ADX @tab X @tab X
  199. @tab Audio-only format used in console video games.
  200. @item Discworld II BMV @tab @tab X
  201. @item Interplay C93 @tab @tab X
  202. @tab Used in the game Cyberia from Interplay.
  203. @item Delphine Software International CIN @tab @tab X
  204. @tab Multimedia format used by Delphine Software games.
  205. @item Digital Speech Standard (DSS) @tab @tab X
  206. @item Canopus HQ @tab @tab X
  207. @item Canopus HQA @tab @tab X
  208. @item Canopus HQX @tab @tab X
  209. @item CD+G @tab @tab X
  210. @tab Video format used by CD+G karaoke disks
  211. @item Phantom Cine @tab @tab X
  212. @item Cineform HD @tab @tab X
  213. @item Commodore CDXL @tab @tab X
  214. @tab Amiga CD video format
  215. @item Core Audio Format @tab X @tab X
  216. @tab Apple Core Audio Format
  217. @item CRC testing format @tab X @tab
  218. @item Creative Voice @tab X @tab X
  219. @tab Created for the Sound Blaster Pro.
  220. @item CRYO APC @tab @tab X
  221. @tab Audio format used in some games by CRYO Interactive Entertainment.
  222. @item D-Cinema audio @tab X @tab X
  223. @item Deluxe Paint Animation @tab @tab X
  224. @item DCSTR @tab @tab X
  225. @item DFA @tab @tab X
  226. @tab This format is used in Chronomaster game
  227. @item DirectDraw Surface @tab @tab X
  228. @item DSD Stream File (DSF) @tab @tab X
  229. @item DV video @tab X @tab X
  230. @item DXA @tab @tab X
  231. @tab This format is used in the non-Windows version of the Feeble Files
  232. game and different game cutscenes repacked for use with ScummVM.
  233. @item Electronic Arts cdata @tab @tab X
  234. @item Electronic Arts Multimedia @tab @tab X
  235. @tab Used in various EA games; files have extensions like WVE and UV2.
  236. @item Ensoniq Paris Audio File @tab @tab X
  237. @item FFM (FFserver live feed) @tab X @tab X
  238. @item Flash (SWF) @tab X @tab X
  239. @item Flash 9 (AVM2) @tab X @tab X
  240. @tab Only embedded audio is decoded.
  241. @item FLI/FLC/FLX animation @tab @tab X
  242. @tab .fli/.flc files
  243. @item Flash Video (FLV) @tab X @tab X
  244. @tab Macromedia Flash video files
  245. @item framecrc testing format @tab X @tab
  246. @item FunCom ISS @tab @tab X
  247. @tab Audio format used in various games from FunCom like The Longest Journey.
  248. @item G.723.1 @tab X @tab X
  249. @item G.729 BIT @tab X @tab X
  250. @item G.729 raw @tab @tab X
  251. @item GENH @tab @tab X
  252. @tab Audio format for various games.
  253. @item GIF Animation @tab X @tab X
  254. @item GXF @tab X @tab X
  255. @tab General eXchange Format SMPTE 360M, used by Thomson Grass Valley
  256. playout servers.
  257. @item HNM @tab @tab X
  258. @tab Only version 4 supported, used in some games from Cryo Interactive
  259. @item iCEDraw File @tab @tab X
  260. @item ICO @tab X @tab X
  261. @tab Microsoft Windows ICO
  262. @item id Quake II CIN video @tab @tab X
  263. @item id RoQ @tab X @tab X
  264. @tab Used in Quake III, Jedi Knight 2 and other computer games.
  265. @item IEC61937 encapsulation @tab X @tab X
  266. @item IFF @tab @tab X
  267. @tab Interchange File Format
  268. @item iLBC @tab X @tab X
  269. @item Interplay MVE @tab @tab X
  270. @tab Format used in various Interplay computer games.
  271. @item IV8 @tab @tab X
  272. @tab A format generated by IndigoVision 8000 video server.
  273. @item IVF (On2) @tab X @tab X
  274. @tab A format used by libvpx
  275. @item Internet Video Recording @tab @tab X
  276. @item IRCAM @tab X @tab X
  277. @item LATM @tab X @tab X
  278. @item LMLM4 @tab @tab X
  279. @tab Used by Linux Media Labs MPEG-4 PCI boards
  280. @item LOAS @tab @tab X
  281. @tab contains LATM multiplexed AAC audio
  282. @item LRC @tab X @tab X
  283. @item LVF @tab @tab X
  284. @item LXF @tab @tab X
  285. @tab VR native stream format, used by Leitch/Harris' video servers.
  286. @item Magic Lantern Video (MLV) @tab @tab X
  287. @item Matroska @tab X @tab X
  288. @item Matroska audio @tab X @tab
  289. @item FFmpeg metadata @tab X @tab X
  290. @tab Metadata in text format.
  291. @item MAXIS XA @tab @tab X
  292. @tab Used in Sim City 3000; file extension .xa.
  293. @item MD Studio @tab @tab X
  294. @item Metal Gear Solid: The Twin Snakes @tab @tab X
  295. @item Megalux Frame @tab @tab X
  296. @tab Used by Megalux Ultimate Paint
  297. @item Mobotix .mxg @tab @tab X
  298. @item Monkey's Audio @tab @tab X
  299. @item Motion Pixels MVI @tab @tab X
  300. @item MOV/QuickTime/MP4 @tab X @tab X
  301. @tab 3GP, 3GP2, PSP, iPod variants supported
  302. @item MP2 @tab X @tab X
  303. @item MP3 @tab X @tab X
  304. @item MPEG-1 System @tab X @tab X
  305. @tab muxed audio and video, VCD format supported
  306. @item MPEG-PS (program stream) @tab X @tab X
  307. @tab also known as @code{VOB} file, SVCD and DVD format supported
  308. @item MPEG-TS (transport stream) @tab X @tab X
  309. @tab also known as DVB Transport Stream
  310. @item MPEG-4 @tab X @tab X
  311. @tab MPEG-4 is a variant of QuickTime.
  312. @item MSF @tab @tab X
  313. @tab Audio format used on the PS3.
  314. @item Mirillis FIC video @tab @tab X
  315. @tab No cursor rendering.
  316. @item MIME multipart JPEG @tab X @tab
  317. @item MSN TCP webcam @tab @tab X
  318. @tab Used by MSN Messenger webcam streams.
  319. @item MTV @tab @tab X
  320. @item Musepack @tab @tab X
  321. @item Musepack SV8 @tab @tab X
  322. @item Material eXchange Format (MXF) @tab X @tab X
  323. @tab SMPTE 377M, used by D-Cinema, broadcast industry.
  324. @item Material eXchange Format (MXF), D-10 Mapping @tab X @tab X
  325. @tab SMPTE 386M, D-10/IMX Mapping.
  326. @item NC camera feed @tab @tab X
  327. @tab NC (AVIP NC4600) camera streams
  328. @item NIST SPeech HEader REsources @tab @tab X
  329. @item NTT TwinVQ (VQF) @tab @tab X
  330. @tab Nippon Telegraph and Telephone Corporation TwinVQ.
  331. @item Nullsoft Streaming Video @tab @tab X
  332. @item NuppelVideo @tab @tab X
  333. @item NUT @tab X @tab X
  334. @tab NUT Open Container Format
  335. @item Ogg @tab X @tab X
  336. @item Playstation Portable PMP @tab @tab X
  337. @item Portable Voice Format @tab @tab X
  338. @item TechnoTrend PVA @tab @tab X
  339. @tab Used by TechnoTrend DVB PCI boards.
  340. @item QCP @tab @tab X
  341. @item raw ADTS (AAC) @tab X @tab X
  342. @item raw AC-3 @tab X @tab X
  343. @item raw Chinese AVS video @tab X @tab X
  344. @item raw CRI ADX @tab X @tab X
  345. @item raw Dirac @tab X @tab X
  346. @item raw DNxHD @tab X @tab X
  347. @item raw DTS @tab X @tab X
  348. @item raw DTS-HD @tab @tab X
  349. @item raw E-AC-3 @tab X @tab X
  350. @item raw FLAC @tab X @tab X
  351. @item raw GSM @tab @tab X
  352. @item raw H.261 @tab X @tab X
  353. @item raw H.263 @tab X @tab X
  354. @item raw H.264 @tab X @tab X
  355. @item raw HEVC @tab X @tab X
  356. @item raw Ingenient MJPEG @tab @tab X
  357. @item raw MJPEG @tab X @tab X
  358. @item raw MLP @tab @tab X
  359. @item raw MPEG @tab @tab X
  360. @item raw MPEG-1 @tab @tab X
  361. @item raw MPEG-2 @tab @tab X
  362. @item raw MPEG-4 @tab X @tab X
  363. @item raw NULL @tab X @tab
  364. @item raw video @tab X @tab X
  365. @item raw id RoQ @tab X @tab
  366. @item raw Shorten @tab @tab X
  367. @item raw TAK @tab @tab X
  368. @item raw TrueHD @tab X @tab X
  369. @item raw VC-1 @tab X @tab X
  370. @item raw PCM A-law @tab X @tab X
  371. @item raw PCM mu-law @tab X @tab X
  372. @item raw PCM signed 8 bit @tab X @tab X
  373. @item raw PCM signed 16 bit big-endian @tab X @tab X
  374. @item raw PCM signed 16 bit little-endian @tab X @tab X
  375. @item raw PCM signed 24 bit big-endian @tab X @tab X
  376. @item raw PCM signed 24 bit little-endian @tab X @tab X
  377. @item raw PCM signed 32 bit big-endian @tab X @tab X
  378. @item raw PCM signed 32 bit little-endian @tab X @tab X
  379. @item raw PCM unsigned 8 bit @tab X @tab X
  380. @item raw PCM unsigned 16 bit big-endian @tab X @tab X
  381. @item raw PCM unsigned 16 bit little-endian @tab X @tab X
  382. @item raw PCM unsigned 24 bit big-endian @tab X @tab X
  383. @item raw PCM unsigned 24 bit little-endian @tab X @tab X
  384. @item raw PCM unsigned 32 bit big-endian @tab X @tab X
  385. @item raw PCM unsigned 32 bit little-endian @tab X @tab X
  386. @item raw PCM floating-point 32 bit big-endian @tab X @tab X
  387. @item raw PCM floating-point 32 bit little-endian @tab X @tab X
  388. @item raw PCM floating-point 64 bit big-endian @tab X @tab X
  389. @item raw PCM floating-point 64 bit little-endian @tab X @tab X
  390. @item RDT @tab @tab X
  391. @item REDCODE R3D @tab @tab X
  392. @tab File format used by RED Digital cameras, contains JPEG 2000 frames and PCM audio.
  393. @item RealMedia @tab X @tab X
  394. @item Redirector @tab @tab X
  395. @item RedSpark @tab @tab X
  396. @item Renderware TeXture Dictionary @tab @tab X
  397. @item Resolume DXV @tab @tab X
  398. @item RL2 @tab @tab X
  399. @tab Audio and video format used in some games by Entertainment Software Partners.
  400. @item RPL/ARMovie @tab @tab X
  401. @item Lego Mindstorms RSO @tab X @tab X
  402. @item RSD @tab @tab X
  403. @item RTMP @tab X @tab X
  404. @tab Output is performed by publishing stream to RTMP server
  405. @item RTP @tab X @tab X
  406. @item RTSP @tab X @tab X
  407. @item SAP @tab X @tab X
  408. @item SBG @tab @tab X
  409. @item SDP @tab @tab X
  410. @item Sega FILM/CPK @tab @tab X
  411. @tab Used in many Sega Saturn console games.
  412. @item Silicon Graphics Movie @tab @tab X
  413. @item Sierra SOL @tab @tab X
  414. @tab .sol files used in Sierra Online games.
  415. @item Sierra VMD @tab @tab X
  416. @tab Used in Sierra CD-ROM games.
  417. @item Smacker @tab @tab X
  418. @tab Multimedia format used by many games.
  419. @item SMJPEG @tab X @tab X
  420. @tab Used in certain Loki game ports.
  421. @item Smush @tab @tab X
  422. @tab Multimedia format used in some LucasArts games.
  423. @item Sony OpenMG (OMA) @tab X @tab X
  424. @tab Audio format used in Sony Sonic Stage and Sony Vegas.
  425. @item Sony PlayStation STR @tab @tab X
  426. @item Sony Wave64 (W64) @tab X @tab X
  427. @item SoX native format @tab X @tab X
  428. @item SUN AU format @tab X @tab X
  429. @item SUP raw PGS subtitles @tab @tab X
  430. @item SVAG @tab @tab X
  431. @tab Audio format used in Konami PS2 games.
  432. @item TDSC @tab @tab X
  433. @item Text files @tab @tab X
  434. @item THP @tab @tab X
  435. @tab Used on the Nintendo GameCube.
  436. @item Tiertex Limited SEQ @tab @tab X
  437. @tab Tiertex .seq files used in the DOS CD-ROM version of the game Flashback.
  438. @item True Audio @tab @tab X
  439. @item VAG @tab @tab X
  440. @tab Audio format used in many Sony PS2 games.
  441. @item VC-1 test bitstream @tab X @tab X
  442. @item Vidvox Hap @tab X @tab X
  443. @item Vivo @tab @tab X
  444. @item VPK @tab @tab X
  445. @tab Audio format used in Sony PS games.
  446. @item WAV @tab X @tab X
  447. @item WavPack @tab X @tab X
  448. @item WebM @tab X @tab X
  449. @item Windows Televison (WTV) @tab X @tab X
  450. @item Wing Commander III movie @tab @tab X
  451. @tab Multimedia format used in Origin's Wing Commander III computer game.
  452. @item Westwood Studios audio @tab @tab X
  453. @tab Multimedia format used in Westwood Studios games.
  454. @item Westwood Studios VQA @tab @tab X
  455. @tab Multimedia format used in Westwood Studios games.
  456. @item WVE @tab @tab X
  457. @item XMV @tab @tab X
  458. @tab Microsoft video container used in Xbox games.
  459. @item XVAG @tab @tab X
  460. @tab Audio format used on the PS3.
  461. @item xWMA @tab @tab X
  462. @tab Microsoft audio container used by XAudio 2.
  463. @item eXtended BINary text (XBIN) @tab @tab X
  464. @item YUV4MPEG pipe @tab X @tab X
  465. @item Psygnosis YOP @tab @tab X
  466. @end multitable
  467. @code{X} means that encoding (resp. decoding) is supported.
  468. @section Image Formats
  469. FFmpeg can read and write images for each frame of a video sequence. The
  470. following image formats are supported:
  471. @multitable @columnfractions .4 .1 .1 .4
  472. @item Name @tab Encoding @tab Decoding @tab Comments
  473. @item .Y.U.V @tab X @tab X
  474. @tab one raw file per component
  475. @item Alias PIX @tab X @tab X
  476. @tab Alias/Wavefront PIX image format
  477. @item animated GIF @tab X @tab X
  478. @item APNG @tab X @tab X
  479. @item BMP @tab X @tab X
  480. @tab Microsoft BMP image
  481. @item BRender PIX @tab @tab X
  482. @tab Argonaut BRender 3D engine image format.
  483. @item DPX @tab X @tab X
  484. @tab Digital Picture Exchange
  485. @item EXR @tab @tab X
  486. @tab OpenEXR
  487. @item JPEG @tab X @tab X
  488. @tab Progressive JPEG is not supported.
  489. @item JPEG 2000 @tab X @tab X
  490. @item JPEG-LS @tab X @tab X
  491. @item LJPEG @tab X @tab
  492. @tab Lossless JPEG
  493. @item PAM @tab X @tab X
  494. @tab PAM is a PNM extension with alpha support.
  495. @item PBM @tab X @tab X
  496. @tab Portable BitMap image
  497. @item PCX @tab X @tab X
  498. @tab PC Paintbrush
  499. @item PGM @tab X @tab X
  500. @tab Portable GrayMap image
  501. @item PGMYUV @tab X @tab X
  502. @tab PGM with U and V components in YUV 4:2:0
  503. @item PIC @tab @tab X
  504. @tab Pictor/PC Paint
  505. @item PNG @tab X @tab X
  506. @item PPM @tab X @tab X
  507. @tab Portable PixelMap image
  508. @item PTX @tab @tab X
  509. @tab V.Flash PTX format
  510. @item SGI @tab X @tab X
  511. @tab SGI RGB image format
  512. @item Sun Rasterfile @tab X @tab X
  513. @tab Sun RAS image format
  514. @item TIFF @tab X @tab X
  515. @tab YUV, JPEG and some extension is not supported yet.
  516. @item Truevision Targa @tab X @tab X
  517. @tab Targa (.TGA) image format
  518. @item WebP @tab E @tab X
  519. @tab WebP image format, encoding supported through external library libwebp
  520. @item XBM @tab X @tab X
  521. @tab X BitMap image format
  522. @item XFace @tab X @tab X
  523. @tab X-Face image format
  524. @item XWD @tab X @tab X
  525. @tab X Window Dump image format
  526. @end multitable
  527. @code{X} means that encoding (resp. decoding) is supported.
  528. @code{E} means that support is provided through an external library.
  529. @section Video Codecs
  530. @multitable @columnfractions .4 .1 .1 .4
  531. @item Name @tab Encoding @tab Decoding @tab Comments
  532. @item 4X Movie @tab @tab X
  533. @tab Used in certain computer games.
  534. @item 8088flex TMV @tab @tab X
  535. @item A64 multicolor @tab X @tab
  536. @tab Creates video suitable to be played on a commodore 64 (multicolor mode).
  537. @item Amazing Studio PAF Video @tab @tab X
  538. @item American Laser Games MM @tab @tab X
  539. @tab Used in games like Mad Dog McCree.
  540. @item AMV Video @tab X @tab X
  541. @tab Used in Chinese MP3 players.
  542. @item ANSI/ASCII art @tab @tab X
  543. @item Apple Intermediate Codec @tab @tab X
  544. @item Apple MJPEG-B @tab @tab X
  545. @item Apple ProRes @tab X @tab X
  546. @item Apple QuickDraw @tab @tab X
  547. @tab fourcc: qdrw
  548. @item Asus v1 @tab X @tab X
  549. @tab fourcc: ASV1
  550. @item Asus v2 @tab X @tab X
  551. @tab fourcc: ASV2
  552. @item ATI VCR1 @tab @tab X
  553. @tab fourcc: VCR1
  554. @item ATI VCR2 @tab @tab X
  555. @tab fourcc: VCR2
  556. @item Auravision Aura @tab @tab X
  557. @item Auravision Aura 2 @tab @tab X
  558. @item Autodesk Animator Flic video @tab @tab X
  559. @item Autodesk RLE @tab @tab X
  560. @tab fourcc: AASC
  561. @item Avid 1:1 10-bit RGB Packer @tab X @tab X
  562. @tab fourcc: AVrp
  563. @item AVS (Audio Video Standard) video @tab @tab X
  564. @tab Video encoding used by the Creature Shock game.
  565. @item AYUV @tab X @tab X
  566. @tab Microsoft uncompressed packed 4:4:4:4
  567. @item Beam Software VB @tab @tab X
  568. @item Bethesda VID video @tab @tab X
  569. @tab Used in some games from Bethesda Softworks.
  570. @item Bink Video @tab @tab X
  571. @item Bitmap Brothers JV video @tab @tab X
  572. @item y41p Brooktree uncompressed 4:1:1 12-bit @tab X @tab X
  573. @item Brute Force & Ignorance @tab @tab X
  574. @tab Used in the game Flash Traffic: City of Angels.
  575. @item C93 video @tab @tab X
  576. @tab Codec used in Cyberia game.
  577. @item CamStudio @tab @tab X
  578. @tab fourcc: CSCD
  579. @item CD+G @tab @tab X
  580. @tab Video codec for CD+G karaoke disks
  581. @item CDXL @tab @tab X
  582. @tab Amiga CD video codec
  583. @item Chinese AVS video @tab E @tab X
  584. @tab AVS1-P2, JiZhun profile, encoding through external library libxavs
  585. @item Delphine Software International CIN video @tab @tab X
  586. @tab Codec used in Delphine Software International games.
  587. @item Discworld II BMV Video @tab @tab X
  588. @item Canopus Lossless Codec @tab @tab X
  589. @item Cinepak @tab @tab X
  590. @item Cirrus Logic AccuPak @tab X @tab X
  591. @tab fourcc: CLJR
  592. @item CPiA Video Format @tab @tab X
  593. @item Creative YUV (CYUV) @tab @tab X
  594. @item DFA @tab @tab X
  595. @tab Codec used in Chronomaster game.
  596. @item Dirac @tab E @tab X
  597. @tab supported through external library libschroedinger
  598. @item Deluxe Paint Animation @tab @tab X
  599. @item DNxHD @tab X @tab X
  600. @tab aka SMPTE VC3
  601. @item Duck TrueMotion 1.0 @tab @tab X
  602. @tab fourcc: DUCK
  603. @item Duck TrueMotion 2.0 @tab @tab X
  604. @tab fourcc: TM20
  605. @item DV (Digital Video) @tab X @tab X
  606. @item Dxtory capture format @tab @tab X
  607. @item Feeble Files/ScummVM DXA @tab @tab X
  608. @tab Codec originally used in Feeble Files game.
  609. @item Electronic Arts CMV video @tab @tab X
  610. @tab Used in NHL 95 game.
  611. @item Electronic Arts Madcow video @tab @tab X
  612. @item Electronic Arts TGV video @tab @tab X
  613. @item Electronic Arts TGQ video @tab @tab X
  614. @item Electronic Arts TQI video @tab @tab X
  615. @item Escape 124 @tab @tab X
  616. @item Escape 130 @tab @tab X
  617. @item FFmpeg video codec #1 @tab X @tab X
  618. @tab lossless codec (fourcc: FFV1)
  619. @item Flash Screen Video v1 @tab X @tab X
  620. @tab fourcc: FSV1
  621. @item Flash Screen Video v2 @tab X @tab X
  622. @item Flash Video (FLV) @tab X @tab X
  623. @tab Sorenson H.263 used in Flash
  624. @item Forward Uncompressed @tab @tab X
  625. @item Fraps @tab @tab X
  626. @item Go2Meeting @tab @tab X
  627. @tab fourcc: G2M2, G2M3
  628. @item Go2Webinar @tab @tab X
  629. @tab fourcc: G2M4
  630. @item H.261 @tab X @tab X
  631. @item H.263 / H.263-1996 @tab X @tab X
  632. @item H.263+ / H.263-1998 / H.263 version 2 @tab X @tab X
  633. @item H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 @tab E @tab X
  634. @tab encoding supported through external library libx264 and OpenH264
  635. @item HEVC @tab X @tab X
  636. @tab encoding supported through external library libx265 and libkvazaar
  637. @item HNM version 4 @tab @tab X
  638. @item HuffYUV @tab X @tab X
  639. @item HuffYUV FFmpeg variant @tab X @tab X
  640. @item IBM Ultimotion @tab @tab X
  641. @tab fourcc: ULTI
  642. @item id Cinematic video @tab @tab X
  643. @tab Used in Quake II.
  644. @item id RoQ video @tab X @tab X
  645. @tab Used in Quake III, Jedi Knight 2, other computer games.
  646. @item IFF ILBM @tab @tab X
  647. @tab IFF interleaved bitmap
  648. @item IFF ByteRun1 @tab @tab X
  649. @tab IFF run length encoded bitmap
  650. @item Intel H.263 @tab @tab X
  651. @item Intel Indeo 2 @tab @tab X
  652. @item Intel Indeo 3 @tab @tab X
  653. @item Intel Indeo 4 @tab @tab X
  654. @item Intel Indeo 5 @tab @tab X
  655. @item Interplay C93 @tab @tab X
  656. @tab Used in the game Cyberia from Interplay.
  657. @item Interplay MVE video @tab @tab X
  658. @tab Used in Interplay .MVE files.
  659. @item J2K @tab X @tab X
  660. @item Karl Morton's video codec @tab @tab X
  661. @tab Codec used in Worms games.
  662. @item Kega Game Video (KGV1) @tab @tab X
  663. @tab Kega emulator screen capture codec.
  664. @item Lagarith @tab @tab X
  665. @item LCL (LossLess Codec Library) MSZH @tab @tab X
  666. @item LCL (LossLess Codec Library) ZLIB @tab E @tab E
  667. @item LOCO @tab @tab X
  668. @item LucasArts SANM/Smush @tab @tab X
  669. @tab Used in LucasArts games / SMUSH animations.
  670. @item lossless MJPEG @tab X @tab X
  671. @item Microsoft ATC Screen @tab @tab X
  672. @tab Also known as Microsoft Screen 3.
  673. @item Microsoft Expression Encoder Screen @tab @tab X
  674. @tab Also known as Microsoft Titanium Screen 2.
  675. @item Microsoft RLE @tab @tab X
  676. @item Microsoft Screen 1 @tab @tab X
  677. @tab Also known as Windows Media Video V7 Screen.
  678. @item Microsoft Screen 2 @tab @tab X
  679. @tab Also known as Windows Media Video V9 Screen.
  680. @item Microsoft Video 1 @tab @tab X
  681. @item Mimic @tab @tab X
  682. @tab Used in MSN Messenger Webcam streams.
  683. @item Miro VideoXL @tab @tab X
  684. @tab fourcc: VIXL
  685. @item MJPEG (Motion JPEG) @tab X @tab X
  686. @item Mobotix MxPEG video @tab @tab X
  687. @item Motion Pixels video @tab @tab X
  688. @item MPEG-1 video @tab X @tab X
  689. @item MPEG-2 video @tab X @tab X
  690. @item MPEG-4 part 2 @tab X @tab X
  691. @tab libxvidcore can be used alternatively for encoding.
  692. @item MPEG-4 part 2 Microsoft variant version 1 @tab @tab X
  693. @item MPEG-4 part 2 Microsoft variant version 2 @tab X @tab X
  694. @item MPEG-4 part 2 Microsoft variant version 3 @tab X @tab X
  695. @item Nintendo Gamecube THP video @tab @tab X
  696. @item NuppelVideo/RTjpeg @tab @tab X
  697. @tab Video encoding used in NuppelVideo files.
  698. @item On2 VP3 @tab @tab X
  699. @tab still experimental
  700. @item On2 VP5 @tab @tab X
  701. @tab fourcc: VP50
  702. @item On2 VP6 @tab @tab X
  703. @tab fourcc: VP60,VP61,VP62
  704. @item On2 VP7 @tab @tab X
  705. @tab fourcc: VP70,VP71
  706. @item VP8 @tab E @tab X
  707. @tab fourcc: VP80, encoding supported through external library libvpx
  708. @item VP9 @tab E @tab X
  709. @tab encoding supported through external library libvpx
  710. @item Pinnacle TARGA CineWave YUV16 @tab @tab X
  711. @tab fourcc: Y216
  712. @item Prores @tab @tab X
  713. @tab fourcc: apch,apcn,apcs,apco
  714. @item Q-team QPEG @tab @tab X
  715. @tab fourccs: QPEG, Q1.0, Q1.1
  716. @item QuickTime 8BPS video @tab @tab X
  717. @item QuickTime Animation (RLE) video @tab X @tab X
  718. @tab fourcc: 'rle '
  719. @item QuickTime Graphics (SMC) @tab @tab X
  720. @tab fourcc: 'smc '
  721. @item QuickTime video (RPZA) @tab @tab X
  722. @tab fourcc: rpza
  723. @item R10K AJA Kona 10-bit RGB Codec @tab X @tab X
  724. @item R210 Quicktime Uncompressed RGB 10-bit @tab X @tab X
  725. @item Raw Video @tab X @tab X
  726. @item RealVideo 1.0 @tab X @tab X
  727. @item RealVideo 2.0 @tab X @tab X
  728. @item RealVideo 3.0 @tab @tab X
  729. @tab still far from ideal
  730. @item RealVideo 4.0 @tab @tab X
  731. @item Renderware TXD (TeXture Dictionary) @tab @tab X
  732. @tab Texture dictionaries used by the Renderware Engine.
  733. @item RL2 video @tab @tab X
  734. @tab used in some games by Entertainment Software Partners
  735. @item Screenpresso @tab @tab X
  736. @item Sierra VMD video @tab @tab X
  737. @tab Used in Sierra VMD files.
  738. @item Silicon Graphics Motion Video Compressor 1 (MVC1) @tab @tab X
  739. @item Silicon Graphics Motion Video Compressor 2 (MVC2) @tab @tab X
  740. @item Silicon Graphics RLE 8-bit video @tab @tab X
  741. @item Smacker video @tab @tab X
  742. @tab Video encoding used in Smacker.
  743. @item SMPTE VC-1 @tab @tab X
  744. @item Snow @tab X @tab X
  745. @tab experimental wavelet codec (fourcc: SNOW)
  746. @item Sony PlayStation MDEC (Motion DECoder) @tab @tab X
  747. @item Sorenson Vector Quantizer 1 @tab X @tab X
  748. @tab fourcc: SVQ1
  749. @item Sorenson Vector Quantizer 3 @tab @tab X
  750. @tab fourcc: SVQ3
  751. @item Sunplus JPEG (SP5X) @tab @tab X
  752. @tab fourcc: SP5X
  753. @item TechSmith Screen Capture Codec @tab @tab X
  754. @tab fourcc: TSCC
  755. @item TechSmith Screen Capture Codec 2 @tab @tab X
  756. @tab fourcc: TSC2
  757. @item Theora @tab E @tab X
  758. @tab encoding supported through external library libtheora
  759. @item Tiertex Limited SEQ video @tab @tab X
  760. @tab Codec used in DOS CD-ROM FlashBack game.
  761. @item Ut Video @tab X @tab X
  762. @item v210 QuickTime uncompressed 4:2:2 10-bit @tab X @tab X
  763. @item v308 QuickTime uncompressed 4:4:4 @tab X @tab X
  764. @item v408 QuickTime uncompressed 4:4:4:4 @tab X @tab X
  765. @item v410 QuickTime uncompressed 4:4:4 10-bit @tab X @tab X
  766. @item VBLE Lossless Codec @tab @tab X
  767. @item VMware Screen Codec / VMware Video @tab @tab X
  768. @tab Codec used in videos captured by VMware.
  769. @item Westwood Studios VQA (Vector Quantized Animation) video @tab @tab X
  770. @item Windows Media Image @tab @tab X
  771. @item Windows Media Video 7 @tab X @tab X
  772. @item Windows Media Video 8 @tab X @tab X
  773. @item Windows Media Video 9 @tab @tab X
  774. @tab not completely working
  775. @item Wing Commander III / Xan @tab @tab X
  776. @tab Used in Wing Commander III .MVE files.
  777. @item Wing Commander IV / Xan @tab @tab X
  778. @tab Used in Wing Commander IV.
  779. @item Winnov WNV1 @tab @tab X
  780. @item WMV7 @tab X @tab X
  781. @item YAMAHA SMAF @tab X @tab X
  782. @item Psygnosis YOP Video @tab @tab X
  783. @item yuv4 @tab X @tab X
  784. @tab libquicktime uncompressed packed 4:2:0
  785. @item ZeroCodec Lossless Video @tab @tab X
  786. @item ZLIB @tab X @tab X
  787. @tab part of LCL, encoder experimental
  788. @item Zip Motion Blocks Video @tab X @tab X
  789. @tab Encoder works only in PAL8.
  790. @end multitable
  791. @code{X} means that encoding (resp. decoding) is supported.
  792. @code{E} means that support is provided through an external library.
  793. @section Audio Codecs
  794. @multitable @columnfractions .4 .1 .1 .4
  795. @item Name @tab Encoding @tab Decoding @tab Comments
  796. @item 8SVX exponential @tab @tab X
  797. @item 8SVX fibonacci @tab @tab X
  798. @item AAC @tab EX @tab X
  799. @tab encoding supported through internal encoder and external libraries libfaac and libfdk-aac
  800. @item AAC+ @tab E @tab IX
  801. @tab encoding supported through external library libfdk-aac
  802. @item AC-3 @tab IX @tab IX
  803. @item ADPCM 4X Movie @tab @tab X
  804. @item APDCM Yamaha AICA @tab @tab X
  805. @item ADPCM CDROM XA @tab @tab X
  806. @item ADPCM Creative Technology @tab @tab X
  807. @tab 16 -> 4, 8 -> 4, 8 -> 3, 8 -> 2
  808. @item ADPCM Electronic Arts @tab @tab X
  809. @tab Used in various EA titles.
  810. @item ADPCM Electronic Arts Maxis CDROM XS @tab @tab X
  811. @tab Used in Sim City 3000.
  812. @item ADPCM Electronic Arts R1 @tab @tab X
  813. @item ADPCM Electronic Arts R2 @tab @tab X
  814. @item ADPCM Electronic Arts R3 @tab @tab X
  815. @item ADPCM Electronic Arts XAS @tab @tab X
  816. @item ADPCM G.722 @tab X @tab X
  817. @item ADPCM G.726 @tab X @tab X
  818. @item ADPCM IMA AMV @tab @tab X
  819. @tab Used in AMV files
  820. @item ADPCM IMA Electronic Arts EACS @tab @tab X
  821. @item ADPCM IMA Electronic Arts SEAD @tab @tab X
  822. @item ADPCM IMA Funcom @tab @tab X
  823. @item ADPCM IMA QuickTime @tab X @tab X
  824. @item ADPCM IMA Loki SDL MJPEG @tab @tab X
  825. @item ADPCM IMA WAV @tab X @tab X
  826. @item ADPCM IMA Westwood @tab @tab X
  827. @item ADPCM ISS IMA @tab @tab X
  828. @tab Used in FunCom games.
  829. @item ADPCM IMA Dialogic @tab @tab X
  830. @item ADPCM IMA Duck DK3 @tab @tab X
  831. @tab Used in some Sega Saturn console games.
  832. @item ADPCM IMA Duck DK4 @tab @tab X
  833. @tab Used in some Sega Saturn console games.
  834. @item ADPCM IMA Radical @tab @tab X
  835. @item ADPCM Microsoft @tab X @tab X
  836. @item ADPCM MS IMA @tab X @tab X
  837. @item ADPCM Nintendo Gamecube AFC @tab @tab X
  838. @item ADPCM Nintendo Gamecube DTK @tab @tab X
  839. @item ADPCM Nintendo THP @tab @tab X
  840. @item APDCM Playstation @tab @tab X
  841. @item ADPCM QT IMA @tab X @tab X
  842. @item ADPCM SEGA CRI ADX @tab X @tab X
  843. @tab Used in Sega Dreamcast games.
  844. @item ADPCM Shockwave Flash @tab X @tab X
  845. @item ADPCM Sound Blaster Pro 2-bit @tab @tab X
  846. @item ADPCM Sound Blaster Pro 2.6-bit @tab @tab X
  847. @item ADPCM Sound Blaster Pro 4-bit @tab @tab X
  848. @item ADPCM VIMA @tab @tab X
  849. @tab Used in LucasArts SMUSH animations.
  850. @item ADPCM Westwood Studios IMA @tab @tab X
  851. @tab Used in Westwood Studios games like Command and Conquer.
  852. @item ADPCM Yamaha @tab X @tab X
  853. @item AMR-NB @tab E @tab X
  854. @tab encoding supported through external library libopencore-amrnb
  855. @item AMR-WB @tab E @tab X
  856. @tab encoding supported through external library libvo-amrwbenc
  857. @item Amazing Studio PAF Audio @tab @tab X
  858. @item Apple lossless audio @tab X @tab X
  859. @tab QuickTime fourcc 'alac'
  860. @item ATRAC1 @tab @tab X
  861. @item ATRAC3 @tab @tab X
  862. @item ATRAC3+ @tab @tab X
  863. @item Bink Audio @tab @tab X
  864. @tab Used in Bink and Smacker files in many games.
  865. @item CELT @tab @tab E
  866. @tab decoding supported through external library libcelt
  867. @item Delphine Software International CIN audio @tab @tab X
  868. @tab Codec used in Delphine Software International games.
  869. @item Digital Speech Standard - Standard Play mode (DSS SP) @tab @tab X
  870. @item Discworld II BMV Audio @tab @tab X
  871. @item COOK @tab @tab X
  872. @tab All versions except 5.1 are supported.
  873. @item DCA (DTS Coherent Acoustics) @tab X @tab X
  874. @tab supported extensions: XCh, XXCH, X96, XBR, XLL
  875. @item DPCM id RoQ @tab X @tab X
  876. @tab Used in Quake III, Jedi Knight 2 and other computer games.
  877. @item DPCM Interplay @tab @tab X
  878. @tab Used in various Interplay computer games.
  879. @item DPCM Squareroot-Delta-Exact @tab @tab X
  880. @tab Used in various games.
  881. @item DPCM Sierra Online @tab @tab X
  882. @tab Used in Sierra Online game audio files.
  883. @item DPCM Sol @tab @tab X
  884. @item DPCM Xan @tab @tab X
  885. @tab Used in Origin's Wing Commander IV AVI files.
  886. @item DSD (Direct Stream Digitial), least significant bit first @tab @tab X
  887. @item DSD (Direct Stream Digitial), most significant bit first @tab @tab X
  888. @item DSD (Direct Stream Digitial), least significant bit first, planar @tab @tab X
  889. @item DSD (Direct Stream Digitial), most significant bit first, planar @tab @tab X
  890. @item DSP Group TrueSpeech @tab @tab X
  891. @item DV audio @tab @tab X
  892. @item Enhanced AC-3 @tab X @tab X
  893. @item EVRC (Enhanced Variable Rate Codec) @tab @tab X
  894. @item FLAC (Free Lossless Audio Codec) @tab X @tab IX
  895. @item G.723.1 @tab X @tab X
  896. @item G.729 @tab @tab X
  897. @item GSM @tab E @tab X
  898. @tab encoding supported through external library libgsm
  899. @item GSM Microsoft variant @tab E @tab X
  900. @tab encoding supported through external library libgsm
  901. @item IAC (Indeo Audio Coder) @tab @tab X
  902. @item iLBC (Internet Low Bitrate Codec) @tab E @tab E
  903. @tab encoding and decoding supported through external library libilbc
  904. @item IMC (Intel Music Coder) @tab @tab X
  905. @item Interplay ACM @tab @tab X
  906. @item MACE (Macintosh Audio Compression/Expansion) 3:1 @tab @tab X
  907. @item MACE (Macintosh Audio Compression/Expansion) 6:1 @tab @tab X
  908. @item MLP (Meridian Lossless Packing) @tab @tab X
  909. @tab Used in DVD-Audio discs.
  910. @item Monkey's Audio @tab @tab X
  911. @item MP1 (MPEG audio layer 1) @tab @tab IX
  912. @item MP2 (MPEG audio layer 2) @tab IX @tab IX
  913. @tab encoding supported also through external library TwoLAME
  914. @item MP3 (MPEG audio layer 3) @tab E @tab IX
  915. @tab encoding supported through external library LAME, ADU MP3 and MP3onMP4 also supported
  916. @item MPEG-4 Audio Lossless Coding (ALS) @tab @tab X
  917. @item Musepack SV7 @tab @tab X
  918. @item Musepack SV8 @tab @tab X
  919. @item Nellymoser Asao @tab X @tab X
  920. @item On2 AVC (Audio for Video Codec) @tab @tab X
  921. @item Opus @tab E @tab X
  922. @tab encoding supported through external library libopus
  923. @item PCM A-law @tab X @tab X
  924. @item PCM mu-law @tab X @tab X
  925. @item PCM signed 8-bit planar @tab X @tab X
  926. @item PCM signed 16-bit big-endian planar @tab X @tab X
  927. @item PCM signed 16-bit little-endian planar @tab X @tab X
  928. @item PCM signed 24-bit little-endian planar @tab X @tab X
  929. @item PCM signed 32-bit little-endian planar @tab X @tab X
  930. @item PCM 32-bit floating point big-endian @tab X @tab X
  931. @item PCM 32-bit floating point little-endian @tab X @tab X
  932. @item PCM 64-bit floating point big-endian @tab X @tab X
  933. @item PCM 64-bit floating point little-endian @tab X @tab X
  934. @item PCM D-Cinema audio signed 24-bit @tab X @tab X
  935. @item PCM signed 8-bit @tab X @tab X
  936. @item PCM signed 16-bit big-endian @tab X @tab X
  937. @item PCM signed 16-bit little-endian @tab X @tab X
  938. @item PCM signed 24-bit big-endian @tab X @tab X
  939. @item PCM signed 24-bit little-endian @tab X @tab X
  940. @item PCM signed 32-bit big-endian @tab X @tab X
  941. @item PCM signed 32-bit little-endian @tab X @tab X
  942. @item PCM signed 16/20/24-bit big-endian in MPEG-TS @tab @tab X
  943. @item PCM unsigned 8-bit @tab X @tab X
  944. @item PCM unsigned 16-bit big-endian @tab X @tab X
  945. @item PCM unsigned 16-bit little-endian @tab X @tab X
  946. @item PCM unsigned 24-bit big-endian @tab X @tab X
  947. @item PCM unsigned 24-bit little-endian @tab X @tab X
  948. @item PCM unsigned 32-bit big-endian @tab X @tab X
  949. @item PCM unsigned 32-bit little-endian @tab X @tab X
  950. @item PCM Zork @tab @tab X
  951. @item QCELP / PureVoice @tab @tab X
  952. @item QDesign Music Codec 2 @tab @tab X
  953. @tab There are still some distortions.
  954. @item RealAudio 1.0 (14.4K) @tab X @tab X
  955. @tab Real 14400 bit/s codec
  956. @item RealAudio 2.0 (28.8K) @tab @tab X
  957. @tab Real 28800 bit/s codec
  958. @item RealAudio 3.0 (dnet) @tab IX @tab X
  959. @tab Real low bitrate AC-3 codec
  960. @item RealAudio Lossless @tab @tab X
  961. @item RealAudio SIPR / ACELP.NET @tab @tab X
  962. @item Shorten @tab @tab X
  963. @item Sierra VMD audio @tab @tab X
  964. @tab Used in Sierra VMD files.
  965. @item Smacker audio @tab @tab X
  966. @item SMPTE 302M AES3 audio @tab X @tab X
  967. @item Sonic @tab X @tab X
  968. @tab experimental codec
  969. @item Sonic lossless @tab X @tab X
  970. @tab experimental codec
  971. @item Speex @tab E @tab E
  972. @tab supported through external library libspeex
  973. @item TAK (Tom's lossless Audio Kompressor) @tab @tab X
  974. @item True Audio (TTA) @tab X @tab X
  975. @item TrueHD @tab @tab X
  976. @tab Used in HD-DVD and Blu-Ray discs.
  977. @item TwinVQ (VQF flavor) @tab @tab X
  978. @item VIMA @tab @tab X
  979. @tab Used in LucasArts SMUSH animations.
  980. @item Vorbis @tab E @tab X
  981. @tab A native but very primitive encoder exists.
  982. @item Voxware MetaSound @tab @tab X
  983. @item WavPack @tab X @tab X
  984. @item Westwood Audio (SND1) @tab @tab X
  985. @item Windows Media Audio 1 @tab X @tab X
  986. @item Windows Media Audio 2 @tab X @tab X
  987. @item Windows Media Audio Lossless @tab @tab X
  988. @item Windows Media Audio Pro @tab @tab X
  989. @item Windows Media Audio Voice @tab @tab X
  990. @item Xbox Media Audio 1 @tab @tab X
  991. @item Xbox Media Audio 2 @tab @tab X
  992. @end multitable
  993. @code{X} means that encoding (resp. decoding) is supported.
  994. @code{E} means that support is provided through an external library.
  995. @code{I} means that an integer-only version is available, too (ensures high
  996. performance on systems without hardware floating point support).
  997. @section Subtitle Formats
  998. @multitable @columnfractions .4 .1 .1 .1 .1
  999. @item Name @tab Muxing @tab Demuxing @tab Encoding @tab Decoding
  1000. @item 3GPP Timed Text @tab @tab @tab X @tab X
  1001. @item AQTitle @tab @tab X @tab @tab X
  1002. @item DVB @tab X @tab X @tab X @tab X
  1003. @item DVB teletext @tab @tab X @tab @tab E
  1004. @item DVD @tab X @tab X @tab X @tab X
  1005. @item JACOsub @tab X @tab X @tab @tab X
  1006. @item MicroDVD @tab X @tab X @tab @tab X
  1007. @item MPL2 @tab @tab X @tab @tab X
  1008. @item MPsub (MPlayer) @tab @tab X @tab @tab X
  1009. @item PGS @tab @tab @tab @tab X
  1010. @item PJS (Phoenix) @tab @tab X @tab @tab X
  1011. @item RealText @tab @tab X @tab @tab X
  1012. @item SAMI @tab @tab X @tab @tab X
  1013. @item Spruce format (STL) @tab @tab X @tab @tab X
  1014. @item SSA/ASS @tab X @tab X @tab X @tab X
  1015. @item SubRip (SRT) @tab X @tab X @tab X @tab X
  1016. @item SubViewer v1 @tab @tab X @tab @tab X
  1017. @item SubViewer @tab @tab X @tab @tab X
  1018. @item TED Talks captions @tab @tab X @tab @tab X
  1019. @item VobSub (IDX+SUB) @tab @tab X @tab @tab X
  1020. @item VPlayer @tab @tab X @tab @tab X
  1021. @item WebVTT @tab X @tab X @tab X @tab X
  1022. @item XSUB @tab @tab @tab X @tab X
  1023. @end multitable
  1024. @code{X} means that the feature is supported.
  1025. @code{E} means that support is provided through an external library.
  1026. @section Network Protocols
  1027. @multitable @columnfractions .4 .1
  1028. @item Name @tab Support
  1029. @item file @tab X
  1030. @item FTP @tab X
  1031. @item Gopher @tab X
  1032. @item HLS @tab X
  1033. @item HTTP @tab X
  1034. @item HTTPS @tab X
  1035. @item Icecast @tab X
  1036. @item MMSH @tab X
  1037. @item MMST @tab X
  1038. @item pipe @tab X
  1039. @item RTMP @tab X
  1040. @item RTMPE @tab X
  1041. @item RTMPS @tab X
  1042. @item RTMPT @tab X
  1043. @item RTMPTE @tab X
  1044. @item RTMPTS @tab X
  1045. @item RTP @tab X
  1046. @item SAMBA @tab E
  1047. @item SCTP @tab X
  1048. @item SFTP @tab E
  1049. @item TCP @tab X
  1050. @item TLS @tab X
  1051. @item UDP @tab X
  1052. @end multitable
  1053. @code{X} means that the protocol is supported.
  1054. @code{E} means that support is provided through an external library.
  1055. @section Input/Output Devices
  1056. @multitable @columnfractions .4 .1 .1
  1057. @item Name @tab Input @tab Output
  1058. @item ALSA @tab X @tab X
  1059. @item BKTR @tab X @tab
  1060. @item caca @tab @tab X
  1061. @item DV1394 @tab X @tab
  1062. @item Lavfi virtual device @tab X @tab
  1063. @item Linux framebuffer @tab X @tab X
  1064. @item JACK @tab X @tab
  1065. @item LIBCDIO @tab X
  1066. @item LIBDC1394 @tab X @tab
  1067. @item OpenAL @tab X
  1068. @item OpenGL @tab @tab X
  1069. @item OSS @tab X @tab X
  1070. @item PulseAudio @tab X @tab X
  1071. @item SDL @tab @tab X
  1072. @item Video4Linux2 @tab X @tab X
  1073. @item VfW capture @tab X @tab
  1074. @item X11 grabbing @tab X @tab
  1075. @item Win32 grabbing @tab X @tab
  1076. @end multitable
  1077. @code{X} means that input/output is supported.
  1078. @section Timecode
  1079. @multitable @columnfractions .4 .1 .1
  1080. @item Codec/format @tab Read @tab Write
  1081. @item AVI @tab X @tab X
  1082. @item DV @tab X @tab X
  1083. @item GXF @tab X @tab X
  1084. @item MOV @tab X @tab X
  1085. @item MPEG1/2 @tab X @tab X
  1086. @item MXF @tab X @tab X
  1087. @end multitable
  1088. @bye