You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1409 lines
60KB

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