实现录音功能可以使用AVAudioRecorder类,我就不废话了,直接上代码:
#import <AVFoundation/AVFoundation.h>
@interface ViewController () <AVAudioRecorderDelegate>
/**
* 录音器
*/
@property (nonatomic, strong) AVAudioRecorder *recoder;
/**
* 定时刷新器
*/
@property (nonatomic, strong) CADisplayLink *displayLink;
@end
@implementation ViewController
#pragma mark - 懒加载
- (CADisplayLink *)displayLink {
if (_displayLink == nil) {
_displayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(meteringRecorder)];
}
return_displayLink;
}
- (void)viewDidLoad {
[super viewDidLoad];
// 设置录音文件存储路径
NSString*path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
NSString*filePath = [path stringByAppendingPathComponent:@"recorder.caf"];
NSURL *url = [NSURL fileURLWithPath:filePath];
// 设置录音格式信息
NSMutableDictionary*settingsDict = [NSMutableDictionarydictionary];
// 音频格式
settingsDict[AVFormatIDKey] =@(kAudioFormatAppleIMA4);
// 音频采样率
settingsDict[AVSampleRateKey] =@(8000.0);
// 音频通道数
settingsDict[AVNumberOfChannelsKey] =@(1);
// 线性音频的位深度
settingsDict[AVLinearPCMBitDepthKey] =@(8);
// 初始化录音器
self.recoder = [[AVAudioRecorder alloc] initWithURL:url settings:settingsDict
error:nil];
// 设置代理
self.recoder.delegate = self;
// 允许监听录音分贝
self.recoder.meteringEnabled= YES;
}
/**
* 开始录音
*/
- (IBAction)start {
// 准备录音(会生成一个无效的目标文件准备开始录音)
if([self.recoderprepareToRecord]) {
// 开始录音
[self.recoder record];
// 实时监听分贝改变(根据分贝可以判断是否需要录音)
[self.displayLinkaddToRunLoop:[NSRunLoopmainRunLoop] forMode:NSRunLoopCommonModes];
}
}
- (void)meteringRecorder {
// 刷新录音接收分贝
[self.recoderupdateMeters];
// 输出平均分贝
NSLog(@"%f", [self.recoderaveragePowerForChannel:1]);
}
/**
* 停止录音
*/
- (IBAction)stop {
// 停止录音
[self.displayLinkinvalidate];
[self.recoder stop];
}
#pragma mark - AVAudioRecorder代理方法
- (void)audioRecorderBeginInterruption:(AVAudioRecorder *)recorder {
NSLog(@"开始被打断");
[self.displayLinkinvalidate];
}
@end