Rewind media element

In my application, I am playing a video file using a control MediaElement

and I need to be able to fast forward and rewind. I zoomed in to fast forward SpeedRatio

, but how can I implement fast forward? I want to play the video in reverse order (in the appropriate speed ratio).

+1


source to share


1 answer


You can set the property MediaElement.ScrubbingEnabled

to true and pause the MediaElement, and then periodically change its MediaElement.Position

backward property to simulate the rewind behavior.



+3


source







All Articles