diff options
author | Wonkap Jang <wonkap-at-google.com@ffmpeg.org> | 2019-12-18 13:17:00 -0800 |
---|---|---|
committer | James Zern <jzern@google.com> | 2019-12-20 14:37:35 -0500 |
commit | a86bb2f606da64d287b1dd807a4f691c39f1a1ec (patch) | |
tree | 6c5269802a4035034f92c614b28bb3aa175b8ae6 /doc/encoders.texi | |
parent | 786a2daa3de791f685f3113f534201cf85b008d1 (diff) | |
download | ffmpeg-a86bb2f606da64d287b1dd807a4f691c39f1a1ec.tar.gz |
doc/encoders: correct the description for ts_target_bitrate
ts_target_bitrate is in kbps, not bps. This commit clarifies the unit
and modifies the example to match the description.
Signed-off-by: James Zern <jzern@google.com>
Diffstat (limited to 'doc/encoders.texi')
-rw-r--r-- | doc/encoders.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/encoders.texi b/doc/encoders.texi index 4ee518a124..a207363650 100644 --- a/doc/encoders.texi +++ b/doc/encoders.texi @@ -1893,7 +1893,7 @@ key=value pairs. For example, to specify temporal scalability parameters with @code{ffmpeg}: @example ffmpeg -i INPUT -c:v libvpx -ts-parameters ts_number_layers=3:\ -ts_target_bitrate=250000,500000,1000000:ts_rate_decimator=4,2,1:\ +ts_target_bitrate=250,500,1000:ts_rate_decimator=4,2,1:\ ts_periodicity=4:ts_layer_id=0,2,1,2 OUTPUT @end example Below is a brief explanation of each of the parameters, please @@ -1903,7 +1903,8 @@ details. @item ts_number_layers Number of temporal coding layers. @item ts_target_bitrate -Target bitrate for each temporal layer. +Target bitrate for each temporal layer (in kbps). +(bitrate should be inclusive of the lower temporal layer). @item ts_rate_decimator Frame rate decimation factor for each temporal layer. @item ts_periodicity |