Play / rewind video at 2x 3x 4x speeds in mobilevlckit did not work

In my project, I code the trick as shown below, but the code did not work. How to solve this problem. If you have any ideas, help me.

func didTrickPlayValueChanged(_ atRate: Float!){ if( atRate == 1.0){ vlcMediaPlayer.fastForward(atRate: 1.00) } else if(atRate == 2.0){ vlcMediaPlayer.fastForward(atRate: 2.00) } else if(atRate == -2.0){ vlcMediaPlayer.fastForward(atRate: -2.00) } else if(atRate == -1.0){ vlcMediaPlayer.fastForward(atRate: -1.00) }else{ vlcMediaPlayer.fastForward(atRate: 1.00) } } 
0
ios swift3 media-player vlc
May 12 '17 at 4:48 a.m.
source share

No one has answered this question yet.

See similar questions:

0
Rotate fully landscape view when playing movie in VLCPlayer with fast 3

or similar:

455
The resource cannot be loaded because the application security policy for transport requires the use of a secure connection
52
Xcode 8.0 Swift 3.0 slow indexing and building
10
MobileVLCKit iOS Camera video clip "VLC cannot open MRL"
5
MobileVLCKit Audio is working, video is not working
2
MobileVLCKit Video Stream Playback Not Displaying
one
Error compiling VLC with opencv support
one
blur function does not work on iOS devices
0
MPMoviePlayer does not play video
0
Full Video Input MobileVLCKit
0
How to get information that supports video playback speed on each iOS device



All Articles