I am using the ffmpeg-normalize tool to normalize the relative volume of some AAC (extension .m4a) audio files. Often the output file is much larger than the input one, but I thought ffmpeg by default figured out an appropriate output bitrate based on the input bitrate.
Here's a file before using ffmpeg, and here it is afterwards. In this example, the former is 125kbps, and the latter is 280kbps. The second file was generated with
ffmpeg-normalize file1.m4a -t 32 -f -c:a libfdk_aac -o file2.m4a
Any idea why the bitrate is so enlarged after processing with ffmpeg and ffmpeg-normalize?