Hi
I am using media element to play the movie.My current fast forward and fast rewind logic is as below.
MediaElement.position = MediaElement.position + TimeSpan.FromSeconds(10);(for fast forward) MediaElement.position = MediaElement.position - TimeSpan.FromSeconds(10);(for fast rewind)
During fast forward when the movie is over, Media Ended event is called up. I thought that it stays at the last frame where as movie ended event is called and coming out of movie.
During fast rewind, it statys at the first frame of the movie. Any idea why it is happening like that? Any suggestions/ideas to display last frame of the movie during Fast forward.
Regards Raju