ubuntu下把微信的amr音频格式转换为 mp3格式

来源:互联网 发布:企业财务部数据流程图 编辑:程序博客网 时间:2024/05/04 16:58

做一个微信微拍的系统,从微信的音频中读取回来的格式是amr,但是在苹果系统中不能正常的播放,需要转换为mp3格式

在终端运行如下命令

1、sudo apt-get install lame

2、sudo apt-get install sox

3、sudo apt-get install libsox-fmt-mp3

其中3的命令非常重要,否则会提示“sox FAIL formats: no handler for file extension `mp3'”


0 0