当我通过 FFMpeg 的“loudnorm”过滤器运行音频文件时,我得到以下结果:
> ffmpeg -i <file> -af loudnorm=print_format=json -f null -
...
"input_i" : "-13.87",
"input_tp" : "0.06",
"input_lra" : "8.50",
"input_thresh" : "-24.45",
...
当我通过 ebur128 过滤器运行同一个音频文件时,我得到以下结果:
> ffmpeg -i <file> -af ebur128 -f null -
Integrated loudness:
I: -13.8 LUFS
Threshold: -24.4 LUFS
Loudness range:
LRA: 8.7 LU
Threshold: -34.3 LUFS
LRA low: -20.1 LUFS
LRA high: -11.4 LUFS
为什么这些测量值不同?即使四舍五入到 0,也无法解释 LRA 差异?这些过滤器测量的是不同的东西吗?