How to jump X second with axWindowsMediaPlayer in C#

那年仲夏 提交于 2019-12-01 01:02:35

Okay, I found my solution. I was actually running it correctly, but I was not accounting for the time it takes to load the video.

Specifically, the needed code is like

axWindowsMediaPlayer1.Ctlcontrols.currentPosition += 10;

However I wrote a function to check to see if the video had finished loading and attached a timer to it

private bool isPlaying()
{
   return axWindowsMediaPlayer1.playState == WMPPlayState.wmppsReady || axWindowsMediaPlayer1.playState == WMPPlayState.wmppsPlaying;
}

Then called my skip function when I got a true.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!