用的是这个代码
ffmpeg -i input.mp3 -q:a 5 output.mp3
解决:要么是 File 自动的播放器太差,要么是 ffmpeg 转换音频时有哪参数不对(结果是和两者都有关系),网络上找不到答案,在 GPT 问到了兼容性比较好的代码
ffmpeg -i input.mp3 -ar 44100 output.mp3
其中 -ar 44100 参数的意思是,Sets the audio sampling frequency to 44100 Hz, which is standard for audio CDs and widely supported. 不得不说,苹果 File 的音频兼容性真的堪忧
希望可以帮助到一些人