1

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).

fernio
  • 87
  • 1
  • 4
  • 7
Rupesh
  • 7,866
  • 11
  • 41
  • 58

1 Answers1

3

You could set the MediaElement.ScrubbingEnabled property to true, and pause the MediaElement, and then periodically change its MediaElement.Position property backwards to mimic the rewinding behaviour.

gliderkite
  • 8,828
  • 6
  • 44
  • 80
  • this is not the rewind functionality. In this case, video will be not played in reverse direction. I search the option to play video file in reverse/rewind mode (I don't want to change the position periodically) – Rupesh Jun 04 '12 at 12:09
  • Previously i want to sound when apply rewind functionality but now it is not essential. so in that case your solution works for me. – Rupesh Jun 07 '12 at 10:18
  • @gliderkite I am looking for something similar, i did what you said but the rewinding or the reverse that way is not smooth! Its like missing scenes i would like to have something smoother. Do you have any suggestion? Thanks in advance – vkampouris Dec 11 '13 at 15:14