How to compile ffmpeg (with support for most of the popular codecs) for Mac OS X

OSX Expert's guide on how to compile ffmpeg for the Mac is pretty detailed and a huge help. However since it was written some time ago, quite a few things changed. This post provides an -at the moment- up-to-date version of OSX Expert's instructions. I still use a Snow Leopard (10.6.8) with Xcode 4.2, so small adjustments might be necessary for more recent Mac OS X and/or Xcode versions.

The instructions (beyond the necessity of Xcode being installed) ...
  1. Download and extract all the sources:
    mkdir ffmpegsources
    cd ffmpegsources
    DOWNLOADDIR="$(pwd)"

    # Download the Yasm compiler.
    curl -O "http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz"

    # Download the LAME mp3 codec.
    url="http://sourceforge.net/projects/lame/files/latest/download"
    filename="$(curl -sIL "$url" | sed -E -e 's/^[[:space:]]*Content-Disposition[[:space:]]*:[[:space:]]*[^[:space:];]+;[[:space:]]*filename[[:space:]]*=[[:space:]]*("(([^"]|\\")*)".*|([^;[:space:][:cntrl:]"]+)(([^;[:cntrl:]]*[^;[:space:][:cntrl:]]+)*)[[:space:]]*(;.*|[[:cntrl:]]?)$)/\2\4\5/' -e 't' -e 'd')"
    [ -n "${filename}" ] && curl -o "${filename}" -L "${url}" || curl -OL "${url}"

    # Download ffmpeg.
    git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg

    # Download Ogg, Vorbis and Theora codecs/formats from the Xiph.Org Foundation.
    curl -O "http://downloads.xiph.org/releases/ogg/libogg-1.3.0.tar.gz"
    curl -O "http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.gz"
    curl -O "http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2"

    # Download the x264 codec.
    git clone git://git.videolan.org/x264.git

    # Download the VP8 codec.
    git clone http://git.chromium.org/webm/libvpx.git

    # Download the Xvid codec.
    curl -O "http://downloads.xvid.org/downloads/xvidcore-1.3.2.tar.gz"

    # Download zlib.
    curl -O "http://zlib.net/zlib-1.2.7.tar.gz"

    # Decompress all downloaded source archives.
    for i in *.tar.gz; do tar xzf "$i"; done
    for i in *.tar.bz2; do tar xjf "$i"; done
  2. Create a ramdisk:
    set -- $(hdid -nomount ram://26214400)
    DISK_ID="$1"
    VOL="tempdisk"
    newfs_hfs -v "${VOL}" "${DISK_ID}"
    diskutil mount "${DISK_ID}"
    SOURCE="/Volumes/${VOL}/sw"
    COMPILED="/Volumes/${VOL}/compile"
    mkdir "${SOURCE}"
    mkdir "${COMPILED}"
    export PATH="${SOURCE}/bin:${PATH}"
  3. Copy all sources to the ramdisk:
    for i in *; do [ -d "$i" -a "$i" != "." -a "$i" != ".." ] && cp -a "$i" "${COMPILED}"; done
  4. Compile them:
    # for Xcode
    export CC="clang"

    # Yasm
    cd "${COMPILED}/yasm"*
    ./configure --prefix="${SOURCE}" && make -j 4 && make install

    # libvpx
    cd "${COMPILED}/libvpx"*
    export CFLAGS="-I/usr/include"
    export LDFLAGS="-L/usr/lib"
    ./configure --prefix="${SOURCE}" --disable-shared && make -j 4 && make install
    unset CFLAGS
    unset LDFLAGS

    # LAME
    cd "${COMPILED}/lame"*
    ./configure --prefix="${SOURCE}" --disable-shared --enable-static && make -j 4 && make install

    # Xvid
    cd "${COMPILED}/xvidcore"*"/build/generic"
    ./configure --prefix="${SOURCE}" --disable-shared --enable-static --disable-assembly && make -j 4 && make install
    rm "${SOURCE}/lib/libxvidcore.4.dylib"

    # x264
    cd "${COMPILED}/x264"*
    ./configure --prefix="${SOURCE}" --disable-shared --enable-static && make -j 4 && make install && make install-lib-static

    # Ogg
    cd "${COMPILED}/libogg"*
    ./configure --prefix="${SOURCE}" --disable-shared --enable-static && make -j 4 && make install

    # Vorbis
    cd "${COMPILED}/libvorbis"*
    ./configure --prefix="${SOURCE}" --with-ogg-libraries="${SOURCE}/lib" --with-ogg-includes="${SOURCE}/include/" --enable-static --disable-shared && make -j 4 && make install

    # Theora
    cd "${COMPILED}/libtheora"*
    ./configure --prefix="${SOURCE}" --with-ogg-libraries="${SOURCE}/lib" --with-ogg-includes="${SOURCE}/include/" --with-vorbis-libraries="${SOURCE}/lib" --with-vorbis-includes="${SOURCE}/include/" --enable-static --disable-shared && make -j 4 && make install

    # zlib
    cd "${COMPILED}/zlib"*
    ./configure --prefix="${SOURCE}" && make -j 4 && make install
    rm "${SOURCE}/lib/libz"*"dylib"
    rm "${SOURCE}/lib/libz.so"*

    # ffmpeg
    cd "${COMPILED}/ffmpeg"*
    export LDFLAGS="-L${SOURCE}/lib"
    export CFLAGS="-I${SOURCE}/include"
    ./configure --prefix="${SOURCE}" --enable-gpl --enable-pthreads --enable-libvpx --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libxvid --enable-avfilter --enable-zlib --enable-filters --enable-runtime-cpudetect --disable-asm && make -j 4 && make install
  5. Copy the compiled/generated stuff from "${SOURCE}/bin" and "${SOURCE}/shared" to their final location (eg. /usr/local/ffmpeg) and optionally add the ffmpeg bin directory to your PATH.
The above instructions result in the following supported features ...
File formats:
D. = Demuxing supported
.E = Muxing supported
--
  E 3g2             3GP2 (3GPP2 file format)
  E 3gp             3GP (3GPP file format)
D  4xm             4X Technologies
  E a64             a64 - video for Commodore 64
D  aac             raw ADTS AAC (Advanced Audio Coding)
DE ac3             raw AC-3
D  act             ACT Voice file format
D  adf             Artworx Data Format
  E adts            ADTS AAC (Advanced Audio Coding)
DE adx             CRI ADX
D  aea             MD STUDIO audio
D  afc             AFC
DE aiff            Audio IFF
DE alaw            PCM A-law
DE amr             3GPP AMR
D  anm             Deluxe Paint Animation
D  apc             CRYO APC
D  ape             Monkey's Audio
D  aqtitle         AQTitle subtitles
DE asf             ASF (Advanced / Active Streaming Format)
  E asf_stream      ASF (Advanced / Active Streaming Format)
DE ass             SSA (SubStation Alpha) subtitle
DE ast             AST (Audio Stream)
DE au              Sun AU
DE avi             AVI (Audio Video Interleaved)
  E avm2            SWF (ShockWave Flash) (AVM2)
D  avr             AVR (Audio Visual Research)
D  avs             AVS
D  bethsoftvid     Bethesda Softworks VID
D  bfi             Brute Force & Ignorance
D  bin             Binary text
D  bink            Bink
DE bit             G.729 BIT file format
D  bmv             Discworld II BMV
D  brstm           BRSTM (Binary Revolution Stream)
D  c93             Interplay C93
DE caf             Apple CAF (Core Audio Format)
DE cavsvideo       raw Chinese AVS (Audio Video Standard) video
D  cdg             CD Graphics
D  cdxl            Commodore CDXL video
D  concat          Virtual concatenation script
  E crc             CRC testing
DE daud            D-Cinema audio
D  dfa             Chronomaster DFA
DE dirac           raw Dirac
DE dnxhd           raw DNxHD (SMPTE VC-3)
D  dsicin          Delphine Software International CIN
DE dts             raw DTS
D  dtshd           raw DTS-HD
DE dv              DV (Digital Video)
  E dvd             MPEG-2 PS (DVD VOB)
D  dxa             DXA
D  ea              Electronic Arts Multimedia
D  ea_cdata        Electronic Arts cdata
DE eac3            raw E-AC-3
D  epaf            Ensoniq Paris Audio File
DE f32be           PCM 32-bit floating-point big-endian
DE f32le           PCM 32-bit floating-point little-endian
  E f4v             F4V Adobe Flash Video
DE f64be           PCM 64-bit floating-point big-endian
DE f64le           PCM 64-bit floating-point little-endian
DE ffm             FFM (FFserver live feed)
DE ffmetadata      FFmpeg metadata in text
D  film_cpk        Sega FILM / CPK
DE filmstrip       Adobe Filmstrip
DE flac            raw FLAC
D  flic            FLI/FLC/FLX animation
DE flv             FLV (Flash Video)
  E framecrc        framecrc testing
  E framemd5        Per-frame MD5 testing
D  frm             Megalux Frame
DE g722            raw G.722
DE g723_1          raw G.723.1
D  g729            G.729 raw format demuxer
DE gif             GIF Animation
D  gsm             raw GSM
DE gxf             GXF (General eXchange Format)
DE h261            raw H.261
DE h263            raw H.263
DE h264            raw H.264 video
  E hls             Apple HTTP Live Streaming
D  hls,applehttp   Apple HTTP Live Streaming
DE ico             Microsoft Windows ICO
D  idcin           id Cinematic
D  idf             iCE Draw File
D  iff             IFF (Interchange File Format)
DE ilbc            iLBC storage
DE image2          image2 sequence
DE image2pipe      piped image2 sequence
D  ingenient       raw Ingenient MJPEG
D  ipmovie         Interplay MVE
  E ipod            iPod H.264 MP4 (MPEG-4 Part 14)
DE ircam           Berkeley/IRCAM/CARL Sound Format
  E ismv            ISMV/ISMA (Smooth Streaming)
D  iss             Funcom ISS
D  iv8             IndigoVision 8000 video
DE ivf             On2 IVF
DE jacosub         JACOsub subtitle format
D  jv              Bitmap Brothers JV
DE latm            LOAS/LATM
D  lavfi           Libavfilter virtual input device
D  lmlm4           raw lmlm4
D  loas            LOAS AudioSyncStream
D  lvf             LVF
D  lxf             VR native stream (LXF)
DE m4v             raw MPEG-4 video
  E matroska        Matroska
D  matroska,webm   Matroska / WebM
  E md5             MD5 testing
D  mgsts           Metal Gear Solid: The Twin Snakes
DE microdvd        MicroDVD subtitle format
DE mjpeg           raw MJPEG video
  E mkvtimestamp_v2 extract pts as timecode v2 format, as defined by mkvtoolnix
DE mlp             raw MLP
D  mm              American Laser Games MM
DE mmf             Yamaha SMAF
  E mov             QuickTime / MOV
D  mov,mp4,m4a,3gp,3g2,mj2 QuickTime / MOV
  E mp2             MP2 (MPEG audio layer 2)
DE mp3             MP3 (MPEG audio layer 3)
  E mp4             MP4 (MPEG-4 Part 14)
D  mpc             Musepack
D  mpc8            Musepack SV8
DE mpeg            MPEG-1 Systems / MPEG program stream
  E mpeg1video      raw MPEG-1 video
  E mpeg2video      raw MPEG-2 video
DE mpegts          MPEG-TS (MPEG-2 Transport Stream)
D  mpegtsraw       raw MPEG-TS (MPEG-2 Transport Stream)
D  mpegvideo       raw MPEG video
  E mpjpeg          MIME multipart JPEG
D  mpl2            MPL2 subtitles
D  mpsub           MPlayer subtitles
D  msnwctcp        MSN TCP Webcam stream
D  mtv             MTV
DE mulaw           PCM mu-law
D  mv              Silicon Graphics Movie
D  mvi             Motion Pixels MVI
DE mxf             MXF (Material eXchange Format)
  E mxf_d10         MXF (Material eXchange Format) D-10 Mapping
D  mxg             MxPEG clip
D  nc              NC camera feed
D  nistsphere      NIST SPeech HEader REsources
D  nsv             Nullsoft Streaming Video
  E null            raw null video
DE nut             NUT
D  nuv             NuppelVideo
DE ogg             Ogg
DE oma             Sony OpenMG audio
D  paf             Amazing Studio Packed Animation File
D  pjs             PJS (Phoenix Japanimation Society) subtitles
D  pmp             Playstation Portable PMP
  E psp             PSP MP4 (MPEG-4 Part 14)
D  psxstr          Sony Playstation STR
D  pva             TechnoTrend PVA
D  pvf             PVF (Portable Voice Format)
D  qcp             QCP
D  r3d             REDCODE R3D
DE rawvideo        raw video
  E rcv             VC-1 test bitstream
D  realtext        RealText subtitle format
D  rl2             RL2
DE rm              RealMedia
DE roq             raw id RoQ
D  rpl             RPL / ARMovie
DE rso             Lego Mindstorms RSO
DE rtp             RTP output
DE rtsp            RTSP output
DE s16be           PCM signed 16-bit big-endian
DE s16le           PCM signed 16-bit little-endian
DE s24be           PCM signed 24-bit big-endian
DE s24le           PCM signed 24-bit little-endian
DE s32be           PCM signed 32-bit big-endian
DE s32le           PCM signed 32-bit little-endian
DE s8              PCM signed 8-bit
D  sami            SAMI subtitle format
DE sap             SAP output
D  sbg             SBaGen binaural beats script
D  sdp             SDP
  E segment         segment
D  shn             raw Shorten
D  siff            Beam Software SIFF
DE smjpeg          Loki SDL MJPEG
D  smk             Smacker
  E smoothstreaming Smooth Streaming Muxer
D  smush           LucasArts Smush
D  sol             Sierra SOL
DE sox             SoX native
DE spdif           IEC 61937 (used on S/PDIF - IEC958)
DE srt             SubRip subtitle
  E stream_segment,ssegment streaming segment muxer
D  subviewer       SubViewer subtitle format
D  subviewer1      SubViewer v1 subtitle format
  E svcd            MPEG-2 PS (SVCD)
DE swf             SWF (ShockWave Flash)
D  tak             raw TAK
D  tedcaptions     TED Talks captions
  E tee             Multiple muxer tee
D  thp             THP
D  tiertexseq      Tiertex Limited SEQ
D  tmv             8088flex TMV
DE truehd          raw TrueHD
D  tta             TTA (True Audio)
D  tty             Tele-typewriter
D  txd             Renderware TeXture Dictionary
DE u16be           PCM unsigned 16-bit big-endian
DE u16le           PCM unsigned 16-bit little-endian
DE u24be           PCM unsigned 24-bit big-endian
DE u24le           PCM unsigned 24-bit little-endian
DE u32be           PCM unsigned 32-bit big-endian
DE u32le           PCM unsigned 32-bit little-endian
DE u8              PCM unsigned 8-bit
D  vc1             raw VC-1
D  vc1test         VC-1 test bitstream
  E vcd             MPEG-1 Systems / MPEG program stream (VCD)
D  vivo            Vivo
D  vmd             Sierra VMD
  E vob             MPEG-2 PS (VOB)
D  vobsub          VobSub subtitle format
DE voc             Creative Voice
D  vplayer         VPlayer subtitles
D  vqf             Nippon Telegraph and Telephone Corporation (NTT) TwinVQ
DE w64             Sony Wave64
DE wav             WAV / WAVE (Waveform Audio)
D  wc3movie        Wing Commander III movie
  E webm            WebM
D  webvtt          WebVTT subtitle
D  wsaud           Westwood Studios audio
D  wsvqa           Westwood Studios VQA
DE wtv             Windows Television (WTV)
DE wv              WavPack
D  xa              Maxis XA
D  xbin            eXtended BINary text (XBIN)
D  xmv             Microsoft XMV
D  xwma            Microsoft xWMA
D  yop             Psygnosis YOP
DE yuv4mpegpipe    YUV4MPEG pipe


Codecs:
D..... = Decoding supported
.E.... = Encoding supported
..V... = Video codec
..A... = Audio codec
..S... = Subtitle codec
...I.. = Intra frame-only codec
....L. = Lossy compression
.....S = Lossless compression
-------
D.VI.. 012v                 Uncompressed 4:2:2 10-bit
D.V.L. 4xm                  4X Movie
D.VI.S 8bps                 QuickTime 8BPS video
.EVIL. a64_multi            Multicolor charset for Commodore 64 (encoders: a64multi )
.EVIL. a64_multi5           Multicolor charset for Commodore 64, extended with 5th color (colram) (encoders: a64multi5 )
D.V..S aasc                 Autodesk RLE
DEVIL. amv                  AMV Video
D.V.L. anm                  Deluxe Paint Animation
D.V.L. ansi                 ASCII/ANSI art
DEVIL. asv1                 ASUS V1
DEVIL. asv2                 ASUS V2
D.VIL. aura                 Auravision AURA
D.VIL. aura2                Auravision Aura 2
D.V... avrn                 Avid AVI Codec
DEVI.. avrp                 Avid 1:1 10-bit RGB Packer
D.V.L. avs                  AVS (Audio Video Standard) video
DEVI.. avui                 Avid Meridien Uncompressed
DEVI.. ayuv                 Uncompressed packed MS 4:4:4:4
D.V.L. bethsoftvid          Bethesda VID video
D.V.L. bfi                  Brute Force & Ignorance
D.V.L. binkvideo            Bink video
D.VI.. bintext              Binary text
DEVI.S bmp                  BMP (Windows and OS/2 bitmap)
D.V..S bmv_video            Discworld II BMV video
D.V... brender_pix          BRender PIX image
D.V.L. c93                  Interplay C93
D.V.L. cavs                 Chinese AVS (Audio Video Standard) (AVS1-P2, JiZhun profile)
D.V.L. cdgraphics           CD Graphics video
D.VIL. cdxl                 Commodore CDXL video
D.V.L. cinepak              Cinepak
DEVIL. cljr                 Cirrus Logic AccuPak
D.VI.S cllc                 Canopus Lossless Codec
D.V.L. cmv                  Electronic Arts CMV video (decoders: eacmv )
D.V... cpia                 CPiA video format
D.V..S cscd                 CamStudio (decoders: camstudio )
D.VIL. cyuv                 Creative YUV (CYUV)
D.V.L. dfa                  Chronomaster DFA
D.V.LS dirac                Dirac
DEVIL. dnxhd                VC3/DNxHD
DEVIL. dpx                  DPX image
D.V.L. dsicinvideo          Delphine Software International CIN video
DEVIL. dvvideo              DV (Digital Video)
D.V..S dxa                  Feeble Files/ScummVM DXA
D.VI.S dxtory               Dxtory
D.V.L. escape124            Escape 124
D.V.L. escape130            Escape 130
D.VILS exr                  OpenEXR image
DEV..S ffv1                 FFmpeg video codec #1
DEVI.S ffvhuff              Huffyuv FFmpeg variant
DEV..S flashsv              Flash Screen Video v1
DEV.L. flashsv2             Flash Screen Video v2
D.V..S flic                 Autodesk Animator Flic video
DEV.L. flv1                 FLV / Sorenson Spark / Sorenson H.263 (Flash Video) (decoders: flv ) (encoders: flv )
D.V..S fraps                Fraps
D.VI.S frwu                 Forward Uncompressed
..V... g2m                  GoToMeeting
DEV..S gif                  GIF (Graphics Interchange Format)
DEV.L. h261                 H.261
DEV.L. h263                 H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2
D.V.L. h263i                Intel H.263
DEV.L. h263p                H.263+ / H.263-1998 / H.263 version 2
DEV.LS h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (decoders: h264 h264_vda ) (encoders: libx264 libx264rgb )
DEVI.S huffyuv              HuffYUV
D.V.L. idcin                id Quake II CIN video (decoders: idcinvideo )
D.VI.. idf                  iCEDraw text
D.V.L. iff_byterun1         IFF ByteRun1 (decoders: iff )
D.V.L. iff_ilbm             IFF ILBM (decoders: iff )
D.V.L. indeo2               Intel Indeo 2
D.V.L. indeo3               Intel Indeo 3
D.V.L. indeo4               Intel Indeo Video Interactive 4
D.V.L. indeo5               Intel Indeo Video Interactive 5
D.V.L. interplayvideo       Interplay MVE video
DEVILS jpeg2000             JPEG 2000 (decoders: j2k ) (encoders: j2k )
DEVILS jpegls               JPEG-LS
D.VIL. jv                   Bitmap Brothers JV video
D.V.L. kgv1                 Kega Game Video
D.V.L. kmvc                 Karl Morton's video codec
D.VI.S lagarith             Lagarith lossless
.EVI.S ljpeg                Lossless JPEG
D.VI.S loco                 LOCO
D.V.L. mad                  Electronic Arts Madcow Video (decoders: eamad )
D.VIL. mdec                 Sony PlayStation MDEC (Motion DECoder)
D.V.L. mimic                Mimic
DEVIL. mjpeg                Motion JPEG
D.VIL. mjpegb               Apple MJPEG-B
D.V.L. mmvideo              American Laser Games MM Video
D.V.L. motionpixels         Motion Pixels video
DEV.L. mpeg1video           MPEG-1 video
DEV.L. mpeg2video           MPEG-2 video (decoders: mpeg2video mpegvideo )
DEV.L. mpeg4                MPEG-4 part 2 (encoders: mpeg4 libxvid )
D.V.L. mpegvideo_xvmc       MPEG-1/2 video XvMC (X-Video Motion Compensation)
D.V.L. msa1                 MS ATC Screen
D.V.L. msmpeg4v1            MPEG-4 part 2 Microsoft variant version 1
DEV.L. msmpeg4v2            MPEG-4 part 2 Microsoft variant version 2
DEV.L. msmpeg4v3            MPEG-4 part 2 Microsoft variant version 3 (decoders: msmpeg4 ) (encoders: msmpeg4 )
D.V..S msrle                Microsoft RLE
D.V.L. mss1                 MS Screen 1
D.VIL. mss2                 MS Windows Media Video V9 Screen
DEV.L. msvideo1             Microsoft Video 1
D.VI.S mszh                 LCL (LossLess Codec Library) MSZH
D.V.L. mts2                 MS Expression Encoder Screen
D.VIL. mvc1                 Silicon Graphics Motion Video Compressor 1
D.VIL. mvc2                 Silicon Graphics Motion Video Compressor 2
D.V.L. mxpeg                Mobotix MxPEG video
D.V.L. nuv                  NuppelVideo/RTJPEG
D.V.L. paf_video            Amazing Studio Packed Animation File Video
DEVI.S pam                  PAM (Portable AnyMap) image
DEVI.S pbm                  PBM (Portable BitMap) image
DEVI.S pcx                  PC Paintbrush PCX image
DEVI.S pgm                  PGM (Portable GrayMap) image
DEVI.S pgmyuv               PGMYUV (Portable GrayMap YUV) image
D.VIL. pictor               Pictor/PC Paint
DEV..S png                  PNG (Portable Network Graphics) image
DEVI.S ppm                  PPM (Portable PixelMap) image
DEVIL. prores               Apple ProRes (iCodec Pro) (decoders: prores prores_lgpl ) (encoders: prores prores_anatoliy prores_kostya )
D.VIL. ptx                  V.Flash PTX image
D.VI.S qdraw                Apple QuickDraw
D.V.L. qpeg                 Q-team QPEG
DEV..S qtrle                QuickTime Animation (RLE) video
DEVI.S r10k                 AJA Kona 10-bit RGB Codec
DEVI.S r210                 Uncompressed RGB 10-bit
DEVI.S rawvideo             raw video
D.VIL. rl2                  RL2 video
DEV.L. roq                  id RoQ video (decoders: roqvideo ) (encoders: roqvideo )
D.V.L. rpza                 QuickTime video (RPZA)
DEV.L. rv10                 RealVideo 1.0
DEV.L. rv20                 RealVideo 1.0
D.V.L. rv30                 RealVideo 3.0
D.V.L. rv40                 RealVideo 4.0
D.V.L. sanm                 LucasArts SMUSH video
DEVIL. sgi                  SGI image
D.VI.S sgirle               SGI RLE 8-bit
D.V.L. smackvideo           Smacker video (decoders: smackvid )
D.V.L. smc                  QuickTime Graphics (SMC)
DEV.LS snow                 Snow
D.VIL. sp5x                 Sunplus JPEG (SP5X)
DEVI.S sunrast              Sun Rasterfile image
DEV.L. svq1                 Sorenson Vector Quantizer 1 / Sorenson Video 1 / SVQ1
D.V.L. svq3                 Sorenson Vector Quantizer 3 / Sorenson Video 3 / SVQ3
DEVI.S targa                Truevision Targa image
D.VI.. targa_y216           Pinnacle TARGA CineWave YUV16
D.V.L. tgq                  Electronic Arts TGQ video (decoders: eatgq )
D.V.L. tgv                  Electronic Arts TGV video (decoders: eatgv )
DEV.L. theora               Theora (encoders: libtheora )
D.VIL. thp                  Nintendo Gamecube THP video
D.V.L. tiertexseqvideo      Tiertex Limited SEQ video
DEVI.S tiff                 TIFF image
D.VIL. tmv                  8088flex TMV
D.V.L. tqi                  Electronic Arts TQI video (decoders: eatqi )
D.V.L. truemotion1          Duck TrueMotion 1.0
D.V.L. truemotion2          Duck TrueMotion 2.0
D.V..S tscc                 TechSmith Screen Capture Codec (decoders: camtasia )
D.V.L. tscc2                TechSmith Screen Codec 2
D.VIL. txd                  Renderware TXD (TeXture Dictionary) image
D.V.L. ulti                 IBM UltiMotion (decoders: ultimotion )
DEVI.S utvideo              Ut Video
DEVI.S v210                 Uncompressed 4:2:2 10-bit
D.VI.S v210x               
DEVI.. v308                 Uncompressed packed 4:4:4
DEVI.. v408                 Uncompressed packed QT 4:4:4:4
DEVI.S v410                 Uncompressed 4:4:4 10-bit
D.V.L. vb                   Beam Software VB
D.VI.S vble                 VBLE Lossless Codec
D.V.L. vc1                  SMPTE VC-1
D.V.L. vc1image             Windows Media Video 9 Image v2
D.VIL. vcr1                 ATI VCR1
D.VIL. vixl                 Miro VideoXL (decoders: xl )
D.V.L. vmdvideo             Sierra VMD video
D.V..S vmnc                 VMware Screen Codec / VMware Video
D.V.L. vp3                  On2 VP3
D.V.L. vp5                  On2 VP5
D.V.L. vp6                  On2 VP6
D.V.L. vp6a                 On2 VP6 (Flash version, with alpha channel)
D.V.L. vp6f                 On2 VP6 (Flash version)
DEV.L. vp8                  On2 VP8 (decoders: vp8 libvpx ) (encoders: libvpx )
DEV.L. vp9                  Google VP9 (decoders: libvpx-vp9 ) (encoders: libvpx-vp9 )
DEV.L. wmv1                 Windows Media Video 7
DEV.L. wmv2                 Windows Media Video 8
D.V.L. wmv3                 Windows Media Video 9
D.V.L. wmv3image            Windows Media Video 9 Image
D.VIL. wnv1                 Winnov WNV1
D.V.L. ws_vqa               Westwood Studios VQA (Vector Quantized Animation) video (decoders: vqavideo )
D.V.L. xan_wc3              Wing Commander III / Xan
D.V.L. xan_wc4              Wing Commander IV / Xxan
D.VI.. xbin                 eXtended BINary text
DEVI.S xbm                  XBM (X BitMap) image
DEV... xface                X-face image
DEVI.S xwd                  XWD (X Window Dump) image
DEVI.. y41p                 Uncompressed YUV 4:1:1 12-bit
D.V.L. yop                  Psygnosis YOP Video
DEVI.. yuv4                 Uncompressed packed 4:2:0
D.V..S zerocodec            ZeroCodec Lossless Video
DEVI.S zlib                 LCL (LossLess Codec Library) ZLIB
DEV..S zmbv                 Zip Motion Blocks Video
D.A.L. 8svx_exp             8SVX exponential
D.A.L. 8svx_fib             8SVX fibonacci
DEA.L. aac                  AAC (Advanced Audio Coding)
D.A.L. aac_latm             AAC LATM (Advanced Audio Coding LATM syntax)
DEA.L. ac3                  ATSC A/52A (AC-3) (encoders: ac3 ac3_fixed )
D.A.L. adpcm_4xm            ADPCM 4X Movie
DEA.L. adpcm_adx            SEGA CRI ADX ADPCM
D.A.L. adpcm_afc            ADPCM Nintendo Gamecube AFC
D.A.L. adpcm_ct             ADPCM Creative Technology
D.A.L. adpcm_ea             ADPCM Electronic Arts
D.A.L. adpcm_ea_maxis_xa    ADPCM Electronic Arts Maxis CDROM XA
D.A.L. adpcm_ea_r1          ADPCM Electronic Arts R1
D.A.L. adpcm_ea_r2          ADPCM Electronic Arts R2
D.A.L. adpcm_ea_r3          ADPCM Electronic Arts R3
D.A.L. adpcm_ea_xas         ADPCM Electronic Arts XAS
DEA.L. adpcm_g722           G.722 ADPCM (decoders: g722 ) (encoders: g722 )
DEA.L. adpcm_g726           G.726 ADPCM (decoders: g726 ) (encoders: g726 )
D.A.L. adpcm_ima_amv        ADPCM IMA AMV
D.A.L. adpcm_ima_apc        ADPCM IMA CRYO APC
D.A.L. adpcm_ima_dk3        ADPCM IMA Duck DK3
D.A.L. adpcm_ima_dk4        ADPCM IMA Duck DK4
D.A.L. adpcm_ima_ea_eacs    ADPCM IMA Electronic Arts EACS
D.A.L. adpcm_ima_ea_sead    ADPCM IMA Electronic Arts SEAD
D.A.L. adpcm_ima_iss        ADPCM IMA Funcom ISS
D.A.L. adpcm_ima_oki        ADPCM IMA Dialogic OKI
DEA.L. adpcm_ima_qt         ADPCM IMA QuickTime
D.A.L. adpcm_ima_smjpeg     ADPCM IMA Loki SDL MJPEG
DEA.L. adpcm_ima_wav        ADPCM IMA WAV
D.A.L. adpcm_ima_ws         ADPCM IMA Westwood
DEA.L. adpcm_ms             ADPCM Microsoft
D.A.L. adpcm_sbpro_2        ADPCM Sound Blaster Pro 2-bit
D.A.L. adpcm_sbpro_3        ADPCM Sound Blaster Pro 2.6-bit
D.A.L. adpcm_sbpro_4        ADPCM Sound Blaster Pro 4-bit
DEA.L. adpcm_swf            ADPCM Shockwave Flash
D.A.L. adpcm_thp            ADPCM Nintendo Gamecube THP
D.A.L. adpcm_xa             ADPCM CDROM XA
DEA.L. adpcm_yamaha         ADPCM Yamaha
DEA..S alac                 ALAC (Apple Lossless Audio Codec)
D.A.L. amr_nb               AMR-NB (Adaptive Multi-Rate NarrowBand) (decoders: amrnb )
D.A.L. amr_wb               AMR-WB (Adaptive Multi-Rate WideBand) (decoders: amrwb )
D.A..S ape                  Monkey's Audio
D.A.L. atrac1               Atrac 1 (Adaptive TRansform Acoustic Coding)
D.A.L. atrac3               Atrac 3 (Adaptive TRansform Acoustic Coding 3)
..A.L. atrac3p              Sony ATRAC3+
D.A.L. binkaudio_dct        Bink Audio (DCT)
D.A.L. binkaudio_rdft       Bink Audio (RDFT)
D.A.L. bmv_audio            Discworld II BMV audio
..A.L. celt                 Constrained Energy Lapped Transform (CELT)
DEA.L. comfortnoise         RFC 3389 Comfort Noise
D.A.L. cook                 Cook / Cooker / Gecko (RealAudio G2)
D.A.L. dsicinaudio          Delphine Software International CIN audio
DEA.LS dts                  DCA (DTS Coherent Acoustics) (decoders: dca ) (encoders: dca )
..A.L. dvaudio             
DEA.L. eac3                 ATSC A/52B (AC-3, E-AC-3)
D.A.L. evrc                 EVRC (Enhanced Variable Rate Codec)
DEA..S flac                 FLAC (Free Lossless Audio Codec)
DEA.L. g723_1               G.723.1
D.A.L. g729                 G.729
D.A.L. gsm                  GSM
D.A.L. gsm_ms               GSM Microsoft variant
D.A.L. iac                  IAC (Indeo Audio Coder)
..A.L. ilbc                 iLBC (Internet Low Bitrate Codec)
D.A.L. imc                  IMC (Intel Music Coder)
D.A.L. interplay_dpcm       DPCM Interplay
D.A.L. mace3                MACE (Macintosh Audio Compression/Expansion) 3:1
D.A.L. mace6                MACE (Macintosh Audio Compression/Expansion) 6:1
D.A..S mlp                  MLP (Meridian Lossless Packing)
D.A.L. mp1                  MP1 (MPEG audio layer 1) (decoders: mp1 mp1float )
DEA.L. mp2                  MP2 (MPEG audio layer 2) (decoders: mp2 mp2float )
DEA.L. mp3                  MP3 (MPEG audio layer 3) (decoders: mp3 mp3float ) (encoders: libmp3lame )
D.A.L. mp3adu               ADU (Application Data Unit) MP3 (MPEG audio layer 3) (decoders: mp3adu mp3adufloat )
D.A.L. mp3on4               MP3onMP4 (decoders: mp3on4 mp3on4float )
D.A..S mp4als               MPEG-4 Audio Lossless Coding (ALS) (decoders: als )
D.A.L. musepack7            Musepack SV7 (decoders: mpc7 )
D.A.L. musepack8            Musepack SV8 (decoders: mpc8 )
DEA.L. nellymoser           Nellymoser Asao
..A.L. opus                 Opus (Opus Interactive Audio Codec)
D.A.L. paf_audio            Amazing Studio Packed Animation File Audio
DEA.L. pcm_alaw             PCM A-law / G.711 A-law
D.A..S pcm_bluray           PCM signed 16|20|24-bit big-endian for Blu-ray media
D.A..S pcm_dvd              PCM signed 20|24-bit big-endian
DEA..S pcm_f32be            PCM 32-bit floating point big-endian
DEA..S pcm_f32le            PCM 32-bit floating point little-endian
DEA..S pcm_f64be            PCM 64-bit floating point big-endian
DEA..S pcm_f64le            PCM 64-bit floating point little-endian
D.A..S pcm_lxf              PCM signed 20-bit little-endian planar
DEA.L. pcm_mulaw            PCM mu-law / G.711 mu-law
DEA..S pcm_s16be            PCM signed 16-bit big-endian
DEA..S pcm_s16be_planar     PCM signed 16-bit big-endian planar
DEA..S pcm_s16le            PCM signed 16-bit little-endian
DEA..S pcm_s16le_planar     PCM signed 16-bit little-endian planar
DEA..S pcm_s24be            PCM signed 24-bit big-endian
DEA..S pcm_s24daud          PCM D-Cinema audio signed 24-bit
DEA..S pcm_s24le            PCM signed 24-bit little-endian
DEA..S pcm_s24le_planar     PCM signed 24-bit little-endian planar
DEA..S pcm_s32be            PCM signed 32-bit big-endian
DEA..S pcm_s32le            PCM signed 32-bit little-endian
DEA..S pcm_s32le_planar     PCM signed 32-bit little-endian planar
DEA..S pcm_s8               PCM signed 8-bit
DEA..S pcm_s8_planar        PCM signed 8-bit planar
DEA..S pcm_u16be            PCM unsigned 16-bit big-endian
DEA..S pcm_u16le            PCM unsigned 16-bit little-endian
DEA..S pcm_u24be            PCM unsigned 24-bit big-endian
DEA..S pcm_u24le            PCM unsigned 24-bit little-endian
DEA..S pcm_u32be            PCM unsigned 32-bit big-endian
DEA..S pcm_u32le            PCM unsigned 32-bit little-endian
DEA..S pcm_u8               PCM unsigned 8-bit
D.A.L. pcm_zork             PCM Zork
D.A.L. qcelp                QCELP / PureVoice
D.A.L. qdm2                 QDesign Music Codec 2
..A.L. qdmc                 QDesign Music
DEA.L. ra_144               RealAudio 1.0 (14.4K) (decoders: real_144 ) (encoders: real_144 )
D.A.L. ra_288               RealAudio 2.0 (28.8K) (decoders: real_288 )
D.A..S ralf                 RealAudio Lossless
DEA.L. roq_dpcm             DPCM id RoQ
D.A.L. s302m                SMPTE 302M
D.A..S shorten              Shorten
D.A.L. sipr                 RealAudio SIPR / ACELP.NET
D.A.L. smackaudio           Smacker audio (decoders: smackaud )
..A.L. smv                  SMV (Selectable Mode Vocoder)
D.A.L. sol_dpcm             DPCM Sol
DEA... sonic                Sonic
.EA... sonicls              Sonic lossless
..A.L. speex                Speex
D.A..S tak                  TAK (Tom's lossless Audio Kompressor)
D.A..S truehd               TrueHD
D.A.L. truespeech           DSP Group TrueSpeech
D.A..S tta                  TTA (True Audio)
D.A.L. twinvq               VQF TwinVQ
D.A.L. vima                 LucasArts VIMA audio
D.A.L. vmdaudio             Sierra VMD audio
DEA.L. vorbis               Vorbis (decoders: vorbis libvorbis ) (encoders: vorbis libvorbis )
..A.L. voxware              Voxware RT29 Metasound
D.A... wavesynth            Wave synthesis pseudo-codec
D.A.LS wavpack              WavPack
D.A.L. westwood_snd1        Westwood Audio (SND1) (decoders: ws_snd1 )
D.A..S wmalossless          Windows Media Audio Lossless
D.A.L. wmapro               Windows Media Audio 9 Professional
DEA.L. wmav1                Windows Media Audio 1
DEA.L. wmav2                Windows Media Audio 2
D.A.L. wmavoice             Windows Media Audio Voice
D.A.L. xan_dpcm             DPCM Xan
..D... klv                  SMPTE 336M Key-Length-Value (KLV) metadata
DES... dvb_subtitle         DVB subtitles (decoders: dvbsub ) (encoders: dvbsub )
..S... dvb_teletext         DVB teletext
DES... dvd_subtitle         DVD subtitles (decoders: dvdsub ) (encoders: dvdsub )
..S... eia_608              EIA-608 closed captions
D.S... hdmv_pgs_subtitle    HDMV Presentation Graphic Stream subtitles (decoders: pgssub )
D.S... jacosub              JACOsub subtitle
D.S... microdvd             MicroDVD subtitle
DES... mov_text             MOV text
D.S... mpl2                 MPL2 subtitle
D.S... pjs                  PJS (Phoenix Japanimation Society) subtitle
D.S... realtext             RealText subtitle
D.S... sami                 SAMI subtitle
DES... srt                  SubRip subtitle with embedded timing
DES... ssa                  SSA (SubStation Alpha) / ASS (Advanced SSA) subtitle (decoders: ass ) (encoders: ass )
DES... subrip               SubRip subtitle
D.S... subviewer            SubViewer subtitle
D.S... subviewer1           SubViewer v1 subtitle
D.S... text                 raw UTF-8 text
D.S... vplayer              VPlayer subtitle
D.S... webvtt               WebVTT subtitle
DES... xsub                 XSUB


Decoders:
V..... = Video
A..... = Audio
S..... = Subtitle
.F.... = Frame-level multithreading
..S... = Slice-level multithreading
...X.. = Codec is experimental
....B. = Supports draw_horiz_band
.....D = Supports direct rendering method 1
------
V....D 012v                 Uncompressed 4:2:2 10-bit
V....D 4xm                  4X Movie
V....D 8bps                 QuickTime 8BPS video
V....D aasc                 Autodesk RLE
V..... amv                  AMV Video
V....D anm                  Deluxe Paint Animation
V....D ansi                 ASCII/ANSI art
V....D asv1                 ASUS V1
V....D asv2                 ASUS V2
V....D aura                 Auravision AURA
V....D aura2                Auravision Aura 2
V....D avrn                 Avid AVI Codec
V....D avrp                 Avid 1:1 10-bit RGB Packer
V....D avs                  AVS (Audio Video Standard) video
V....D avui                 Avid Meridien Uncompressed
V....D ayuv                 Uncompressed packed MS 4:4:4:4
V....D bethsoftvid          Bethesda VID video
V....D bfi                  Brute Force & Ignorance
V....D binkvideo            Bink video
V....D bintext              Binary text
V....D bmp                  BMP (Windows and OS/2 bitmap)
V....D bmv_video            Discworld II BMV video
V....D brender_pix          BRender PIX image
V....D c93                  Interplay C93
V....D cavs                 Chinese AVS (Audio Video Standard) (AVS1-P2, JiZhun profile)
V....D cdgraphics           CD Graphics video
V....D cdxl                 Commodore CDXL video
V....D cinepak              Cinepak
V....D cljr                 Cirrus Logic AccuPak
V....D cllc                 Canopus Lossless Codec
V....D eacmv                Electronic Arts CMV video (codec cmv)
V....D cpia                 CPiA video format
V....D camstudio            CamStudio (codec cscd)
V....D cyuv                 Creative YUV (CYUV)
V....D dfa                  Chronomaster DFA
V..... dirac                BBC Dirac VC-2
VF...D dnxhd                VC3/DNxHD
V....D dpx                  DPX image
V....D dsicinvideo          Delphine Software International CIN video
V.S..D dvvideo              DV (Digital Video)
V....D dxa                  Feeble Files/ScummVM DXA
V....D dxtory               Dxtory
V....D escape124            Escape 124
V....D escape130            Escape 130
VF...D exr                  OpenEXR image
V.S..D ffv1                 FFmpeg video codec #1
VF..BD ffvhuff              Huffyuv FFmpeg variant
V....D flashsv              Flash Screen Video v1
V....D flashsv2             Flash Screen Video v2
V....D flic                 Autodesk Animator Flic video
V...BD flv                  FLV / Sorenson Spark / Sorenson H.263 (Flash Video) (codec flv1)
VF...D fraps                Fraps
V....D frwu                 Forward Uncompressed
V....D gif                  GIF (Graphics Interchange Format)
V....D h261                 H.261
V...BD h263                 H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2
V...BD h263i                Intel H.263
V...BD h263p                H.263 / H.263-1996, H.263+ / H.263-1998 / H.263 version 2
VFS..D h264                 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10
V..... h264_vda             H.264 (VDA acceleration) (codec h264)
VF..BD huffyuv              Huffyuv / HuffYUV
V....D idcinvideo           id Quake II CIN video (codec idcin)
V....D idf                  iCEDraw text
V....D iff                  IFF (codec iff_byterun1)
V....D iff                  IFF (codec iff_ilbm)
V....D indeo2               Intel Indeo 2
V....D indeo3               Intel Indeo 3
V....D indeo4               Intel Indeo Video Interactive 4
V....D indeo5               Intel Indeo Video Interactive 5
V....D interplayvideo       Interplay MVE video
V..X.. j2k                  JPEG 2000 (codec jpeg2000)
V....D jpegls               JPEG-LS
V....D jv                   Bitmap Brothers JV video
V....D kgv1                 Kega Game Video
V....D kmvc                 Karl Morton's video codec
VF...D lagarith             Lagarith lossless
V....D loco                 LOCO
V....D eamad                Electronic Arts Madcow Video (codec mad)
VF...D mdec                 Sony PlayStation MDEC (Motion DECoder)
VF...D mimic                Mimic
V....D mjpeg                MJPEG (Motion JPEG)
V....D mjpegb               Apple MJPEG-B
V....D mmvideo              American Laser Games MM Video
V....D motionpixels         Motion Pixels video
V.S.BD mpeg1video           MPEG-1 video
V.S.BD mpeg2video           MPEG-2 video
V.S.BD mpegvideo            MPEG-1 video (codec mpeg2video)
VF..BD mpeg4                MPEG-4 part 2
V...BD mpegvideo_xvmc       MPEG-1/2 video XvMC (X-Video Motion Compensation)
V....D msa1                 MS ATC Screen
V...BD msmpeg4v1            MPEG-4 part 2 Microsoft variant version 1
V...BD msmpeg4v2            MPEG-4 part 2 Microsoft variant version 2
V...BD msmpeg4              MPEG-4 part 2 Microsoft variant version 3 (codec msmpeg4v3)
V....D msrle                Microsoft RLE
V....D mss1                 MS Screen 1
V....D mss2                 MS Windows Media Video V9 Screen
V....D msvideo1             Microsoft Video 1
V....D mszh                 LCL (LossLess Codec Library) MSZH
V....D mts2                 MS Expression Encoder Screen
V....D mvc1                 Silicon Graphics Motion Video Compressor 1
V....D mvc2                 Silicon Graphics Motion Video Compressor 2
V....D mxpeg                Mobotix MxPEG video
V....D nuv                  NuppelVideo/RTJPEG
V....D paf_video            Amazing Studio Packed Animation File Video
V....D pam                  PAM (Portable AnyMap) image
V....D pbm                  PBM (Portable BitMap) image
V....D pcx                  PC Paintbrush PCX image
V....D pgm                  PGM (Portable GrayMap) image
V....D pgmyuv               PGMYUV (Portable GrayMap YUV) image
V....D pictor               Pictor/PC Paint
V....D png                  PNG (Portable Network Graphics) image
V....D ppm                  PPM (Portable PixelMap) image
V.S..D prores               ProRes
V.S..D prores_lgpl          Apple ProRes (iCodec Pro) (codec prores)
V....D ptx                  V.Flash PTX image
V....D qdraw                Apple QuickDraw
V....D qpeg                 Q-team QPEG
V....D qtrle                QuickTime Animation (RLE) video
V....D r10k                 AJA Kona 10-bit RGB Codec
V....D r210                 Uncompressed RGB 10-bit
V..... rawvideo             raw video
V....D rl2                  RL2 video
V....D roqvideo             id RoQ video (codec roq)
V....D rpza                 QuickTime video (RPZA)
V....D rv10                 RealVideo 1.0
V....D rv20                 RealVideo 2.0
VF...D rv30                 RealVideo 3.0
VF...D rv40                 RealVideo 4.0
V....D sanm                 LucasArts SMUSH video
V....D sgi                  SGI image
V....D sgirle               SGI RLE 8-bit
V....D smackvid             Smacker video (codec smackvideo)
V....D smc                  QuickTime Graphics (SMC)
V....D snow                 Snow
V....D sp5x                 Sunplus JPEG (SP5X)
V....D sunrast              Sun Rasterfile image
V....D svq1                 Sorenson Vector Quantizer 1 / Sorenson Video 1 / SVQ1
V...BD svq3                 Sorenson Vector Quantizer 3 / Sorenson Video 3 / SVQ3
V....D targa                Truevision Targa image
V....D targa_y216           Pinnacle TARGA CineWave YUV16
V....D eatgq                Electronic Arts TGQ video (codec tgq)
V..... eatgv                Electronic Arts TGV video (codec tgv)
VF..BD theora               Theora
V....D thp                  Nintendo Gamecube THP video
V....D tiertexseqvideo      Tiertex Limited SEQ video
V....D tiff                 TIFF image
V....D tmv                  8088flex TMV
V....D eatqi                Electronic Arts TQI Video (codec tqi)
V....D truemotion1          Duck TrueMotion 1.0
V....D truemotion2          Duck TrueMotion 2.0
V....D camtasia             TechSmith Screen Capture Codec (codec tscc)
V....D tscc2                TechSmith Screen Codec 2
V....D txd                  Renderware TXD (TeXture Dictionary) image
V....D ultimotion           IBM UltiMotion (codec ulti)
VF...D utvideo              Ut Video
V....D v210                 Uncompressed 4:2:2 10-bit
V....D v210x                Uncompressed 4:2:2 10-bit
V....D v308                 Uncompressed packed 4:4:4
V....D v408                 Uncompressed packed QT 4:4:4:4
V....D v410                 Uncompressed 4:4:4 10-bit
V....D vb                   Beam Software VB
V....D vble                 VBLE Lossless Codec
V....D vc1                  SMPTE VC-1
V....D vc1image             Windows Media Video 9 Image v2
V....D vcr1                 ATI VCR1
V....D xl                   Miro VideoXL (codec vixl)
V....D vmdvideo             Sierra VMD video
V....D vmnc                 VMware Screen Codec / VMware Video
VF..BD vp3                  On2 VP3
V....D vp5                  On2 VP5
V....D vp6                  On2 VP6
V.S..D vp6a                 On2 VP6 (Flash version, with alpha channel)
V....D vp6f                 On2 VP6 (Flash version)
VFS..D vp8                  On2 VP8
V..... libvpx               libvpx VP8 (codec vp8)
V..X.. libvpx-vp9           libvpx VP9 (codec vp9)
V...BD wmv1                 Windows Media Video 7
V...BD wmv2                 Windows Media Video 8
V....D wmv3                 Windows Media Video 9
V....D wmv3image            Windows Media Video 9 Image
V....D wnv1                 Winnov WNV1
V....D vqavideo             Westwood Studios VQA (Vector Quantized Animation) video (codec ws_vqa)
V....D xan_wc3              Wing Commander III / Xan
V....D xan_wc4              Wing Commander IV / Xxan
V....D xbin                 eXtended BINary text
V....D xbm                  XBM (X BitMap) image
V..... xface                X-face image
V....D xwd                  XWD (X Window Dump) image
V....D y41p                 Uncompressed YUV 4:1:1 12-bit
V..... yop                  Psygnosis YOP Video
V....D yuv4                 Uncompressed packed 4:2:0
V....D zerocodec            ZeroCodec Lossless Video
V....D zlib                 LCL (LossLess Codec Library) ZLIB
V....D zmbv                 Zip Motion Blocks Video
A....D 8svx_exp             8SVX exponential
A....D 8svx_fib             8SVX fibonacci
A....D aac                  AAC (Advanced Audio Coding)
A....D aac_latm             AAC LATM (Advanced Audio Coding LATM syntax)
A....D ac3                  ATSC A/52A (AC-3)
A....D adpcm_4xm            ADPCM 4X Movie
A....D adpcm_adx            SEGA CRI ADX ADPCM
A....D adpcm_afc            ADPCM Nintendo Gamecube AFC
A....D adpcm_ct             ADPCM Creative Technology
A....D adpcm_ea             ADPCM Electronic Arts
A....D adpcm_ea_maxis_xa    ADPCM Electronic Arts Maxis CDROM XA
A....D adpcm_ea_r1          ADPCM Electronic Arts R1
A....D adpcm_ea_r2          ADPCM Electronic Arts R2
A....D adpcm_ea_r3          ADPCM Electronic Arts R3
A....D adpcm_ea_xas         ADPCM Electronic Arts XAS
A....D g722                 G.722 ADPCM (codec adpcm_g722)
A....D g726                 G.726 ADPCM (codec adpcm_g726)
A....D adpcm_ima_amv        ADPCM IMA AMV
A....D adpcm_ima_apc        ADPCM IMA CRYO APC
A....D adpcm_ima_dk3        ADPCM IMA Duck DK3
A....D adpcm_ima_dk4        ADPCM IMA Duck DK4
A....D adpcm_ima_ea_eacs    ADPCM IMA Electronic Arts EACS
A....D adpcm_ima_ea_sead    ADPCM IMA Electronic Arts SEAD
A....D adpcm_ima_iss        ADPCM IMA Funcom ISS
A....D adpcm_ima_oki        ADPCM IMA Dialogic OKI
A....D adpcm_ima_qt         ADPCM IMA QuickTime
A....D adpcm_ima_smjpeg     ADPCM IMA Loki SDL MJPEG
A....D adpcm_ima_wav        ADPCM IMA WAV
A....D adpcm_ima_ws         ADPCM IMA Westwood
A....D adpcm_ms             ADPCM Microsoft
A....D adpcm_sbpro_2        ADPCM Sound Blaster Pro 2-bit
A....D adpcm_sbpro_3        ADPCM Sound Blaster Pro 2.6-bit
A....D adpcm_sbpro_4        ADPCM Sound Blaster Pro 4-bit
A....D adpcm_swf            ADPCM Shockwave Flash
A....D adpcm_thp            ADPCM Nintendo Gamecube THP
A....D adpcm_xa             ADPCM CDROM XA
A....D adpcm_yamaha         ADPCM Yamaha
A....D alac                 ALAC (Apple Lossless Audio Codec)
A....D amrnb                AMR-NB (Adaptive Multi-Rate NarrowBand) (codec amr_nb)
A....D amrwb                AMR-WB (Adaptive Multi-Rate WideBand) (codec amr_wb)
A....D ape                  Monkey's Audio
A....D atrac1               Atrac 1 (Adaptive TRansform Acoustic Coding)
A....D atrac3               Atrac 3 (Adaptive TRansform Acoustic Coding 3)
A....D binkaudio_dct        Bink Audio (DCT)
A....D binkaudio_rdft       Bink Audio (RDFT)
A....D bmv_audio            Discworld II BMV audio
A....D comfortnoise         RFC 3389 comfort noise generator
A....D cook                 Cook / Cooker / Gecko (RealAudio G2)
A....D dsicinaudio          Delphine Software International CIN audio
A....D dca                  DCA (DTS Coherent Acoustics) (codec dts)
A....D eac3                 ATSC A/52B (AC-3, E-AC-3)
A....D evrc                 EVRC (Enhanced Variable Rate Codec)
A....D flac                 FLAC (Free Lossless Audio Codec)
A....D g723_1               G.723.1
A....D g729                 G.729
A....D gsm                  GSM
A....D gsm_ms               GSM Microsoft variant
A....D iac                  IAC (Indeo Audio Coder)
A....D imc                  IMC (Intel Music Coder)
A....D interplay_dpcm       DPCM Interplay
A....D mace3                MACE (Macintosh Audio Compression/Expansion) 3:1
A....D mace6                MACE (Macintosh Audio Compression/Expansion) 6:1
A....D mlp                  MLP (Meridian Lossless Packing)
A....D mp1                  MP1 (MPEG audio layer 1)
A....D mp1float             MP1 (MPEG audio layer 1) (codec mp1)
A....D mp2                  MP2 (MPEG audio layer 2)
A....D mp2float             MP2 (MPEG audio layer 2) (codec mp2)
A....D mp3                  MP3 (MPEG audio layer 3)
A....D mp3float             MP3 (MPEG audio layer 3) (codec mp3)
A....D mp3adu               ADU (Application Data Unit) MP3 (MPEG audio layer 3)
A....D mp3adufloat          ADU (Application Data Unit) MP3 (MPEG audio layer 3) (codec mp3adu)
A....D mp3on4               MP3onMP4
A....D mp3on4float          MP3onMP4 (codec mp3on4)
A....D als                  MPEG-4 Audio Lossless Coding (ALS) (codec mp4als)
A....D mpc7                 Musepack SV7 (codec musepack7)
A....D mpc8                 Musepack SV8 (codec musepack8)
A....D nellymoser           Nellymoser Asao
A....D paf_audio            Amazing Studio Packed Animation File Audio
A....D pcm_alaw             PCM A-law / G.711 A-law
A....D pcm_bluray           PCM signed 16|20|24-bit big-endian for Blu-ray media
A....D pcm_dvd              PCM signed 20|24-bit big-endian
A....D pcm_f32be            PCM 32-bit floating point big-endian
A....D pcm_f32le            PCM 32-bit floating point little-endian
A....D pcm_f64be            PCM 64-bit floating point big-endian
A....D pcm_f64le            PCM 64-bit floating point little-endian
A....D pcm_lxf              PCM signed 20-bit little-endian planar
A....D pcm_mulaw            PCM mu-law / G.711 mu-law
A....D pcm_s16be            PCM signed 16-bit big-endian
A....D pcm_s16be_planar     PCM signed 16-bit big-endian planar
A....D pcm_s16le            PCM signed 16-bit little-endian
A....D pcm_s16le_planar     PCM signed 16-bit little-endian planar
A....D pcm_s24be            PCM signed 24-bit big-endian
A....D pcm_s24daud          PCM D-Cinema audio signed 24-bit
A....D pcm_s24le            PCM signed 24-bit little-endian
A....D pcm_s24le_planar     PCM signed 24-bit little-endian planar
A....D pcm_s32be            PCM signed 32-bit big-endian
A....D pcm_s32le            PCM signed 32-bit little-endian
A....D pcm_s32le_planar     PCM signed 32-bit little-endian planar
A....D pcm_s8               PCM signed 8-bit
A....D pcm_s8_planar        PCM signed 8-bit planar
A....D pcm_u16be            PCM unsigned 16-bit big-endian
A....D pcm_u16le            PCM unsigned 16-bit little-endian
A....D pcm_u24be            PCM unsigned 24-bit big-endian
A....D pcm_u24le            PCM unsigned 24-bit little-endian
A....D pcm_u32be            PCM unsigned 32-bit big-endian
A....D pcm_u32le            PCM unsigned 32-bit little-endian
A....D pcm_u8               PCM unsigned 8-bit
A....D pcm_zork             PCM Zork
A....D qcelp                QCELP / PureVoice
A....D qdm2                 QDesign Music Codec 2
A....D real_144             RealAudio 1.0 (14.4K) (codec ra_144)
A....D real_288             RealAudio 2.0 (28.8K) (codec ra_288)
A....D ralf                 RealAudio Lossless
A....D roq_dpcm             DPCM id RoQ
A....D s302m                SMPTE 302M
A....D shorten              Shorten
A....D sipr                 RealAudio SIPR / ACELP.NET
A....D smackaud             Smacker audio (codec smackaudio)
A....D sol_dpcm             DPCM Sol
A..X.D sonic                Sonic
A....D tak                  TAK (Tom's lossless Audio Kompressor)
A....D truehd               TrueHD
A....D truespeech           DSP Group TrueSpeech
A....D tta                  TTA (True Audio)
A....D twinvq               VQF TwinVQ
A....D vima                 LucasArts VIMA audio
A....D vmdaudio             Sierra VMD audio
A....D vorbis               Vorbis
A..... libvorbis            libvorbis (codec vorbis)
A....D wavesynth            Wave synthesis pseudo-codec
A....D wavpack              WavPack
A....D ws_snd1              Westwood Audio (SND1) (codec westwood_snd1)
A....D wmalossless          Windows Media Audio Lossless
A....D wmapro               Windows Media Audio 9 Professional
A....D wmav1                Windows Media Audio 1
A....D wmav2                Windows Media Audio 2
A....D wmavoice             Windows Media Audio Voice
A....D xan_dpcm             DPCM Xan
S..... dvbsub               DVB subtitles (codec dvb_subtitle)
S..... dvdsub               DVD subtitles (codec dvd_subtitle)
S..... pgssub               HDMV Presentation Graphic Stream subtitles (codec hdmv_pgs_subtitle)
S..... jacosub              JACOsub subtitle
S..... microdvd             MicroDVD subtitle
S..... mov_text             3GPP Timed Text subtitle
S..... mpl2                 MPL2 subtitle
S..... pjs                  PJS subtitle
S..... realtext             RealText subtitle
S..... sami                 SAMI subtitle
S..... srt                  SubRip subtitle with embedded timing
S..... ass                  SSA (SubStation Alpha) subtitle (codec ssa)
S..... subrip               SubRip subtitle
S..... subviewer            SubViewer subtitle
S..... subviewer1           SubViewer1 subtitle
S..... text                 Raw text subtitle
S..... vplayer              VPlayer subtitle
S..... webvtt               WebVTT subtitle
S..... xsub                 XSUB


Encoders:
V..... = Video
A..... = Audio
S..... = Subtitle
.F.... = Frame-level multithreading
..S... = Slice-level multithreading
...X.. = Codec is experimental
....B. = Supports draw_horiz_band
.....D = Supports direct rendering method 1
------
V..... a64multi             Multicolor charset for Commodore 64 (codec a64_multi)
V..... a64multi5            Multicolor charset for Commodore 64, extended with 5th color (colram) (codec a64_multi5)
V..... amv                  AMV Video
V..... asv1                 ASUS V1
V..... asv2                 ASUS V2
V..... avrp                 Avid 1:1 10-bit RGB Packer
V..X.. avui                 Avid Meridien Uncompressed
V..... ayuv                 Uncompressed packed MS 4:4:4:4
V..... bmp                  BMP (Windows and OS/2 bitmap)
V..... cljr                 Cirrus Logic AccuPak
V.S... dnxhd                VC3/DNxHD
V..... dpx                  DPX image
V.S... dvvideo              DV (Digital Video)
V.S... ffv1                 FFmpeg video codec #1
V..... ffvhuff              Huffyuv FFmpeg variant
V..... flashsv              Flash Screen Video
V..... flashsv2             Flash Screen Video Version 2
V..... flv                  FLV / Sorenson Spark / Sorenson H.263 (Flash Video) (codec flv1)
V..... gif                  GIF (Graphics Interchange Format)
V..... h261                 H.261
V..... h263                 H.263 / H.263-1996
V.S... h263p                H.263+ / H.263-1998 / H.263 version 2
V..... libx264              libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 (codec h264)
V..... libx264rgb           libx264 H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 RGB (codec h264)
V..... huffyuv              Huffyuv / HuffYUV
V..X.. j2k                  JPEG 2000 (codec jpeg2000)
V..... jpegls               JPEG-LS
V..... ljpeg                Lossless JPEG
VFS... mjpeg                MJPEG (Motion JPEG)
V.S... mpeg1video           MPEG-1 video
V.S... mpeg2video           MPEG-2 video
V.S... mpeg4                MPEG-4 part 2
V..... libxvid              libxvidcore MPEG-4 part 2 (codec mpeg4)
V..... msmpeg4v2            MPEG-4 part 2 Microsoft variant version 2
V..... msmpeg4              MPEG-4 part 2 Microsoft variant version 3 (codec msmpeg4v3)
V..... msvideo1             Microsoft Video-1
V..... pam                  PAM (Portable AnyMap) image
V..... pbm                  PBM (Portable BitMap) image
V..... pcx                  PC Paintbrush PCX image
V..... pgm                  PGM (Portable GrayMap) image
V..... pgmyuv               PGMYUV (Portable GrayMap YUV) image
VF.... png                  PNG (Portable Network Graphics) image
V..... ppm                  PPM (Portable PixelMap) image
VF.... prores               Apple ProRes
VF.... prores_anatoliy      Apple ProRes (codec prores)
V.S... prores_kostya        Apple ProRes (iCodec Pro) (codec prores)
V..... qtrle                QuickTime Animation (RLE) video
V..... r10k                 AJA Kona 10-bit RGB Codec
V..... r210                 Uncompressed RGB 10-bit
V..... rawvideo             raw video
V..... roqvideo             id RoQ video (codec roq)
V..... rv10                 RealVideo 1.0
V..... rv20                 RealVideo 2.0
V..... sgi                  SGI image
V..... snow                 Snow
V..... sunrast              Sun Rasterfile image
V..... svq1                 Sorenson Vector Quantizer 1 / Sorenson Video 1 / SVQ1
V..... targa                Truevision Targa image
V..... libtheora            libtheora Theora (codec theora)
V..... tiff                 TIFF image
V..... utvideo              Ut Video
V..... v210                 Uncompressed 4:2:2 10-bit
V..... v308                 Uncompressed packed 4:4:4
V..... v408                 Uncompressed packed QT 4:4:4:4
V..... v410                 Uncompressed 4:4:4 10-bit
V..... libvpx               libvpx VP8 (codec vp8)
V..X.. libvpx-vp9           libvpx VP9 (codec vp9)
V..... wmv1                 Windows Media Video 7
V..... wmv2                 Windows Media Video 8
V..... xbm                  XBM (X BitMap) image
V..... xface                X-face image
V..... xwd                  XWD (X Window Dump) image
V..... y41p                 Uncompressed YUV 4:1:1 12-bit
V..... yuv4                 Uncompressed packed 4:2:0
V..... zlib                 LCL (LossLess Codec Library) ZLIB
V..... zmbv                 Zip Motion Blocks Video
A..X.. aac                  AAC (Advanced Audio Coding)
A..... ac3                  ATSC A/52A (AC-3)
A..... ac3_fixed            ATSC A/52A (AC-3) (codec ac3)
A..... adpcm_adx            SEGA CRI ADX ADPCM
A..... g722                 G.722 ADPCM (codec adpcm_g722)
A..... g726                 G.726 ADPCM (codec adpcm_g726)
A..... adpcm_ima_qt         ADPCM IMA QuickTime
A..... adpcm_ima_wav        ADPCM IMA WAV
A..... adpcm_ms             ADPCM Microsoft
A..... adpcm_swf            ADPCM Shockwave Flash
A..... adpcm_yamaha         ADPCM Yamaha
A..... alac                 ALAC (Apple Lossless Audio Codec)
A..... comfortnoise         RFC 3389 comfort noise generator
A..X.. dca                  DCA (DTS Coherent Acoustics) (codec dts)
A..... eac3                 ATSC A/52 E-AC-3
A..... flac                 FLAC (Free Lossless Audio Codec)
A..... g723_1               G.723.1
A..... mp2                  MP2 (MPEG audio layer 2)
A..... libmp3lame           libmp3lame MP3 (MPEG audio layer 3) (codec mp3)
A..... nellymoser           Nellymoser Asao
A..... pcm_alaw             PCM A-law / G.711 A-law
A..... pcm_f32be            PCM 32-bit floating point big-endian
A..... pcm_f32le            PCM 32-bit floating point little-endian
A..... pcm_f64be            PCM 64-bit floating point big-endian
A..... pcm_f64le            PCM 64-bit floating point little-endian
A..... pcm_mulaw            PCM mu-law / G.711 mu-law
A..... pcm_s16be            PCM signed 16-bit big-endian
A..... pcm_s16be_planar     PCM signed 16-bit big-endian planar
A..... pcm_s16le            PCM signed 16-bit little-endian
A..... pcm_s16le_planar     PCM signed 16-bit little-endian planar
A..... pcm_s24be            PCM signed 24-bit big-endian
A..... pcm_s24daud          PCM D-Cinema audio signed 24-bit
A..... pcm_s24le            PCM signed 24-bit little-endian
A..... pcm_s24le_planar     PCM signed 24-bit little-endian planar
A..... pcm_s32be            PCM signed 32-bit big-endian
A..... pcm_s32le            PCM signed 32-bit little-endian
A..... pcm_s32le_planar     PCM signed 32-bit little-endian planar
A..... pcm_s8               PCM signed 8-bit
A..... pcm_s8_planar        PCM signed 8-bit planar
A..... pcm_u16be            PCM unsigned 16-bit big-endian
A..... pcm_u16le            PCM unsigned 16-bit little-endian
A..... pcm_u24be            PCM unsigned 24-bit big-endian
A..... pcm_u24le            PCM unsigned 24-bit little-endian
A..... pcm_u32be            PCM unsigned 32-bit big-endian
A..... pcm_u32le            PCM unsigned 32-bit little-endian
A..... pcm_u8               PCM unsigned 8-bit
A..... real_144             RealAudio 1.0 (14.4K) (codec ra_144)
A..... roq_dpcm             id RoQ DPCM
A..X.. sonic                Sonic
A..X.. sonicls              Sonic lossless
A..X.. vorbis               Vorbis
A..... libvorbis            libvorbis (codec vorbis)
A..... wmav1                Windows Media Audio 1
A..... wmav2                Windows Media Audio 2
S..... dvbsub               DVB subtitles (codec dvb_subtitle)
S..... dvdsub               DVD subtitles (codec dvd_subtitle)
S..... mov_text             3GPP Timed Text subtitle
S..... srt                  SubRip subtitle with embedded timing
S..... ass                  SSA (SubStation Alpha) subtitle (codec ssa)
S..... subrip               SubRip subtitle
S..... xsub                 DivX subtitles (XSUB)


Bitstream filters:
text2movsub
remove_extra
noise
mov2textsub
mp3decomp
mp3comp
mjpegadump
mjpeg2jpeg
imxdump
h264_mp4toannexb
dump_extra
chomp
aac_adtstoasc


Supported file protocols:
Input:
applehttp
cache
concat
crypto
data
ffrtmphttp
file
gopher
hls
http
httpproxy
mmsh
mmst
pipe
rtmp
rtmpt
rtp
srtp
tcp
udp
Output:
ffrtmphttp
file
gopher
http
httpproxy
md5
pipe
rtmp
rtmpt
rtp
srtp
tcp
udp


Filters:
aconvert         A->A       Convert the input audio to sample_fmt:channel_layout.
afade            A->A       Fade in/out input audio.
aformat          A->A       Convert the input audio to one of the specified formats.
allpass          A->A       Apply a two-pole all-pass filter.
amerge           |->A       Merge two or more audio streams into a single multi-channel stream.
amix             |->A       Audio mixing.
anull            A->A       Pass the source unchanged to the output.
apad             A->A       Pad audio with silence.
aresample        A->A       Resample audio data.
aselect          A->A       Select audio frames to pass in output.
asendcmd         A->A       Send commands to filters.
asetnsamples     A->A       Set the number of samples for each output audio frames.
asetpts          A->A       Set PTS for the output audio frame.
asettb           A->A       Set timebase for the audio output link.
ashowinfo        A->A       Show textual information for each audio frame.
asplit           A->|       Pass on the audio input to N audio outputs.
astreamsync      AA->AA     Copy two streams of audio data in a configurable order.
atempo           A->A       Adjust audio tempo.
bandpass         A->A       Apply a two-pole Butterworth band-pass filter.
bandreject       A->A       Apply a two-pole Butterworth band-reject filter.
bass             A->A       Boost or cut lower frequencies.
biquad           A->A       Apply a biquad IIR filter with the given coefficients.
channelmap       A->A       Remap audio channels.
channelsplit     A->|       Split audio into per-channel streams
earwax           A->A       Widen the stereo image.
ebur128          A->|       EBU R128 scanner.
equalizer        A->A       Apply two-pole peaking equalization (EQ) filter.
highpass         A->A       Apply a high-pass filter with 3dB point frequency.
join             |->A       Join multiple audio streams into multi-channel output
lowpass          A->A       Apply a low-pass filter with 3dB point frequency.
pan              A->A       Remix channels with coefficients (panning).
silencedetect    A->A       Detect silence.
treble           A->A       Boost or cut upper frequencies.
volume           A->A       Change input volume.
volumedetect     A->A       Detect audio volume.
aevalsrc         |->A       Generate an audio signal generated by an expression.
anullsrc         |->A       Null audio source, return empty audio frames.
anullsink        A->|       Do absolutely nothing with the input audio.
alphaextract     V->V       Extract an alpha channel as a grayscale image component.
alphamerge       VV->V      Copy the luma value of the second input into the alpha channel of the first input.
bbox             V->V       Compute bounding box for each frame.
blackdetect      V->V       Detect video intervals that are (almost) black.
blackframe       V->V       Detect frames that are (almost) black.
boxblur          V->V       Blur the input.
colormatrix      V->V       Color matrix conversion
copy             V->V       Copy the input video unchanged to the output.
crop             V->V       Crop the input video to width:height:x:y.
cropdetect       V->V       Auto-detect crop size.
decimate         V->V       Remove near-duplicate frames.
delogo           V->V       Remove logo from input video.
deshake          V->V       Stabilize shaky video.
drawbox          V->V       Draw a colored box on the input video.
edgedetect       V->V       Detect and draw edge.
fade             V->V       Fade in/out input video.
field            V->V       Extract a field from the input video.
fieldorder       V->V       Set the field order.
format           V->V       Convert the input video to one of the specified pixel formats.
fps              V->V       Force constant framerate
framestep        V->V       Select one frame every N frames.
geq              V->V       Apply generic equation to each pixel.
gradfun          V->V       Debands video quickly using gradients.
hflip            V->V       Horizontally flip the input video.
histeq           V->V       Apply global color histogram equalization.
histogram        V->V       Compute and draw a histogram.
hqdn3d           V->V       Apply a High Quality 3D Denoiser.
hue              V->V       Adjust the hue and saturation of the input video.
idet             V->V       Interlace detect Filter.
il               V->V       Deinterleave or interleave fields.
kerndeint        V->V       Apply kernel deinterlacing to the input.
lut              V->V       Compute and apply a lookup table to the RGB/YUV input video.
lutrgb           V->V       Compute and apply a lookup table to the RGB input video.
lutyuv           V->V       Compute and apply a lookup table to the YUV input video.
mp               V->V       Apply a libmpcodecs filter to the input video.
negate           V->V       Negate input video.
noformat         V->V       Force libavfilter not to use any of the specified pixel formats for the input to the next filter.
noise            V->V       Add noise.
null             V->V       Pass the source unchanged to the output.
overlay          VV->V      Overlay a video source on top of the input.
pad              V->V       Pad input image to width:height[:x:y[:color]] (default x and y: 0, default color: black).
pixdesctest      V->V       Test pixel format definitions.
pp               V->V       Filter video using libpostproc.
removelogo       V->V       Remove a TV logo based on a mask image.
scale            V->V       Scale the input video to width:height size and/or convert the image format.
select           V->V       Select video frames to pass in output.
sendcmd          V->V       Send commands to filters.
setdar           V->V       Set the frame display aspect ratio.
setfield         V->V       Force field for the output video frame.
setpts           V->V       Set PTS for the output video frame.
setsar           V->V       Set the pixel sample aspect ratio.
settb            V->V       Set timebase for the video output link.
showinfo         V->V       Show textual information for each video frame.
smartblur        V->V       Blur the input video without impacting the outlines.
split            V->|       Pass on the input video to N outputs.
super2xsai       V->V       Scale the input by 2x using the Super2xSaI pixel art algorithm.
swapuv           V->V       Swap U and V components.
thumbnail        V->V       Select the most representative frame in a given sequence of consecutive frames.
tile             V->V       Tile several successive frames together.
tinterlace       V->V       Perform temporal field interlacing.
transpose        V->V       Transpose input video.
unsharp          V->V       Sharpen or blur the input video.
vflip            V->V       Flip the input video vertically.
yadif            V->V       Deinterlace the input image.
cellauto         |->V       Create pattern generated by an elementary cellular automaton.
color            |->V       Provide an uniformly colored input.
life             |->V       Create life.
mandelbrot       |->V       Render a Mandelbrot fractal.
mptestsrc        |->V       Generate various test pattern.
nullsrc          |->V       Null video source, return unprocessed video frames.
rgbtestsrc       |->V       Generate RGB test pattern.
smptebars        |->V       Generate SMPTE color bars.
testsrc          |->V       Generate test pattern.
nullsink         V->|       Do absolutely nothing with the input video.
concat           |->|       Concatenate audio and video streams.
showspectrum     A->V       Convert input audio to a spectrum video output.
showwaves        A->V       Convert input audio to a video output.
amovie           |->|       Read audio from a movie source.
movie            |->|       Read from a movie source.
ffbuffersink     V->|       Buffer video frames, and make them available to the end of the filter graph.
ffabuffersink    A->|       Buffer audio frames, and make them available to the end of the filter graph.
buffersink       V->|       Buffer video frames, and make them available to the end of the filter graph.
abuffersink      A->|       Buffer audio frames, and make them available to the end of the filter graph.
abuffer          |->A       Buffer audio frames, and make them accessible to the filterchain.
buffer           |->V       Buffer video frames, and make them accessible to the filterchain.
abuffersink_old  A->|       Buffer audio frames, and make them available to the end of the filter graph.
buffersink_old   V->|       Buffer video frames, and make them available to the end of the filter graph.
afifo            A->A       Buffer input frames and send them when they are requested.
fifo             V->V       Buffer input images and send them when they are requested.


Pixel formats:
I.... = Supported Input  format for conversion
.O... = Supported Output format for conversion
..H.. = Hardware accelerated format
...P. = Paletted format
....B = Bitstream format
FLAGS NAME            NB_COMPONENTS BITS_PER_PIXEL
-----
IO... yuv420p                3            12
IO... yuyv422                3            16
IO... rgb24                  3            24
IO... bgr24                  3            24
IO... yuv422p                3            16
IO... yuv444p                3            24
IO... yuv410p                3             9
IO... yuv411p                3            12
IO... gray                   1             8
IO..B monow                  1             1
IO..B monob                  1             1
I..P. pal8                   1             8
IO... yuvj420p               3            12
IO... yuvj422p               3            16
IO... yuvj444p               3            24
..H.. xvmcmc                 0             0
..H.. xvmcidct               0             0
IO... uyvy422                3            16
..... uyyvyy411              3            12
IO... bgr8                   3             8
.O..B bgr4                   3             4
IO... bgr4_byte              3             4
IO... rgb8                   3             8
.O..B rgb4                   3             4
IO... rgb4_byte              3             4
IO... nv12                   3            12
IO... nv21                   3            12
IO... argb                   4            32
IO... rgba                   4            32
IO... abgr                   4            32
IO... bgra                   4            32
IO... gray16be               1            16
IO... gray16le               1            16
IO... yuv440p                3            16
IO... yuvj440p               3            16
IO... yuva420p               4            20
..H.. vdpau_h264             0             0
..H.. vdpau_mpeg1            0             0
..H.. vdpau_mpeg2            0             0
..H.. vdpau_wmv3             0             0
..H.. vdpau_vc1              0             0
IO... rgb48be                3            48
IO... rgb48le                3            48
IO... rgb565be               3            16
IO... rgb565le               3            16
IO... rgb555be               3            15
IO... rgb555le               3            15
IO... bgr565be               3            16
IO... bgr565le               3            16
IO... bgr555be               3            15
IO... bgr555le               3            15
..H.. vaapi_moco             0             0
..H.. vaapi_idct             0             0
..H.. vaapi_vld              0             0
IO... yuv420p16le            3            24
IO... yuv420p16be            3            24
IO... yuv422p16le            3            32
IO... yuv422p16be            3            32
IO... yuv444p16le            3            48
IO... yuv444p16be            3            48
..H.. vdpau_mpeg4            0             0
..H.. dxva2_vld              0             0
IO... rgb444le               3            12
IO... rgb444be               3            12
IO... bgr444le               3            12
IO... bgr444be               3            12
I.... gray8a                 2            16
IO... bgr48be                3            48
IO... bgr48le                3            48
IO... yuv420p9be             3            13
IO... yuv420p9le             3            13
IO... yuv420p10be            3            15
IO... yuv420p10le            3            15
IO... yuv422p10be            3            20
IO... yuv422p10le            3            20
IO... yuv444p9be             3            27
IO... yuv444p9le             3            27
IO... yuv444p10be            3            30
IO... yuv444p10le            3            30
IO... yuv422p9be             3            18
IO... yuv422p9le             3            18
..H.. vda_vld                0             0
IO... gbrp                   3            24
IO... gbrp9be                3            27
IO... gbrp9le                3            27
IO... gbrp10be               3            30
IO... gbrp10le               3            30
I.... gbrp16be               3            48
I.... gbrp16le               3            48
IO... yuva420p9be            4            22
IO... yuva420p9le            4            22
IO... yuva422p9be            4            27
IO... yuva422p9le            4            27
IO... yuva444p9be            4            36
IO... yuva444p9le            4            36
IO... yuva420p10be           4            25
IO... yuva420p10le           4            25
IO... yuva422p10be           4            30
IO... yuva422p10le           4            30
IO... yuva444p10be           4            40
IO... yuva444p10le           4            40
IO... yuva420p16be           4            40
IO... yuva420p16le           4            40
IO... yuva422p16be           4            48
IO... yuva422p16le           4            48
IO... yuva444p16be           4            64
IO... yuva444p16le           4            64
..H.. vdpau                  0             0
I.... rgba64be               4            64
I.... rgba64le               4            64
..... bgra64be               4            64
..... bgra64le               4            64
IO... 0rgb                   3            24
IO... rgb0                   3            24
IO... 0bgr                   3            24
IO... bgr0                   3            24
IO... yuva444p               4            32
IO... yuva422p               4            24
IO... yuv420p12be            3            18
IO... yuv420p12le            3            18
IO... yuv420p14be            3            21
IO... yuv420p14le            3            21
IO... yuv422p12be            3            24
IO... yuv422p12le            3            24
IO... yuv422p14be            3            28
IO... yuv422p14le            3            28
IO... yuv444p12be            3            36
IO... yuv444p12le            3            36
IO... yuv444p14be            3            42
IO... yuv444p14le            3            42
IO... gbrp12be               3            36
IO... gbrp12le               3            36
IO... gbrp14be               3            42
IO... gbrp14le               3            42


Individual channels:
NAME        DESCRIPTION
FL          front left
FR          front right
FC          front center
LFE         low frequency
BL          back left
BR          back right
FLC         front left-of-center
FRC         front right-of-center
BC          back center
SL          side left
SR          side right
TC          top center
TFL         top front left
TFC         top front center
TFR         top front right
TBL         top back left
TBC         top back center
TBR         top back right
DL          downmix left
DR          downmix right
WL          wide left
WR          wide right
SDL         surround direct left
SDR         surround direct right
LFE2        low frequency 2

Standard channel layouts:
NAME        DECOMPOSITION
mono        FC
stereo      FL+FR
2.1         FL+FR+LFE
3.0         FL+FR+FC
3.0(back)   FL+FR+BC
4.0         FL+FR+FC+BC
quad        FL+FR+BL+BR
quad(side)  FL+FR+SL+SR
3.1         FL+FR+FC+LFE
5.0         FL+FR+FC+BL+BR
5.0(side)   FL+FR+FC+SL+SR
4.1         FL+FR+FC+LFE+BC
5.1         FL+FR+FC+LFE+BL+BR
5.1(side)   FL+FR+FC+LFE+SL+SR
6.0         FL+FR+FC+BC+SL+SR
6.0(front)  FL+FR+FLC+FRC+SL+SR
hexagonal   FL+FR+FC+BL+BR+BC
6.1         FL+FR+FC+LFE+BC+SL+SR
6.1         FL+FR+FC+LFE+BL+BR+BC
6.1(front)  FL+FR+LFE+FLC+FRC+SL+SR
7.0         FL+FR+FC+BL+BR+SL+SR
7.0(front)  FL+FR+FC+FLC+FRC+SL+SR
7.1         FL+FR+FC+LFE+BL+BR+SL+SR
7.1(wide)   FL+FR+FC+LFE+BL+BR+FLC+FRC
7.1(wide-side)FL+FR+FC+LFE+FLC+FRC+SL+SR
octagonal   FL+FR+FC+BL+BR+BC+SL+SR
downmix     DL+DR


name   depth
u8        8
s16      16
s32      32
flt      32
dbl      64
u8p       8
s16p     16
s32p     32
fltp     32
dblp     64