首页 > 解决方案 > AVAudioEngine 和 AVAudioPlayerNode:播放/暂停未在 iOS 命令中心正确更新

问题描述

我已阅读播放/暂停和已用时间未在 iOS 命令中心正确更新

我试过了MPNowPlayingInfoPropertyElapsedPlaybackTimeMPNowPlayingInfoPropertyDefaultPlaybackRateMPNowPlayingInfoPropertyPlaybackRate

我已经更新了苹果演示

苹果演示可以在 iOS 命令中心显示播放/暂停更新,与AVPlayer

这里使用AVAudioEngineand AVAudioPlayerNodeAVAudioPlayerNode播放音频 scheduleBuffer

这是相关的iOS命令中心代码:

func show(mediaInfo time: TimeInterval){
        let artistName = "test"
        
        guard let duration = length else {
            return
        }
        var isPlaying: Double = 0
        
        var pInfo: [String: Any] = [MPMediaItemPropertyArtist : artistName,
                                    MPMediaItemPropertyTitle : artistName ]
        if let img = UIImage(systemName: "music.note.list"){
            let artwork = MPMediaItemArtwork(boundsSize: img.size, requestHandler: {  (_) -> UIImage in
                return img
            })
            pInfo[MPMediaItemPropertyArtwork] = artwork
            
        }
        
        if streamer.state == .playing{
            isPlaying = 1
            pInfo[MPNowPlayingInfoPropertyElapsedPlaybackTime] = time
            pInfo[MPMediaItemPropertyPlaybackDuration] = duration
        }
        pInfo[MPMediaItemPropertyPersistentID] = artistName
        pInfo[MPNowPlayingInfoPropertyPlaybackRate] = NSNumber(floatLiteral: isPlaying)
        pInfo[MPNowPlayingInfoPropertyDefaultPlaybackRate] = NSNumber(floatLiteral: isPlaying)
        pInfo[MPNowPlayingInfoPropertyMediaType] = NSNumber(value: MPNowPlayingInfoMediaType.audio.rawValue)
        MPNowPlayingInfoCenter.default().nowPlayingInfo = pInfo
    }

这是示例代码


对应的音频会话:

func setupAudioSession() {
        let session = AVAudioSession.sharedInstance()
        do {
            try session.setCategory(.playback, mode: .default, policy: .default, options: [.allowBluetoothA2DP,.defaultToSpeaker])
            try session.setActive(true)
        } catch {
            os_log("Failed to activate audio session: %@", log: ViewController.logger, type: .default, #function, #line, error.localizedDescription)
        }
    }

也试过

let audioSession = AVAudioSession.sharedInstance()
        do {
            try audioSession.setCategory(AVAudioSession.Category.playAndRecord, options: AVAudioSession.CategoryOptions.defaultToSpeaker)
            audioSession.requestRecordPermission({ (isGranted: Bool) in
                
            })
        } catch  {}

标签: iosavaudioengineremote-control

解决方案


您可以尝试停止 AVAudioEngine。像这样:

engine.stop()

推荐阅读