赞
踩
使用 ffmpeg 转换 mp4 文件为 mp3 格式的命令为:
ffmpeg -i input.mp4 -q:a 0 -map a output.mp3
其中,-i 指定输入文件名,-q:a 0 设置音频质量为最高,-map a 指定只转换音频部分。