Ich muss einige von CDs gemasterte Audiodateien konvertieren, um sie an Spotify zu senden.
Spotify bevorzugt kein CD-Mastering, hat aber einige Lautstärkevorschläge:
(https://artists.spotify.com/en/help/article/loudness-normalization)
Target the loudness level of your master at -14dB integrated LUFS
and keep it below -1dB TP (True Peak) max. This is best for lossy
formats (Ogg/Vorbis and AAC) and makes sure no extra distortion’s
introduced in the transcoding process.
If your master’s louder than -14dB integrated LUFS, make sure
it stays below -2dB TP (True Peak) to avoid extra distortion. This
is because louder tracks are more susceptible to extra distortion
in the transcoding process.
Ist dies mit ffmpeg machbar? Mit einem anderen Programm?
Antwort1
Das kann es auf jeden Fall!
Dies können Sie mit dem Loudnorm-Filter erreichen:
ffmpeg -i input.mp3 -af loudnorm=I=-14:LRA=11:TP=-1 output.mp3
I = integrierte Lautstärke
LRA = Lautstärkebereich
TP = wahrer Peak
Es scheint, dass Sie bessere Ergebnisse erzielen können, wenn Sie einen zweiten Durchgang ausführen. Sie können dies wie erwähnt manuell tunHier oder durch Verwendungffmpeg-normalisieren,die es in einem Durchgang erledigen kann.
Beispiel mit gleichen Parametern:
ffmpeg-normalize input.flac -t -14 -lrt 11 -tp -1 output.flac