把ios录音转换为mp3格式_嘉兴APP开发_嘉兴APP设计制作开发_嘉兴APP制作_嘉兴手机APP制作开发_嘉兴APP软件开发_嘉兴最专业的APP开发公司-嘉兴雷鸟软件科技有限公司 
雷鸟科技,提供 嘉兴app制作嘉兴app开发嘉兴iOS开发嘉兴Android开发嘉兴app设计嘉兴手机app制作服务.  服务热线:13396739763 / 13136206268
您的位置:首页 > APP资讯 >

把ios录音转换为mp3格式

NSMutableDictionary * recordSetting = [NSMutableDictionary dictionary];

[recordSetting setValue :[NSNumber numberWithInt:kAudioFormatLinearPCM] forKey:AVFormatIDKey];//

[recordSetting setValue:[NSNumber numberWithFloat:8000.0] forKey:AVSampleRateKey];//采样率
[recordSetting setValue:[NSNumber numberWithInt: 2] forKey:AVNumberOfChannelsKey];//声音通道,这里必须为双通道
 [recordSetting setValue:[NSNumber numberWithInt:AVAudioQualityLow] forKey:AVEncoderAudioQualityKey];//音频质量

在转换mp3端的代码为:

NSString *cafFilePath = cafFilePathName;    //caf文件路径

NSString *mp3FilePath = mp3FilePathName;//存储mp3文件的路径

NSFileManager* fileManager=[NSFileManager defaultManager];


    if([fileManager removeItemAtPath:mp3FilePath error:nil])
    {
        NSLog(@"删除");
    }

    @try {

        int read, write;

        FILE *pcm = fopen([cafFilePath cStringUsingEncoding:1], "rb");  //source 被转换的音频文件位置

        if(pcm == NULL)
        {
            NSLog(@"file not found");
        }
        else
        {

            fseek(pcm, 4*1024, SEEK_CUR);                                   //skip file header

            FILE *mp3 = fopen([mp3FilePath cStringUsingEncoding:1], "wb");  //output 输出生成的Mp3文件位置

            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_num_channels(lame,1);//设置1为单通道,默认为2双通道

            lame_set_in_samplerate(lame, 8000.0);//11025.0

            //lame_set_VBR(lame, vbr_default);

            lame_set_brate(lame,8);

            lame_set_mode(lame,3);

            lame_set_quality(lame,2); /* 2=high 5 = medium 7=low 音质*/

            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);
            return YES;
        }
        return NO;
    }
    @catch (NSException *exception) {
        NSLog(@"%@",[exception description]);
        return NO;
    }
    @finally {
        NSLog(@"执行完成");
    }

 

 嘉兴雷鸟软件科技有限公司
 13396739763 13136206268 (节假日均可拨打) 0573-83698396 (周一至周六可拨打)


售前咨询QQ:点击这里给我发消息    点击这里给我发消息


技术支持QQ:点击这里给我发消息

所在地址: 浙江省嘉兴市城南路1539号创业大厦


网址:app.lei-niao.com

嘉兴APP公司

嘉兴APP公司

服务内容



浙公网安备 33040202000168号