5

当我的视图加载时,我通过以下方式设置了一个 AVAudioRecorder 实例:

AVAudioSession *audioSession = [AVAudioSession sharedInstance];
audioSession.delegate = self;
[audioSession setActive:YES error:nil];
[audioSession setCategory:AVAudioSessionCategoryRecord error:nil];

NSString *tempDir = NSTemporaryDirectory();
NSString *soundFilePath = [tempDir stringByAppendingPathComponent:@"sound.m4a"];

NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
NSLog(@"%@", soundFileURL);

NSDictionary *recordSettings = [NSDictionary dictionaryWithObjectsAndKeys:
                                [NSNumber numberWithInt:kAudioFormatMPEG4AAC], AVFormatIDKey,
                                [NSNumber numberWithInt:AVAudioQualityMin], AVEncoderAudioQualityKey,
                                [NSNumber numberWithInt:16], AVEncoderBitRateKey,
                                [NSNumber numberWithInt: 1], AVNumberOfChannelsKey,
                                [NSNumber numberWithFloat:8000.0], AVSampleRateKey,
                                [NSNumber numberWithInt:8], AVLinearPCMBitDepthKey,
                                nil];

NSError *error = nil;

self.recorder = [[AVAudioRecorder alloc]
                 initWithURL:soundFileURL
                 settings:recordSettings
                 error:&error];
self.recorder.delegate = self;

if (error) {
    NSLog(@"error: %@", [error localizedDescription]);
} else {
    [self.recorder prepareToRecord];
}

然后,当用户按下录制按钮时,我会:

- (IBAction)record:(id)sender {
    if (!self.isRecording) {
        self.isRecording = YES;
        [self.recorder record];
        self.recordButton.enabled = NO;
    }
}

然后停止录制/播放:

- (IBAction)stop:(id)sender {
    if (self.isRecording) {
        [self.recorder stop];
        self.recordButton.enabled = YES;
        self.isRecording = NO;
    }

    if (self.isPlaying) {
        [self.player stop];
        self.isPlaying = NO;
        self.playButton.enabled = YES;
    }
}

之后,我希望能够播放录制的内容,所以我执行以下操作:

- (IBAction)play:(id)sender {
    NSError *error = nil;
    self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:self.recorder.url error:&error];
    self.player.delegate = self;

    if (error) {
        NSLog(@"%@", error.localizedDescription);
    } else {
        self.isPlaying = YES;
        [self.player play];
        self.playButton.enabled = NO;
    }
}

但是当我去播放文件时得到OSStatus 错误 -43文件未找到。

顺便说一句,这一切都在设备上运行,在模拟器上尝试实例化记录器或播放器时出现错误,从我看来这是一个模拟器问题。

编辑 1:我解决了 OSStatus 错误 -43 部分,它与编码格式有关,我注释掉了格式并正确记录和播放文件,但我需要以压缩格式记录。有谁知道这个的设置?

编辑 2:我设法找到适用于压缩 AAC 音频的设置。一个 2 分钟的音频文件大小为 256KB,我更新了代码以反映当前状态。感谢所有回答您的帮助的人。

4

4 回答 4

8

由于没有人回答(编辑:现在有)(我对 iOS 中的音频没有太多经验),所以我将对此进行疯狂的尝试,但是......

尝试改变

[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryRecord error:nil];

[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord error:nil];
于 2012-04-23T20:31:21.400 回答
2

AVEncoderBitRateKey不适用于AAC格式编码。所以试试这个代码。

NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];
NSLog(@"%@", soundFileURL);

 NSDictionary *recordSettings = [NSDictionary 
                                        dictionaryWithObjectsAndKeys:
                                        [NSNumber numberWithInt:kAudioFormatMPEG4AAC],
                                        AVFormatIDKey,
                                        [NSNumber numberWithInt: AVAudioQualityMax],
                                        AVEncoderAudioQualityKey,
                                        [NSNumber numberWithInt: 1], 
                                        AVNumberOfChannelsKey,
                                        [NSNumber numberWithFloat:44100.0], 
                                        AVSampleRateKey,
                                        nil];
NSError *error = nil;

self.recorder = [[AVAudioRecorder alloc]
                 initWithURL:soundFileURL
                 settings:recordSettings
                 error:&error];
self.recorder.delegate = self;

if (error) {
    NSLog(@"error: %@", [error localizedDescription]);
    NSLog(@"error: %@", [error description]);
} else {
    [self.recorder prepareToRecord];
} 

编辑1:

未找到 OSStatus 错误 -43 文件不是模拟器问题。这是一个错误日志,显示您的recording settings are not correct和 required encoding format is not supported for the settings you have selected

当您收到此错误时,您的文件将以您给定的格式创建。但它会not initialize your audio recorder to start recording。如果您有任何疑问,请选择与第一个问题相同的设置并录制并尝试播放。由于不支持的设置,它不会录制和播放。

因此,对于 a compressed encoding format,您可以使用我上面在代码中给出的设置。您可以.aac为此设置设置格式。它将采取164KB per 10 seconds to record in aac格式。对于其余格式,您必须尝试弄清楚。

于 2012-04-29T15:09:49.873 回答
0

您可能需要将 AVAudioSession 类别设置回播放模式:

NSError *_error = nil;
[[AVAudioSession sharedInstance] setCategory: AVAudioSessionCategoryPlayback error:&_error];

if (_error) {
    // handle error here
}

这也应该避免在打开静音开关的情况下无法播放音频的问题。

于 2012-04-23T20:33:23.847 回答
0

好的试试这个:

NSURL *soundFileURL为您的班级设置全局,以便您可以在班级的任何地方访问它,并以与现在相同的方式进行设置(除了它会soundFileURL = [NSURL fileURLWithPath:soundFilePath];代替NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];.

然后改变这个

self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:self.recorder.url error:&error];

对此

self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL error:&error];
于 2012-04-23T22:04:31.543 回答