오디오 음량 정규화와 함께 ffmpeg를 사용할 수 있습니까?

오디오 음량 정규화와 함께 ffmpeg를 사용할 수 있습니까?

Spotify로 보낼 CD 마스터링 오디오를 변환해야 합니다.

Spotify는 CD 마스터링을 선호하지 않지만 몇 가지 음량 제안이 있습니다.

(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.

ffmpeg로 가능할까요? 다른 프로그램은 없나요?

답변1

확실히 그럴 수 있어요!

Loudnorm 필터를 사용하여 이 작업을 수행할 수 있습니다.

ffmpeg -i input.mp3 -af loudnorm=I=-14:LRA=11:TP=-1 output.mp3

I = 통합 음량

LRA = 음량 범위

TP = 실제 피크

두 번째 패스를 실행하면 더 나은 결과를 얻을 수 있을 것 같습니다. 언급한 것처럼 수동으로 할 수 있습니다여기 또는 사용하여ffmpeg 정규화,한 번에 할 수 있는 것입니다.

동일한 매개변수를 사용한 예:

ffmpeg-normalize input.flac -t -14 -lrt 11 -tp -1 output.flac

관련 정보