Sunday 25 July 2021

Convert aac to mp3


Converting to MP3 with FFmpeg CLI:



Example to convert an AAC to MP3 with ffmpeg:

ffmpeg -i source.aac -c:a libmp3lame -ac 2 -q:a 2 target.mp3
Link to FFmpeg here