AVAudioRecorder不保存文件

时间:2013-11-17 20:07:18

标签: ios objective-c avaudioplayer avaudiorecorder file-not-found

我现在正在努力使用AVAudioRecorder(和播放器)。我有一个应用程序,其中有三个简单的按钮,用于记录/播放/停止呼叫,我正在使用AVAudioRecorder和AVAudioPlayer来录制和播放声音。现在,当我测试应用程序时(在iPhone和模拟器中)我在尝试播放我刚刚录制的内容时获得了Cocoa 260 - 文件未找到异常。当打印到AVAudioRecorder的文件URL的路径时,我得到一个文件夹内的文件的URL,该文件夹在我的计算机上不存在(在模拟器上运行。我的代码如下所示:

- (void)viewDidLoad
{
    [super viewDidLoad];

    _plyBtn.enabled = NO;
    _stopBtn.enabled = NO;

    NSArray *dirPaths;
    NSString *docsDir;

    dirPaths = NSSearchPathForDirectoriesInDomains(NSDocumentationDirectory, NSUserDomainMask, YES);
    docsDir = dirPaths[0];

    NSString *soundFilePath = [docsDir stringByAppendingPathComponent:@"test.caf"];

    NSURL *soundFileURL = [NSURL fileURLWithPath:soundFilePath];

    NSDictionary *recordSettings = [NSDictionary dictionaryWithObjectsAndKeys:
                                    [NSNumber numberWithInt:AVAudioQualityMin],
                                    AVEncoderAudioQualityKey,
                                    [NSNumber numberWithInt:16],
                                    AVEncoderBitRateKey,
                                    [NSNumber numberWithInt:2],
                                    AVNumberOfChannelsKey,
                                    [NSNumber numberWithFloat:44100.0],
                                    AVSampleRateKey,
                                    nil];

    NSError *error = nil;
    _rec = [[AVAudioRecorder alloc] initWithURL:soundFileURL settings:recordSettings error:&error];

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

    NSLog(@"path: %@", soundFileURL);
}

我不知道为什么底部的NSLog打印出无效的文件路径...就像我说的那样,录制时我没有收到错误,但是在尝试播放我之后录制的音频时。这是我的游戏功能:

- (IBAction)playAudio:(id)sender {
    if(!_rec.recording){
        _recBtn.enabled = NO;
        _stopBtn.enabled = YES;

        NSError *error1;
        NSError *error2;

        NSData *soundFile = [[NSData alloc] initWithContentsOfURL:_rec.url options:NSDataReadingMappedIfSafe error:&error1];
        _ply = [[AVAudioPlayer alloc] initWithData:soundFile error:&error2];

        //_ply = [[AVAudioPlayer alloc] initWithContentsOfURL:_rec.url error:&error];

        _ply.delegate = self;

        if(error1){
            NSLog(@"error: %@", [error1 localizedDescription]);
        } else if (error2) {
            NSLog(@"error: %@", [error2 localizedDescription]);
        } else {
            [_ply play];
        }
    }
}

这似乎不起作用:

- (IBAction)recordAudio:(id)sender {
    NSLog(@"recordAudio called");
    _plyBtn.enabled = NO;
    _stopBtn.enabled = YES;
    [_rec record];
}

感谢您提前提供任何帮助:)

1 个答案:

答案 0 :(得分:3)

也许录制路径无效。

NSDocumentationDirectory ...不应该是NSDocumentDirectory吗?