无法将 m4a 转换为 mp3

无法将 m4a 转换为 mp3

我的音频容器是 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 保留标签但不保留封面艺术。

相关内容