公司项目中涉及到语音录制的功能,在录音格式方面遇到一些小问题现在拿出来与大家分享一下。
众所周知,iOS 音频录制是不支持AMR格式的。但 Android 好像是默认是AMR格式的。两边格式不同必然有一方做出妥协的。这里只简单介绍一下iOS 格式转码的方法。
1、音频录制简介
在AVFoundation
框架中AVAudioRecorder
类专门处理录音操作,它支持多种音频格式。这里以AVAudioRecorder
录制音频,AVAudioPlayer
播放音频。 在创建录音时除了指定路径外还必须指定录音设置信息,因为录音时必须知道录音文件的格式、采样率、通道数、每个采样点的位数等信息,但是也并不是所有的信息都必须设置,通常只需要几个常用设置。关于录音设置详见帮助文档中的“AV Foundation Audio Settings Constants”。
2、相关库导入
查了好久 转码好使的就是opencore-amr 编译的静态库这里已经为大家整理好了。
点击这里下载
打开是酱紫滴!导入项目中就OK了。
新项目有BUG!!!
开发遇到BUG很正常,请详细阅读报错信息。我只遇到这一个错先给大家展示出来。
选中你的Targets 选中Build Setting 点击搜索框搜索BitCode 改成No 就OK了。
另外还需要导入两个库
#import <AVFoundation/AVFoundation.h>
#import <AudioToolbox/AudioToolbox.h>
引入头文件
#import "VoiceConverter.h"
3、音频录制
- 开始录音
//根据当前时间生成文件名
self.recordFileName = [ViewController GetCurrentTimeString];
//获取路径
NSString *documentsDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSInteger timeStamp = [[NSDate date] timeIntervalSince1970] * 1000;
self.recordFilePath = [documentsDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@.wav", @(timeStamp)]];
NSDictionary *recordSetting = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSNumber numberWithFloat: 8000.0],AVSampleRateKey, //采样率
[NSNumber numberWithInt: kAudioFormatLinearPCM],AVFormatIDKey,
[NSNumber numberWithInt:16],AVLinearPCMBitDepthKey,//采样位数 默认 16
[NSNumber numberWithInt: 1], AVNumberOfChannelsKey,//通道的数目
// [NSNumber numberWithBool:NO],AVLinearPCMIsFloatKey,//采样信号是整数还是浮点数
// [NSNumber numberWithInt: AVAudioQualityMedium],AVEncoderAudioQualityKey,//音频编码质量
nil];
//初始化录音
self.recorder = [[AVAudioRecorder alloc]initWithURL:[NSURL fileURLWithPath:self.recordFilePath]
settings:recordSetting
error:nil];
//准备录音
if ([self.recorder prepareToRecord]){
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayAndRecord error:nil];
[[AVAudioSession sharedInstance] setActive:YES error:nil];
//开始录音
if ([self.recorder record]){
//UI操作
}
}else{
NSLog(@"音频格式出错,Recorder---%@",self.recorder);
}
- 停止录音
if (self.recorder.isRecording){
//停止录音
[self.recorder stop];
}
- 生成当前时间字符串
+(NSString*)GetCurrentTimeString{
NSDateFormatter *dateformat = [[NSDateFormatter alloc]init];
[dateformat setDateFormat:@"yyyyMMddHHmmss"];
return [dateformat stringFromDate:[NSDate date]];
}
- 生成文件路径
+(NSString*)GetPathByFileName:(NSString *)_fileName ofType:(NSString *)_type{
NSString *directory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)objectAtIndex:0];
NSString* fileDirectory = [[[directory stringByAppendingPathComponent:_fileName]
stringByAppendingPathExtension:_type]
stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
return fileDirectory;
}
4、格式转换
- WAV转AMR
NSString *amrPath = [ViewController GetPathByFileName:self.recordFileName ofType:@"amr"];
if ([VoiceConverter ConvertAmrToWav:self.recordFilePath wavSavePath:amrPath]) {
//UI操作 播放音频
}else{
NSLog(@"wav转amr失败");
}
- AMR转WAV
NSString *convertedPath = [ViewController GetPathByFileName:[self.recordFileName stringByAppendingString:@"_AmrToWav"] ofType:@"wav"];
if ([VoiceConverter ConvertAmrToWav:amrPath wavSavePath:convertedPath]){
//UI操作 播放音频
}else{
NSLog(@"amr转wav 转换失败");
}
5、总结
由于时间关系暂时写这么多 ,后面上传会给大家补上。(未完待续。。。。)