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 の違いは説明できません。これらのフィルターは異なるものを測定しているのでしょうか?

関連情報