In my application, I play a video file using the MediaElement control, and I need to have fast forward and rewind options. For fast forward, I increased the SpeedRatio, but how can I implement fast rewind? I want to play the video in reverse (in appropriate speed ratio).
In my application, I play a video file using the MediaElement control, and I
Share
You could set the
MediaElement.ScrubbingEnabledproperty to true, and pause the MediaElement, and then periodically change itsMediaElement.Positionproperty backwards to mimic the rewinding behaviour.