思路分享:
IOS无法直接录制mp3文件,先录制苹果支持的格式(caf、aac等),再借助第三方开源框架库 lame 进行格式转换。
具体实现
1、导入 lame 静态库;(https://download.csdn.net/download/kiusoft/10721707)
2、引用头文件:
a、#import <AVFoundation/AVFoundation.h>
b、#import "lame.h";
3、核心转换:
- // 转换为 mp3 格式的重要代码
- - (void)toMp3:(NSString *)fName
- {
- NSString *recordFilePath = [recorderPath stringByAppendingPathComponent:fName];
- NSArray *tempFilePathArray = [fName componentsSeparatedByString:@"."];
- NSString *mp3FileName = [tempFilePathArray[0] stringByAppendingString:@".mp3"];
- NSString *mp3FilePath = [mp3Path stringByAppendingPathComponent:mp3FileName];
- // 开始转换
- int read, write;
- // 转换的源文件位置
- FILE *pcm = fopen([recordFilePath cStringUsingEncoding:1], "rb");
- // 转换后保存的位置
- FILE *mp3 = fopen([mp3FilePath cStringUsingEncoding:1], "wb");
- const int PCM_SIZE = 8192;
- const int MP3_SIZE = 8192;
- short int pcm_buffer[PCM_SIZE*2];
- unsigned char mp3_buffer[MP3_SIZE];
- // 创建这个工具类
- lame_t lame = lame_init();
- lame_set_in_samplerate(lame, 44100);
- lame_set_VBR(lame, vbr_default);
- lame_init_params(lame);
- //doWhile 循环
- do {
- read = fread(pcm_buffer, 2*sizeof(short int), PCM_SIZE, pcm);
- if (read == 0){
- //这里面的代码会在最后调用 只会调用一次
- write = lame_encode_flush(lame, mp3_buffer, MP3_SIZE);
- //NSLog(@"read0%d",write);
- }
- else{
- //这个 write 是写入文件的长度 在此区域内会一直调用此内中的代码 一直再压缩 mp3文件的大小,直到不满足条件才退出
- write = lame_encode_buffer_interleaved(lame, pcm_buffer, read, mp3_buffer, MP3_SIZE);
- //写入文件 前面第一个参数是要写入的块 然后是写入数据的长度 声道 保存地址
- fwrite(mp3_buffer, write, 1, mp3);
- //NSLog(@"read%d",write);
- }
- } while (read != 0);
- lame_close(lame);
- fclose(mp3);
- fclose(pcm);
- }