gpt4 book ai didi

swift - 设置 Audio Session 类别选项的共享实例不起作用

转载 作者:行者123 更新时间:2023-11-30 10:38:08 27 4
gpt4 key购买 nike

我正在构建一个应用程序,我想在其中播放本地库中的音乐并使用 AVQueuePlayer 来播放轨道列表,其中轨道之间偶尔会出现中断。现在,音乐工作得很好,因为我希望一切都在后台工作,所以在播放 AVQueuePlayer 并想要休息时,我唯一的选择是播放无声的 AVPlayerItem(一个空音频文件)。我希望音乐在以下情况下正常播放:无声 AVPlayerItems 正在播放,我通过将 AVAudioSession 类别设置为 .playback 并使用选项:.mixWithOthers 来实现这一点,并且当 AVQueuePlayer 播放常规轨道(非无声)时,我希望音乐稍微变暗。

我尝试像这样更改 Audio Session :AVAudioSession.sharedInstance().setCategory(.playback, options: [.mixWithOthers, .duckOthers])

但这并没有改变任何东西。当我检查它是否像这样更改时: if AVAudioSession.sharedInstance().categoryOptions == .mixWithOthers { print("音乐与沉默混合")} session 类别选项似乎发生了变化,但最终并不影响音频。

@objc func playerDidFinishPlaying() {
print("Player finished!")
guard let queuePlayer = queuePlayer else { return }

if let index = queuePlayer.items().lastIndex(where: { (playerItem) -> Bool in
return playerItem == queuePlayer.currentItem
}) {
if let nextItem = queuePlayer.items()[index + 1].asset as? AVURLAsset {

if nextItem.url.absoluteString != oneSecondSilenceUrl?.absoluteString {
try? AVAudioSession.sharedInstance().setCategory(.playback, options: [.mixWithOthers, .duckOthers])
//When narrator is speaking
} else {
try? AVAudioSession.sharedInstance().setCategory(.playback, options: .mixWithOthers)
AVAudioSession.sharedInstance()
//When there's silence and only music should be playing
}
}
}
if AVAudioSession.sharedInstance().categoryOptions == .mixWithOthers {
print("Music mixing with silence")
}
try? AVAudioSession.sharedInstance().setActive(true)

}

enter code here

每当 AVQueuePlayer 完成播放其项目之一时,此方法就会运行。我用它来检查下一个项目是否是无声轨道。如果它是无声轨道,我想要 .mixWithOthers,如果它是非无声轨道并且该轨道实际上播放音频,我想要类别选项:.duckOthers :)

非常感谢任何帮助、回应或答复! :)

最佳答案

切换到主线程似乎可以解决问题。奇怪。

DispatchQueue.main.async {
if AVAudioSession.sharedInstance().categoryOptions != .duckOthers {
try? AVAudioSession.sharedInstance().setActive(false)
try? AVAudioSession.sharedInstance().setCategory(.playback, options: [ .duckOthers])
}
}

关于swift - 设置 Audio Session 类别选项的共享实例不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57453310/

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