Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In slow 3G connections my app that plays live audio streamed from the Internet, using the AVPlayer class, keeps pausing all the time while buffering.

It's strange, because I play also files that are not live streamed, but rather saved audio files on a web server, and it doesn't pauses the audio during the playback.

I couldn't find any way to increase the buffer size searching on AVPlayer Apple's documentation.

Does anyone know of a way to solve this problem, to increase the buffer size, thus avoiding the pause when the audio is playing?

Thanks!

share|improve this question

1 Answer

up vote 0 down vote accepted

I solved this buffering problem in a very simply way, by delaying the play method to be executed, giving more time for the buffer to be filled up and then start playing the audio, like so:

[self performSelector:@selector(play:) withObject:nil afterDelay:10.0];

I hope this helps someone.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.