1.AVAudioRecorder简介
AVAudioRecorder同其他用于播放音频的兄弟类一样,构建于Audio Queue Services之上,是一个功能强大且简单易用的OC接口。
2创建AVAudioRecorder
//创建AVAudioRecoreder实例需要为其提供数据的一些信息,分别是:
//1.用于表示音频流写入文件的本地文件URL.
//2.包含用于配置录音会话键值信息的NSDictionary对象。
//3.用于捕捉初始化阶段各种错误的NSError指针。
NSString * directory ;
NSString *filePath =[directory stringByAppendingString:@"voice.m4a"];
NSURL * url = [NSURL fileURLWithPath:filePath];
NSDictionary * settings =@{AVFormatIDKey:@(kAudioFormatMPEG4AAC_HE),AVSampleRateKey:@22050.f,AVNumberOfChannelsKey:@1};
NSError * error ;
AVAudioRecorder * recorder =[[AVAudioRecorder alloc] initWithURL:url settings:settings error:&error];
if (recorder) {
[recorder prepareToRecord
];
}else {
NSLog(@"初始化失败了.");
}
//调用prepareToRecord执行底层Audio Queue初始化的必要过程。该方法还在URL指定的位置创建一个文件,将录制启动时的延时降到最小。
关于settings 字典key的解读。
1>音频格式
/*AVFormatKey键定义了写入内容的音频格式,下面的常量都是音频格式所支持的值:
kAudioFormatlinearPCM.. 未压缩线性
kAudioFormatMPEG4AAC AAC编码的压缩格式
另外几个不常用不写了
指定kAudioFormatlinearPCM会将未压缩的音频流写入文件中。格式保真度高,文件较大。选择kAudioFormatMPEG4AAC压缩格式会显著减小文件。还能保证高质量的音频内容。
注意:指定的音频格式一定要和URL参数定义的文件类型兼容。比如,录制一个名为test.wav的文件,隐含的意思就是录制必须满足wav格式,即低字节序,linearPCM,为AVFormatIDKey值指定除kAudioFormatlinearPCM之外的值都会导致错误。
//
2>采样率
AVSampleRateKey用于定义录音器的采样率。开发者一般使用8000、16000、22050、44100.HZ 。
3>通道数
AVNumberOfChanelsKey用于定义记录音频内容的通道数。指定默认值1意味着单声道录制。2为立体音录制。一般使用单声道。
3.控制录音过程
配置音频会话。
AVAudioSession *ssion =[AVAudioSession sharedInstance];
NSError *error ;
//这里是playAndRecord
if (![ssion setCategory:AVAudioSessionCategoryPlayAndRecord error:&error]) {
NSLog(@"Category Error:%@",[error localizedDescription]);
}
if (![ssion setActive:YES error:&error]) {
NSLog(@"Activation Error:%@",[error localizedDescription]);
}
实现录音功能
在该功能类头文件中。
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
typedef void(^THRecordingStopCompletionHandler)(BOOL);
typedef void(^THRecordingSaveCompletionHandler)(BOOL,id);
@interface THRecorderManager : NSObject
@property(nonatomic,readonly)NSString * formattedCurrentTime;
-(BOOL)record;
-(void)pause;
//停止录音
-(void)stopWithCompletionHandler:(THRecordingStopCompletionHandler)handler;
//保存录音
-(void)saveRecordingWithName:(NSString *)name completionHandler:(THRecordingSaveCompletionHandler)handler;
@end
.m实现文件中
#import "THRecorderManager.h"
#import <AVFoundation/AVFoundation.h>
@interface THRecorderManager ()<AVAudioRecorderDelegate>
@property(nonatomic,strong)AVAudioPlayer * player;
@property(nonatomic,strong)AVAudioRecorder * recorder;
@property(nonatomic,copy)THRecordingStopCompletionHandler completionHandler;
@end
@implementation THRecorderManager
-(instancetype)init {
self =[super init];
if (self) {
NSString *tmpDir =NSTemporaryDirectory();
NSString *filePath =[tmpDir stringByAppendingPathComponent:@"memo.caf"];
NSURL * fileURl =[NSURL fileURLWithPath:filePath];
NSDictionary * settings =@{AVFormatIDKey:@(kAudioFormatAppleIMA4),AVSampleRateKey:@44110.f,AVNumberOfChannelsKey:@1,AVEncoderBitDepthHintKey:@16,AVEncoderAudioQualityKey:@(AVAudioQualityMedium)};
//初始化一个临时目录路径 文件名为caf.(Core Audio Format)最好的容器格式,和内容无关支持任何音频格式。
//这里设置为kAudioFormatAppleIMA4 音频格式 采样率为44.1KHz.位深为16位。单声道录制。
NSError * error ;
self.recorder =[[AVAudioRecorder alloc] initWithURL:fileURl settings:settings error:&error];
if (self.recorder) {
[self.recorder prepareToRecord];
self.recorder.delegate = self;
}else {
NSLog(@"Error==%@",[error localizedDescription]);
}
}
return self;
}
-(BOOL)record {
return [self.recorder record];
}
-(void)pause {
[self.recorder pause];
}
-(void)stopWithCompletionHandler:(THRecordingStopCompletionHandler)handler {
self.completionHandler = handler;
[self.recorder stop];
}
//结束录制的代理
-(void)audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag {
if (self.completionHandler) {
self.completionHandler(flag);
}
}
//录制结束保存本地
-(void)saveRecordingWithName:(NSString *)name completionHandler:(THRecordingSaveCompletionHandler)handler {
NSTimeInterval timestamp =[NSDate timeIntervalSinceReferenceDate];
NSString * fileName =[NSString stringWithFormat:@"%@-%f.caf",name,timestamp];
NSString *docsDir =[self documentDirectory];
NSString *destPath=[docsDir stringByAppendingPathComponent:fileName];
//录音的内容位置
NSURL * srcURl =self.recorder.url;
//新存放地址
NSURL * destURl =[NSURL fileURLWithPath:destPath];
NSError * error ;
BOOL success =[[NSFileManager defaultManager] copyItemAtURL:srcURl toURL:destURl error:&error];
if (success) {
handler(YES,name);
}else {
handler(NO,error);
}
}
-(NSString *)documentDirectory {
NSArray * paths =NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
return [paths objectAtIndex:0];
}
@end