如何在 C# 中使用 axWindowsMediaPlayer 跳转 X 秒

发布于 2024-10-04 16:00:56 字数 84 浏览 4 评论 0原文

我正在使用 axWindowsMediaPlayer,并且已加载视频,但我想跳 X 秒。例如,如果当前时间是视频的 1 分钟,我想跳到 1 分 10 秒。

I am using axWindowsMediaPlayer, and I have a video loaded, but I want to jump X seconds. So, for example, if the current time is 1 minute into the video, I want to jump to 1 minute 10 seconds.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失退 2024-10-11 16:00:56

好吧,我找到了我的解决方案。我实际上运行正确,但我没有考虑加载视频所需的时间。

具体来说,所需的代码就像

axWindowsMediaPlayer1.Ctlcontrols.currentPosition += 10;

但是我编写了一个函数来检查视频是否已完成加载并为其附加了一个计时器

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

然后当我得到 true 时调用我的跳过函数。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文