需首先引用lamp.h,libmp3lame.a- (void)audio_PCMtoMP3:(NSString *) cafFilePath ToMp3File:(NSString *) mp3FilePath{ NSFileManager* fileManager=[NSFileManag...
分类:
其他好文 时间:
2014-08-13 14:31:16
阅读次数:
205
ffmpeg -codecs | grep mp3可以查看ffmpeg是否把mp3编解码模块编译进去了。libmp3lame is the mp3 encoder for ffmpeg. It needs to be enabled during configure stage of the bui...
分类:
其他好文 时间:
2014-06-28 21:02:23
阅读次数:
258
命令:ffmpeg -i infile -ab 128 -acodec libmp3lame
-ac 1 -ar 22050 -r 29.97 -qscale 6 -y
outfile说明:infile:要转换的文件路径outfile:转换到的文件路径参考:http://ferreousbox.it...
分类:
其他好文 时间:
2014-06-16 09:21:35
阅读次数:
221
一、第三方库的编译与安装
1. libfaac
# tar -zxvf faac-1.28.tar.gz
# cd faac-1.28
# ./configure --prefix=/opt/YOUR_SDK_INSTALL_DIRECTORY --enable-static --disable-shared
# make; make install
2. libmp3lame...
分类:
其他好文 时间:
2014-05-10 10:23:00
阅读次数:
401