从 WeBrowser 控件启动媒体播放器
我有一个通过 WebBrowser 控件显示 HTML 的应用程序。此 HTML 中还包含指向 mp4 视频的链接。
如果我点击视频链接,WebBrowser 不会执行任何操作。但是,如果通过 WebBrowserTask 打开页面,则链接工作并打开媒体播放器(然后正常播放视频)。
网络浏览器也可以以某种方式打开媒体播放器并播放视频吗?
有没有其他方法可以播放 HTML 视频(不支持 html5,不支持 flash - 任何其他方法)?
谢谢大家, 拉特科
I have an application that shows HTML via the WebBrowser control. There are also links to mp4 videos in this HTML.
WebBrowser does nothing if I click on video links. However, if page is opened through WebBrowserTask then links work and open media player (video is then normally played).
Can webbrowser also somehow open media player and play video?
Is there any other way to play video from HTML (html5 is not supported, flash is not supported - any other way)?
Thx all,
Ratko
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以连接包含页面以从 Web 浏览器接收导航事件,检查 URL,如果它是针对媒体链接之一,则取消导航并播放媒体...
You can hook up the containing page to receive the Navigating events from the WebBrowser, check the URL, and if it is for one of the media links, cancel the navigation and instead play the media ...