You can display the duration of the current active content.
CMTimeRange seekableRange = self.player.seekableRange;
if (CMTIMERANGE_IS_VALID(seekableRange)) {
double start = CMTimeGetSeconds(seekableRange.start);
double duration = CMTimeGetSeconds(seekableRange.duration);
}