I am using a subclass of AVQueuePlayer and when I add new AVPlayerItem with a streaming URL the app freezes for about a second or two. By freezing I mean that it doesn't respond to touches on the UI. Also, if I have a song playing already and then add another one to the queue, AVQueuePlayer automatically starts preloading the song while it is still streaming the first one. This makes the app not respond to touches on the UI for two seconds just like when adding the first song but the song is still playing. So that means AVQueuePlayer is doing something in main thread that is causing the apparent "freeze".

I am using insertItem:afterItem: to add my AVPlayerItem. I tested and made sure that this was the method that was causing the delay. Maybe it could be something that AVPlayerItem does when it gets activated by AVQueuePlayer at the moment of adding it to the queue.

Must point out that I am using the Dropbox API v1 beta to get the streaming URL by using this method call:

[[self restClient] loadStreamableURLForFile:metadata.path];

Then when I receive the stream URL I send it to AVQueuePlayer as follows:

[self.player insertItem:[AVPlayerItem playerItemWithURL:url] afterItem:nil];

So my question is: How do I avoid this? Should I do the preloading of an audio stream on my own without the help of AVPlayer? If so, how do I do this?

Thanks.

link|improve this question
Will this happen even if it is called on a different thread? Have you tried detaching and calling it there? – stavash Oct 15 '11 at 10:43
I tried but didn't work. Then later I read the documentation and turns out that AVPlayer methods should always be called on the main thread. – raixer Oct 15 '11 at 20:17
You could try hanging onto the AVPlayerItem until it's status is AVPlayerItemStatusReadyToPlay. For instance, check several times a second to see if it's ready to play, then when it is add it to the queue. Perhaps insertItem is waiting synchronously for the AVPlayerItem to be ready. – Fls'Zen Oct 18 '11 at 15:58
That still doesn't mean that it won't freeze between songs. I don't want it to ever freeze. – raixer Oct 18 '11 at 19:23
same problem to me. I have to use AVPlayer to instead. – xhan Apr 18 at 9:16
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.