Play video file at 1.5x, 2x speed

I am an iOS developer who has to make an application for playing videos at different speeds. I think there is no API to change the playback speed on MPMoviePlayerController.

And I could not find any solutions.

Could you tell me how to implement it? or Could you tell me any Framework / library (SDK) that supports the above functions for iOS?

+5
source share
1 answer

This is actually a property.

MPMoviePlayerControlleradheres to MPMediaPlayback protocol

Cm.

currentPlaybackRate

The current playback speed for the player. (Required)

@property(nonatomic) float currentPlaybackRate

Discussion

. 0.0 , 1.0 , . , .

.

+5

All Articles