Different music files tend to vary greatly in volume. A normalization option would make listening a much more pleasant experience. Normalization would cause each music file to have the same peak volume as each other. This python resource (https://github.com/slhck/ffmpeg-normalize) would be a good source for such a feature.
using ffmpeg directly is possible via the following command:
ffmpeg -i input.mp3 -af loudnorm=I=-16:LRA=11:TP=-1.5 output.mp3
Documentation loosely implies this is not ideal.
Different music files tend to vary greatly in volume. A normalization option would make listening a much more pleasant experience. Normalization would cause each music file to have the same peak volume as each other. This python resource (https://github.com/slhck/ffmpeg-normalize) would be a good source for such a feature.