iOS音频转换的三方

传送门:https://github.com/Jonzzs/GZZAudioConverter

pod 'GZZAudioConverter'

Useage

// 例如:转换为 MP3
dispatch_async(dispatch_queue_create(NULL, DISPATCH_QUEUE_SERIAL), ^ {
    GZZAudioConverter *converter = [[GZZAudioConverter alloc] init];
    converter.inputFile = @"/var/mobile/Containers/Data/Application/xxx/Documents/xxx.wav";
    converter.outputFile = @"/var/mobile/Containers/Data/Application/xxx/Documents/xxx.mp3";
    converter.outputFileType = kAudioFileMP3Type;
    converter.outputFormatID = kAudioFormatMPEGLayer3;
    BOOL success = [converter convert];
    dispatch_async(dispatch_get_main_queue(), ^ {
        if (success) {
            NSLog(@"转换成功");
        } else {
            NSLog(@"转换失败");
        }
    });
});

Methods

注意:文件格式和数据格式要根据你要转换的音频格式来设置,不同文件格式对应的数据格式是不同的,这是关于文件格式和数据格式的 说明文档 。

// 采样率
converter.outputSampleRate = 44100;

// 声道数
converter.outputNumberChannels = 2;

// 位深
converter.outputBitDepth = BitDepth_16;

// 文件格式
converter.outputFileType = kAudioFileWAVEType;

// 数据格式
converter.outputFormatID = kAudioFormatLinearPCM;


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值