录音
参考:AVAudioRecorder Class Reference
使用
- 包含框架AVFoundation.framework
- 使用AVAudioRecorder录音机控制类
属性
@property(readonly, getter=isRecording) BOOL recording; 是否正在录音
@property(readonly) NSURL *url 录音要存放的地址
@property(readonly) NSDictionary *settings 录音文件设置
@property(readonly) NSTimeInterval currentTime 录音时长,仅在录音状态可用
@property(readonly) NSTimeInterval deviceCurrentTime 输入设置的时间长度,此属性一直可访问
@property(getter=isMeteringEnabled) BOOL meteringEnabled; 是否启用录音测量,启用录音测量可以获得录音分贝等数据信息
@property(nonatomic, copy) NSArray *channelAssignments 当前录音的通道
对象方法
- (instancetype)initWithURL:(NSURL *)url settings:(NSDictionary *)settings error:(NSError **)outError
录音机对象初始化,url必须是本地,settings是录音格式、编码等设置
- (BOOL)prepareToRecord
准备录音,用于创建缓冲区,如果不手动调用,在调用record录音时也会自动调用
- (BOOL)record
开始录音
- (BOOL)recordAtTime:(NSTimeInterval)time
在指定的时间开始录音,一般用于录音暂停再恢复录音
- (BOOL)recordForDuration:(NSTimeInterval) duration
按指定的时长开始录音
- (BOOL)recordAtTime:(NSTimeInterval)time forDuration:(NSTimeInterval) duration
在指定的时间开始录音,并指定录音时长
- (void)pause;
暂停录音
- (void)stop;
停止录音
- (BOOL)deleteRecording;
删除录音,删除录音时录音机必须处于停止状态
- (void)updateMeters;
更新测量数据,只有meteringEnabled为YES此方法才可用
- (float)peakPowerForChannel:(NSUInteger)channelNumber;
指定通道的测量峰值,只有调用完updateMeters才有值
- (float)averagePowerForChannel:(NSUInteger)channelNumber
指定通道的测量平均值,注意只有调用完updateMeters才有值
代理方法
- (void)audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag 完成录音
- (void)audioRecorderEncodeErrorDidOccur:(AVAudioRecorder *)recorder error:(NSError *)error 录音编码发生错误
示例
-
下面实现一个基本的的录音,包括开始录音、停止、播放。
- 设置音频会话类型为AVAudioSessionCategoryPlayAndRecord,因为程序中牵扯到录音和播放操作。
- 创建录音机AVAudioRecorder,指定录音保存的路径并且设置录音属性,注意对于一般的录音文件要求的采样率、位数并不高,需要适当设置以保证录音文件的大小和效果。
- 创建音频播放器AVAudioPlayer,用于在录音完成之后播放录音。
代码:
//
// ViewController.m
// LTYAudioRecord
//
// Created by Rachel on 16/4/10.
// Copyright © 2016年 AYuan. All rights reserved.
//
#import "ViewController.h"
#import <AVFoundation/AVFoundation.h>
@interface ViewController (){
NSString *filePath;
}
@property (nonatomic, strong) AVAudioSession *session;
@property (nonatomic, strong) AVAudioRecorder *recorder;//录音器
@property (nonatomic, strong) AVAudioPlayer *player; //播放器
@property (nonatomic, strong) NSURL *recordFileUrl; //文件地址
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
}
- (IBAction)startRecord:(id)sender {
NSLog(@"开始录音");
AVAudioSession *session =[AVAudioSession sharedInstance];
NSError *sessionError;
[session setCategory:AVAudioSessionCategoryPlayAndRecord error:&sessionError];
if (session == nil) {
NSLog(@"Error creating session: %@",[sessionError description]);
}else{
[session setActive:YES error:nil];
}
self.session = session;
//1.获取沙盒地址
NSString *path = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
filePath = [path stringByAppendingString:@"/test.wav"];
//2.获取文件路径(这个url只能在录音之前就确定好)
self.recordFileUrl = [NSURL fileURLWithPath:filePath];
//设置参数
NSDictionary *recordSetting = [[NSDictionary alloc] initWithObjectsAndKeys:
//采样率 8000/11025/22050/44100/96000(影响音频的质量)
[NSNumber numberWithFloat: 8000.0],AVSampleRateKey,
// 音频格式
[NSNumber numberWithInt: kAudioFormatLinearPCM],AVFormatIDKey,
//采样位数 8、16、24、32 默认为16
[NSNumber numberWithInt:16],AVLinearPCMBitDepthKey,
// 音频通道数 1 或 2
[NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
//录音质量
[NSNumber numberWithInt:AVAudioQualityHigh],AVEncoderAudioQualityKey,
nil];
_recorder = [[AVAudioRecorder alloc] initWithURL:self.recordFileUrl settings:recordSetting error:nil];
if (_recorder) {
_recorder.meteringEnabled = YES;
[_recorder prepareToRecord];
[_recorder record];
}else{
NSLog(@"音频格式和文件存储格式不匹配,无法初始化Recorder");
}
}
- (IBAction)stopRecord:(id)sender {
NSLog(@"停止录音");
if ([self.recorder isRecording]) {
[self.recorder stop];
}
}
- (IBAction)PlayRecord:(id)sender {
if ([self.player isPlaying]) return;
self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:self.recordFileUrl error:nil];
[self.session setCategory:AVAudioSessionCategoryPlayback error:nil];
[self.player play];
}
@end
网友评论