general.texi 51 KB

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