我和我的团队在一个问题上停留了几天。
我们有AVPlayer
,它通过自定义的AVPlayerItem
播放AVVideoComposition
。
player.currentItem?.videoComposition = getUpdatedVideoComisition()
用户可以决定是删除还是保留合成。我正在尝试通过致电
删除内容player.currentItem?.videoComposition = nil
但是,即使将nil分配给videoComposition
属性,它仍然以一种意想不到的方式继续演奏相同的构图。
如何在不切换AVVideoComposition
的情况下删除AVPlayerItem
?
任何帮助将不胜感激。
最好的问候,
Roi和团队