iOS录音后转换mp3

最近公司要求想在嵌入的网页里调用原声的的录音功能,并且吧录音上传到服务器,然后就开始各种趴资料啦,毕竟是小菜嘛。以下就是一些总结吧:
首先当然是js与oc的互相调用了可以参考一下我的上一篇.

这是官方文档AVAudioRecorder Class Reference

关于录音的方法就不详细介绍了可以参考这里。

AVAudioRecorder *audioRecorder=[[AVAudioRecorder alloc]initWithURL:url settings:setting error:&error];

在创建录音时,我们有填写保存路径,在录音结束时会进入代理方法

- (void)audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag;

我们需要在结束时对录音进行转换格式:
github上的Demo这是转为mp3格式和录音的demo,感谢这位大大,里面的转码lame可用。需要我们手动导入lame.h与libmp3lame.a文件,然后引入lame.h就可以进行转换啦

- (void)toMp3
{
// 录音文件路径
    NSString *cafFilePath =[NSTemporaryDirectory() stringByAppendingString:kRecordAudioFile];
// mp3文件名
    NSString *mp3FileName = @"Mp3File";
    mp3FileName = [mp3FileName stringByAppendingString:@".mp3"];
// mp3保存路径
    NSString *mp3FilePath = [[NSHomeDirectory() stringByAppendingFormat:@"/Documents/"] stringByAppendingPathComponent:mp3FileName];
    NSLog(@"mp3FilePath ---- %@", mp3FilePath);
    
    @try {
        int read, write;
        
        FILE *pcm = fopen([cafFilePath cStringUsingEncoding:1], "rb");  //source
        fseek(pcm, 4*1024, SEEK_CUR);                                   //skip file header
        FILE *mp3 = fopen([mp3FilePath cStringUsingEncoding:1], "wb");  //output
        
        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, 11025.0);
        lame_set_VBR(lame, vbr_default);
        lame_init_params(lame);
        
        do {
            read = fread(pcm_buffer, 2*sizeof(short int), PCM_SIZE, pcm);
            if (read == 0)
                write = lame_encode_flush(lame, mp3_buffer, MP3_SIZE);
            else
                write = lame_encode_buffer_interleaved(lame, pcm_buffer, read, mp3_buffer, MP3_SIZE);
            
            fwrite(mp3_buffer, write, 1, mp3);
            
        } while (read != 0);
        
        lame_close(lame);
        fclose(mp3);
        fclose(pcm);
    }
    @catch (NSException *exception) {
        NSLog(@"%@",[exception description]);
    }
    @finally {
      // 转换完成 输出大小
        NSInteger fileSize =  [self getFileSize:[NSHomeDirectory() stringByAppendingFormat:@"/Documents/%@", kRecordAudioFile]];
        NSLog(@"RecordedFile ------- %@", [NSString stringWithFormat:@"%ld kb", fileSize/1024]);
      // 转换成功后的操作
        [self convertMp3Finish];
    }
}

计算文件大小的方法

- (NSInteger) getFileSize:(NSString*) path
{
    NSFileManager * filemanager = [[NSFileManager alloc]init];
    if([filemanager fileExistsAtPath:path]){
        NSDictionary * attributes = [filemanager attributesOfItemAtPath:path error:nil];
        NSNumber *theFileSize;
        if ( (theFileSize = [attributes objectForKey:NSFileSize]) )
            return  [theFileSize intValue];
        else
            return -1;
    }
    else
    {
        return -1;
    }
}

以上基本为参考github上的Demo没啥好提的,感谢这位大神。

然后这里提一下我犯傻的地方,在上传数据的时候我用了下面这个方法:

NSData *data = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:[NSHomeDirectory() stringByAppendingFormat:@"/Documents/%@", @"Mp3File.mp3"]] options:nil error:nil];

我一直以为路径转化为url就可以了 结果是不行的 这个方法是请求网络数据的。本底数据要用下面这个方法。

NSData *data = [[NSData alloc] initWithContentsOfFile:[NSHomeDirectory() stringByAppendingFormat:@"/Documents/%@", @"Mp3File.mp3"]];

嗯 大致就是这样啦。

你可能感兴趣的:(iOS录音后转换mp3)