Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to get current playing time of MPMoviePlayerViewController after seeking ? Originally I am using a NSTimer to count the time played, but after scrubbing / seeking, the time recorded does not count the amount of time seeked.

Any way to know current time of video or amount of time scrubbed ?

share|improve this question

1 Answer

up vote 4 down vote accepted

The currentPlaybackTime property in the MPMediaPlayback protocol gives you that info.

share|improve this answer
1  
Hi, how do you get this protocol to work? It's properties are not listed in the original Frameworkfile MPMoviePlayerController.h, therefore I can't use it :(. Perhaps you know something (please see also stackoverflow.com/questions/3937931/… ) – Micko Oct 15 '10 at 18:46
Micko, you're referring to MPMoviePlayerController, which probably means you're working with the iOS 3.1 framework, while Shivan was referring to MPMoviePlayerViewController, available in iOS 4.0 framework. I'm not aware of a comparable method in iOS 3.1. – Guy Oct 18 '10 at 12:04
U can implement the MPMediaPlayBack Protocol where u can get the currentPlayBack property... – Pradeep Reddy Kypa Apr 9 '12 at 11:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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