Skip to content

Instantly share code, notes, and snippets.

@TiernanKennedy
Last active August 29, 2015 14:03
Show Gist options
  • Save TiernanKennedy/7fd2274d7c89dcaae567 to your computer and use it in GitHub Desktop.
Save TiernanKennedy/7fd2274d7c89dcaae567 to your computer and use it in GitHub Desktop.
Get Duration of all items in AVPlayer
float count = 0.0;
for (AVPlayerItem *playerItem in self.player.items) {
CMTime duration = playerItem.asset.duration;
float durationSeconds = CMTimeGetSeconds(duration);
count = count + durationSeconds;
}
NSLog(@"total player duration: %.2f", count);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment