在 iOS 10 中,如果 m3u8 主播放列表请求返回 404,则 AVPlayerItem 上的状态属性不会转换为失败状态 (AVPlayerItemStatusFailed)。这使得错误处理程序无法按照 https://developer.apple.com/reference/avfoundation/avplayeritem 的 AVPlayerItem 文档中的说明进行操作。
有没有人找到任何替代方案?
您可以跟踪 AVPlayerItemNewErrorLogEntry 通知。对于 404 错误,以下代码将打印“HTTP 404: File Not Found”
NotificationCenter.default.addObserver(forName: .AVPlayerItemNewErrorLogEntry, object: avPlayer?.currentItem, queue: .main) { [weak self] _ in
print(avPlayer.currentItem?.errorLog()?.events.last?.errorComment)
}
此外,该视频的后半部分包含有关客户端错误处理最佳做法的有用信息。 https://developer.apple.com/library/content/technotes/tn2224/_index.html
关于iOS 10 HLS 404 播放列表错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40364444/
欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) | Powered by Discuz! X3.4 |