如何使用线程播放MPRemoteCommandCenter的下一首歌?

时间:2016-11-11 12:46:26

标签: ios swift avplayer

我想使用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)

我不是英国本土的spearker,非常感谢你在这里阅读,如果你明白我在说什么:]。欢迎任何帮助。

1 个答案:

答案 0 :(得分:0)

对不起,这是我的错。它不需要任何backgournd工作。 只需更改以下内容:

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

确保 AVAudioSessionCategoryPlayback