如何在 C# 中使用 axWindowsMediaPlayer 跳转 X 秒
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我找到了我的解决方案。我实际上运行正确,但我没有考虑加载视频所需的时间。
具体来说,所需的代码就像
但是我编写了一个函数来检查视频是否已完成加载并为其附加了一个计时器
然后当我得到 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
However I wrote a function to check to see if the video had finished loading and attached a timer to it
Then called my skip function when I got a true.