I came across this answer
How can I normalize audio using ffmpeg?
However this involves transcoding the audio stream. I know that programs like
can adjust the volume losslessly, that is to say without transcoding the file. Can FFmpeg do this?
I came across this answer
How can I normalize audio using ffmpeg?
However this involves transcoding the audio stream. I know that programs like
can adjust the volume losslessly, that is to say without transcoding the file. Can FFmpeg do this?
No, ffmpeg has no support for MP3Gain or AACGain at the moment.
These tools work by setting metadata in the actual bitstreams, and ffmpeg can only copy the bitstreams as-is or convert them (with a bitstream filter). I'm not sure of the software architecture behind it, but I could imagine it'd be hard to implement something like that.