gpt4 book ai didi

ios - AVAudioPlayer 从后台恢复但暂停其他应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:05 48 4
gpt4 key购买 nike

我的音频如我所料开始和停止。当我在应用程序后台运行时,音乐会继续播放,如果我激活 Siri,音乐会中断,但随后会按我的预期继续播放。

我遇到的问题是,如果我的声音在后台播放,并且我启动了 Apple Music 或 Podcast,音频会混合在一起,这是我不想要的,但是如果我使用 Siri,我的音频会停止然后在之后恢复.

我想让我的音乐停止,让另一个人控制音频,就像使用 Siri 一样。我曾尝试删除 .mixWithOthers 但是当我这样做时,似乎一旦我将我的应用程序设置为后台并启动 Siri,之后我的音频将无法再次启动,即使 .ended 案例被调用。

func commonInit() {
try? AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback, with: .mixWithOthers)
NotificationCenter.default.addObserver(self, selector: #selector(handleInterruption), name: .AVAudioSessionInterruption, object: nil)
}

var shouldResume: Bool = false

@objc func handleInterruption(_ notification: Notification) {
guard let info = notification.userInfo,
let typeValue = info[AVAudioSessionInterruptionTypeKey] as? UInt,
let type = AVAudioSessionInterruptionType(rawValue: typeValue)
else { return }

switch type {
case .began:
player?.pause()
case .ended:
guard let optionsValue = info[AVAudioSessionInterruptionOptionKey] as? UInt
else { return }
let options = AVAudioSessionInterruptionOptions(rawValue: optionsValue)

if options.contains(.shouldResume) {
player?.play()
}
}
}

理想情况下,我希望我的应用在任何中断后继续播放,但我也希望我的应用在出现任何中断时停止播放。

谢谢

最佳答案

在设置类别后添加 UIApplication.shared.beginReceivingRemoteControlEvents() 解决了这个问题,但我不确定为什么。

关于ios - AVAudioPlayer 从后台恢复但暂停其他应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48349834/

48 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com