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 차이를 설명할 수 없습니까? 이 필터는 서로 다른 것을 측정합니까?