【发布时间】:2020-08-05 01:47:19
【问题描述】:
我的以下代码播放“fox village.mp4”视频,该视频已被注释掉,但不是你管链接并给出此错误: AddInstanceForFactory:没有为 id F8BB1C28-BAE8-11D6-9C31-00039315CD46 注册工厂
如果可以,请提供帮助。谢谢!!
let videoURL = URL(string: "https://youtu.be/MTNCcC_H3oM")!
// let videoURL = URL(string: "https://wolverine.raywenderlich.com/content/ios/tutorials/video_streaming/foxVillage.mp4")!
let player = AVPlayer(url: videoURL)
let playerViewController = AVPlayerViewController()
playerViewController.player = player
present(playerViewController, animated: true) {
player.play()
【问题讨论】: