I want to tweak Avplayer rate , I able to do with help of
[_avplayer play];
[_avplayer setRate:1.5];
Also disabled audio tracks , it is ru
This seems to be a bug in AVFoundation. It can play smoothly at fast rates for many videos where, under most circumstances, it doesn't. For example, one can use AVPlayerView's floating controller style to expose a fast-forward button. Clicking this button repeatedly results in smooth, fast playback where simply setting AVPlayer.rate
does not.
In my answer to this question I explain a workaround for this problem.