I'm successfully using AVPlayer to stream audio from a server and what I want to do now is to show a custom UISlider who shows the progress of the buffering.

Something like this:

enter image description here

With AVPlayer there doesn't seem to be a way to get the total download size or the current downloaded amount for the audio file, only the current playing time and total play time.

There's any workarounds for this?

link|improve this question

Did you ever implement the UI part of this? I need exactly this, and would rather not roll my own if there's already something out there. – Ben Scheirman Jan 24 at 22:51
feedback

1 Answer

up vote 6 down vote accepted

I am just working on this, and so far have the following:

- (NSTimeInterval) availableDuration;
{
  NSArray *loadedTimeRanges = [[self.player currentItem] loadedTimeRanges];
  CMTimeRange timeRange = [[loadedTimeRanges objectAtIndex:0] CMTimeRangeValue];
  float startSeconds = CMTimeGetSeconds(timeRange.start);
  float durationSeconds = CMTimeGetSeconds(timeRange.duration);
  NSTimeInterval result = startSeconds + durationSeconds;
  return result;
}
link|improve this answer
To add to this, the value youre looking for is the AVPlayerItem property loadedtimeRanges. It's an NSArray that contains an NSValue of a CMTimeRange. This code chunk is what I was having trouble coming up with, that is, how to get that data into something useful. – chris Jan 24 at 23:17
feedback

Your Answer

 
or
required, but never shown

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