我的音频容器是 M4A,但编解码器是 AAC。当我尝试将其转换为 MP3 时,出现错误:
afconvert ~/Desktop/src.m4a -f MPG3 -d .mp3 ~/Desktop/dst.mp3
Error: ExtAudioFileSetProperty ('cfmt') failed ('fmt?')
答案1
你能只使用 ffmpeg 吗?
ffmpeg -i file.m4a -aq 2 file.mp3
-aq 2 对应于 lame 中的 -V2。ffmpeg 保留标签但不保留封面艺术。