iPhone AVAudioRecorder 进入后台后暂停问题

Posted

技术标签:

【中文标题】iPhone AVAudioRecorder 进入后台后暂停问题【英文标题】:iPhone AVAudioRecorder pause problem after entering background 【发布时间】:2011-07-07 16:31:26 【问题描述】:

我在进入后台后暂停 AVAudioRecorder 时遇到问题。基本上,它是这样的(_recorder 是我的 AVAudioRecorder 实例):

    开始录制:

    [_recorder record];
    

    按下设备上的主页按钮。

    因为我已经设置了通知这种情况的观察者(在 viewDidLoad 中),所以我的自定义方法 applicationDidEnterBackground 会触发。

    在 applicationDidEnterBackground 我做:

    [_recorder pause];
    

    现在,当我点击应用程序图标时,将应用程序带到前台,立即连续录制,无需执行任何操作。它甚至更奇怪,因为检查属性:

    _recorder.recording == YES
    

返回编号。

我有一个函数,NSTimer 每 0.1 秒调用一次(刷新 UI 等),在那个函数中我有这个:

if(_recorder.recording) 
    NSLog(@"recording");

else 
    NSLog(@"not recording");
    NSLog(@"time: %f", _recorder.currentTime);
 

它在控制台上打印:

    ...
    not recording
    time: 9.404082
    not recording
    not recording
    time: 9.473197
    not recording
    time: 9.531179
    not recording
    time: 9.629206
    not recording
    time: 9.728435
    ...

因此,如您所见,录音机的 currentTime 一直在增加,并且正在录制音频。

有什么办法解决这个问题吗?

【问题讨论】:

【参考方案1】:

您应该添加以下代码:

<key>UIBackgroundModes</key>
<array>
    <string>audio</string>
</array>

到 Info.plist。这将导致后台模式响应管理音频会话,因此您可以手动暂停和恢复录制。

【讨论】:

以上是关于iPhone AVAudioRecorder 进入后台后暂停问题的主要内容,如果未能解决你的问题,请参考以下文章

iPhone AVAudioRecorder,AudioQueueServices,检测到声音时如何自动录制音频

iPhone SDK AVAudioRecorder 录制前的延迟

在使用 iOS 7 的 iPhone 5s 上写入 /dev/null 时,AVAudioRecorder 停止工作

AVAudioRecorder 不保存文件

AVAudioRecorder - 最后裁剪/修剪录音

AVAudioRecorder currentTime 给出错误值