WPF MediaElement Resume jumps video backwards

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Petra

    WPF MediaElement Resume jumps video backwards

    Hello,

    I have a strange problem with Pause and Resume using a
    MediaElement.Cl ock.

    I implemented a MediaElement to display a video and implemented a GUI
    around it to make the typical Start/Stop/Pause/Resume functionality
    available.

    For one particular video I work with the clock.Controlle r.Resume()
    function causes the clock to jump back several seconds (or frames?)
    first and then starting to play the video from that position. This is
    quite a nuisance because I am trying to keep the video synchronized
    with another video that I restart at the same time (and which doesn't
    jump backwards first). Is there anything that could explain this
    behaviour?

    My pause/resume code is quite trivial. Here an excerpt:

    public void PauseResume()
    {
    MediaClock clock = mediaElement.Cl ock;

    if (clock != null)
    {
    if (clock.IsPaused )
    {
    clock.Controlle r.Resume();
    }
    else
    {
    clock.Controlle r.Pause();
    }
    }
    }

    If anyone has ideas as to why this could be happening, I'd be very
    interested!
    (Would it be possible that is has to do with the way the video is
    encoded? Keyframe? etc.?)

    Cheers,
    Petra
Working...