I have a video player that needs to play a sequence of videos from the network. The URLs for these videos are not known in advance, as they come from XML or JSON responses from other HTTP requests.
As the video URLs become known, I create AVPlayerItems and add them to an AVQueuePlayer. I observe the player status and the item status to determine which item is playing etc.
The problem is that the player seems to get into various weird states where it returns AVFoundationErrorDomain error -11800 and from then on the player refuses to play anything. Even after deallocating the AVQueuePlayer and starting a new one, videos that previously played refuse to play.
Is adding new AVPlayerItems to a playing AVQueuePlayer a supported operation, or should I be doing this another way? If it is supported, what should I be looking out for/doing (Eg. thread issues? KVO issues?) to make this work?