ffmpeg.rst
changeset 2425 0dadee3a3b63
parent 2424 2a62ec5e8506
child 2426 b8ad0acb827d
equal deleted inserted replaced
2424:2a62ec5e8506 2425:0dadee3a3b63
     2 ========
     2 ========
     3  ffmpeg
     3  ffmpeg
     4 ========
     4 ========
     5 .. contents::
     5 .. contents::
     6    :local:
     6    :local:
       
     7 
       
     8 Docs
       
     9 ====
       
    10 
       
    11 https://ffmpeg.org/documentation.html
       
    12   Docs index.
       
    13 http://ffmpeg.org/ffmpeg-all.html
       
    14   Common options.
       
    15 https://ffmpeg.org/faq.html
       
    16   FAQ.
       
    17 https://ffmpeg.org/ffmpeg.html
       
    18   Syntax overview.
     7 
    19 
     8 Print supported options
    20 Print supported options
     9 =======================
    21 =======================
    10 
    22 
    11 Supported decoders/encoders::
    23 Supported decoders/encoders::
    14 
    26 
    15 Pixel formats::
    27 Pixel formats::
    16 
    28 
    17   ffmpeg -pix_fmts
    29   ffmpeg -pix_fmts
    18 
    30 
       
    31 Limiting bit rate
       
    32 =================
    19 
    33 
       
    34 ``-maxrate`` should be accompanied with ``-bufsize`` option like::
    20 
    35 
       
    36   -maxrate 800k -bufsize 1200k
       
    37 
       
    38 otherwise you'll get warning:
       
    39 
       
    40 > VBV maxrate specified, but no bufsize, ignored
       
    41 
       
    42 ``-b:v RATE`` allows to specify average bitrate for video.
       
    43 
       
    44 To specify video stream use syntax like::
       
    45 
       
    46   -c:v:0 libx264 -b:v:0 2000k -maxrate:v:0 2200k -bufsize:v:0 3000k
       
    47 
       
    48 https://trac.ffmpeg.org/wiki/Limiting%20the%20output%20bitrate
       
    49   Limiting the output bitrate.
       
    50 https://trac.ffmpeg.org/wiki/EncodingForStreamingSites
       
    51   Encoding for streaming sites.
       
    52 
       
    53 H.264
       
    54 =====
       
    55 
       
    56 https://trac.ffmpeg.org/wiki/Encode/H.264