如何通过成功保存音频文件来了解AVAudioRecorder何时停止?

时间:2011-11-15 01:55:59

标签: ios avaudiorecorder avaudiosession

通过

将某些内容记录到指定的文件中
[[ AVAudioRecorder alloc] initWithURL:_fileURL settings:settings error:&_error];

一旦停止录音机并成功保存文件,需要立即播放录制的文件。

问题是如何何时可以读取文件并播放它。可以使用哪个代表api?

2 个答案:

答案 0 :(得分:1)

设置AVAudioRecorder实例的代理

AVAudioRecorder* test = [[AVAudioRecorder alloc] initWithURL:_fileURL settings:settings error:&_error];

然后实施

- (void) audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag 
{
    // play the recorded audio here
    if (flag)
    {
        NSError* error;
        AVAudioPlayer* player = [[[AVAudioPlayer alloc] initWithContentsOfURL:[recorder url] error:&error] autorelease];
        if (!error)
        {
            [player play];
        }
    }
}

答案 1 :(得分:0)

您是否尝试过使用

- (void) audioRecorderDidFinishRecording:(AVAudioRecorder *)recorder successfully:(BOOL)flag 
{
    // Play the audio
}