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

原文:http://blog.csdn.net/emtit2008/article/details/45334163


做一个微信微拍的系统,从微信的音频中读取回来的格式是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'”



sox ./Files/1.amr ./Files/1.amr.mp3



你可能感兴趣的:(ubuntu下把微信的amr音频格式转换为 mp3格式)