StreamingKit
StreamingKit copied to clipboard
Progress from delegate method is incorrect
It seems like the progress in callback from the delegate method below is incorrect:
audioPlayer:didFinishPlayingQueueItemId:withReason:andProgress:andDuration
for example play 10 sec -> seek n sec -> play another 5 sec -> end the progress is 5 sec not 10 + 5 sec
Is there a way I can get the actual progress being played? I am new to this library, any help is appreciated. THANKS!
Apparently it's the progress since the start (because you've started after 10 seconds, it's 5 which is correct). Use [audioPlayer progress] to get accurate relative to overall duration result.
Having the same issue. Updated code to the latest commit but still persists.