Is it possible get playing time and total play time in AVQueuePlayer? If yes, how can I do this?
What i have tried so far :
CMTime currentTime = [self.myAVQueuePlayerObject currentTime];
But it is returning the currently played duration of the currentItem located in the Queue.
What i want to achieve ?
I want to get the currentTime Played with respect to all the items present in the AVQueue Player , how can i do that ?
Any Help is Highly Appreciated.