Play/Forward video in 2x 3x 4x speed - iPhone SDK

后端 未结 2 1915
臣服心动
臣服心动 2020-12-10 22:10

I want to play/forward video in MPMoviePlayerController with different speeds. Can any one suggest me how i do this.

Right now i am doing fast forward (On single spe

2条回答
  •  無奈伤痛
    2020-12-10 22:39

    MPMoviePlayerController Conforms to MPMediaPlayback protocol 
    you can see the property currentPlaybackRate as :-
    @property(nonatomic) float currentPlaybackRate 
    A value of 0 represents that the video is stopped , a value of 1 indicates normal speed and further positive values indicate increased speed while negative ones indicate reverse .
    

    Also check your endseeking delegate method of MPMediaPlayback as it is the only method that reverts the playback to normal

提交回复
热议问题