Reputation: 12085
In the AVPlayer Class References method replaceCurrentItemWithPlayerItem:
is a Special Considerations note which says:
Special Considerations The new item must have the same compositor as the item it replaces, or have no compositor.
I am not sure what they mean? What do they mean with compositor?
Upvotes: 2
Views: 265
Reputation: 19641
The property videoComposition
of the new AVPlayerItem
must be the same than the item being replaced or shouldn't have composition at all.
Upvotes: 2