Description
Thanks for this awesome tool! I was having trouble finding info about the loudnorm filter in ffmpeg, but this repo is a wealth of knowledge.
I've been hit by the somewhat awkward implementation in ffmpeg where if the target LRA is lower than, it switches to "dynamic", causing the audio file to become turn completely quiet. Luckily you have already have a solution --keep-lra-above-loudness-range-target
for that.
Now reading the https://ffmpeg.org/ffmpeg-filters.html#loudnorm I see that:
... the change in integrated loudness shouldn’t result in a true peak which exceeds the target TP. If any of these conditions aren’t met, normalization mode will revert to dynamic.
So I'm wondering have any of you thought about the possibility of dynamic
mode getting accidentally triggered by this condition, and how to prevent that?