gpt4 book ai didi

ios - 如何使用线程通过MPRemoteCommandCenter播放下一首歌曲?

转载 作者:行者123 更新时间:2023-11-30 12:54:49 24 4
gpt4 key购买 nike

我想使用 MPRemoteCommandCenter 来控制我的音乐播放器应用程序。现在它可以播放和暂停音乐,但不能播放下一首/上一首歌曲,只有很少的机会可以播放。

当用户点击 MPRemoteCommandCenter 中的下一首歌曲按钮(例如在锁定屏幕中)时,它将调用 startExtendBGJob() 函数,然后我请求一个线程来执行更改歌曲工作(我认为错误就在这里,因为我'我不完全了解后台作业的结构)。

func startExtendBGJob(taskBlock: @escaping () -> Void) {
registerBackgroundTask()
DispatchQueue.global(qos: .userInitiated).async {
DLog("APP into BG")

DispatchQueue.global(qos: .default).async {
taskBlock()
}
while self.isPlaying == false || self.tmpPlayer == nil { // waiting for new avplayer been created.
Thread.sleep(forTimeInterval: 1)
}
DispatchQueue.global(qos: .default).asyncAfter(deadline: .now() + 10) {
self.endBackgroundTask()
}
}
}

func registerBackgroundTask() {
bgIdentifier = UIApplication.shared.beginBackgroundTask(expirationHandler: {
[weak self] in
guard let strongSelf = self else { return }
strongSelf.endBackgroundTask()
})
assert(bgIdentifier != UIBackgroundTaskInvalid)
}
func endBackgroundTask() {
UIApplication.shared.endBackgroundTask(bgIdentifier)
bgIdentifier = UIBackgroundTaskInvalid
isExtendingBGJob = false
DLog("App exit BG!")
}

在startNextPlay()函数中只是找到下一首歌曲的url,而prepareToPlay()用于创建一个新的AVPlayer来播放下一首歌曲。

self.tmpPlayer = AVPlayer(url: streamURL)

我不是以英语为母语的矛手,如果您明白我在说什么,非常感谢您阅读这里:]。欢迎任何帮助。

最佳答案

对不起,是我的错。它不需要任何后台工作。只需更改如下内容:

UIApplication.shared.beginReceivingRemoteControlEvents()
do {
try AVAudioSession.sharedInstance().setCategory(AVAudioSessionCategoryPlayback)
try AVAudioSession.sharedInstance().setActive(true)
} catch {
DLog("fail to set category: \(error)")
}

确保它是AVAudioSessionCategoryPlayback

关于ios - 如何使用线程通过MPRemoteCommandCenter播放下一首歌曲?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40548345/

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