【发布时间】:2021-01-06 01:53:08
【问题描述】:
我已阅读Play/Pause and Elapsed Time not updating in iOS command center properly
我试过MPNowPlayingInfoPropertyElapsedPlaybackTime、MPNowPlayingInfoPropertyDefaultPlaybackRate和MPNowPlayingInfoPropertyPlaybackRate。
我已经更新了apple demo
苹果演示可以在iOS命令中心显示播放/暂停更新,AVPlayer
这里使用AVAudioEngine和AVAudioPlayerNode,AVAudioPlayerNode播放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 {}
【问题讨论】:
-
要在命令中心显示您的元数据,您需要有一个活动的不可混合音频会话类别,并且当前也正在制作音频。你能展示你的音频会话配置吗?
-
已更新。方便的话可以试试github代码github.com/BoxDengJZ/AudioJz/tree/master/UnderTheHood
标签: ios avaudioengine remote-control