How to increase the loudness of an audio track using ffmpeg on Linux.

The FFmpeg utility on Linux is very useful for encoding to different file formats, but it can also be used to tweak audio files. The example below will increase the loudness of an audio track. ┌──[[email protected]]─[~/Music] └──╼ ╼ $ ffmpeg -i Forest_Bg_Night_01.wav -c:a libvorbis -b:8 64k -af loudnorm=I=-16:LRA=11:TP=-1.0 forest.ogg┌──[[email protected]]─[~/Music] └──╼ ╼ $ ffmpeg -i Forest_Bg_Night_01.wav … Read more