C# 中嵌入的 Windows Media Player 视频速度更改
我目前在 c# 上将 Windows 媒体播放器嵌入到我的 winform 中,现在我正在尝试制作一个按钮来控制视频播放的速度。我目前可以使用 ctlcontrols 中的控件来播放、暂停和停止,但找不到通过使用表单上的按钮来更改视频播放速度的方法? 我的暂停视频的代码示例是: axWindowsMediaPlayer1.Ctlcontrols.pause(); 但我需要一些代码来改变播放速度,因此我们将不胜感激。
谢谢
I currently have a windows media player embedded into my winform on c# and i am now trying to make a button to control the speed of the video play. I currently can use controls to play, pasue and stop, found in ctlcontrols but can't find a way to change the speed of video play through using a button on my form?
An example of my code for pausing the video in it is:
axWindowsMediaPlayer1.Ctlcontrols.pause();
But i need some code to change the play speed so any help would be much appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Settings.Rate 就是您要查找的内容:速度是双倍,1.0 是正常速度。
对于倒带:
对于完整的脚本请参考检查文档。
Settings.Rate is what you are looking for: speed is a double, 1.0 being normal speed.
For rewinding:
For a full scripting reference check the documentation.