I need to convert my mp3 from constant or variable bitrate to average bitrate. how can I do this?
I've used
-b 250k -minratre 50kb -maxrate 260kb
But it goes constant bitrate when I run the command.
I need to convert my mp3 from constant or variable bitrate to average bitrate. how can I do this?
I've used
-b 250k -minratre 50kb -maxrate 260kb
But it goes constant bitrate when I run the command.
You can use the -abr
libmp3lame option:
ffmpeg -i input -c:a libmp3lame -abr 1 -b:a 128k output.mp3
-q:a 0
will set bitrate to average 220-260kbps
if you use -b
(probably need to use -b:a
) then it will be constant.