My application is using AVPlayer to play video. There is a serious problem that my app currently experience. Sometimes, it is playing the video very fast although I checked to make sure that I either set the self.player.rate = 0.3 or self.player.rate = 1 or not set the rate at all. This only happens sometimes and it happens to all the videos I have.

Can anyone give me any hint on the current problem?

link|improve this question

Can you say when it sometimes plays very fast? Is it reproducible? – Malcolm Box Sep 19 '11 at 13:50
feedback

2 Answers

up vote 1 down vote accepted

I finally know the answer. I called [player setRate:0.3] and [player play] at the same time and the second call override the first call, which sets the rate to be 0 (normal). The method setRate: already set the rate for the player and play the video already

link|improve this answer
feedback

Did you tried to clean all the targets?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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