diff options
author | Kyle Swanson <k@ylo.ph> | 2016-05-11 13:30:14 -0500 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-05-18 22:15:01 +0200 |
commit | c0c378009b4ba5dea2ac1f93c972a6c84b2dff0d (patch) | |
tree | 1e0bd01b051c9117a5b410eb614e72fee970f1f9 /doc | |
parent | 42ee137a0a7d025f77964e38b438d00095e6dd11 (diff) | |
download | ffmpeg-c0c378009b4ba5dea2ac1f93c972a6c84b2dff0d.tar.gz |
avfilter: add loudnorm
Signed-off-by: Kyle Swanson <k@ylo.ph>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index a7c480e68c..27584e91db 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -2711,6 +2711,61 @@ Modify the @var{N}-th control value. If the specified value is not valid, it is ignored and prior one is kept. @end table +@section loudnorm + +EBU R128 loudness normalization. Includes both dynamic and linear normalization modes. +Support for both single pass (livestreams, files) and double pass (files) modes. +This algorithm can target IL, LRA, and maximum true peak. + +To enable compilation of this filter you need to configure FFmpeg with +@code{--enable-libebur128}. + +The filter accepts the following options: + +@table @option +@item I, i +Set integrated loudness target. +Range is -70.0 - -5.0. Default value is -24.0. + +@item LRA, lra +Set loudness range target. +Range is 1.0 - 20.0. Default value is 7.0. + +@item TP, tp +Set maximum true peak. +Range is -9.0 - +0.0. Default value is -2.0. + +@item measured_I, measured_i +Measured IL of input file. +Range is -99.0 - +0.0. + +@item measured_LRA, measured_lra +Measured LRA of input file. +Range is 0.0 - 99.0. + +@item measured_TP, measured_tp +Measured true peak of input file. +Range is -99.0 - +99.0. + +@item measured_thresh +Measured threshold of input file. +Range is -99.0 - +0.0. + +@item offset +Set offset gain. Gain is applied before the true-peak limiter. +Range is -99.0 - +99.0. Default is +0.0. + +@item linear +Normalize linearly if possible. +measured_I, measured_LRA, measured_TP, and measured_thresh must also +to be specified in order to use this mode. +Options are true or false. Default is true. + +@item print_format +Set print format for stats. Options are summary, json, or none. +Default value is none. +@end table + @section lowpass Apply a low-pass filter with 3dB point frequency. |