為什麼 ffmpeg Loudnorm 和 ebur128 測量結果不同

為什麼 ffmpeg Loudnorm 和 ebur128 測量結果不同

當我透過 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 的差異嗎?這些過濾器測量的是不同的東西嗎?

相關內容