如何在 WebBrowser 控件中显示和缩放 YouTube 媒体?
我想使用 WebBrowser
控件通过链接播放 YouTube 视频。当我通过以下方式将链接添加到 WebBrowser 控件时:
webBrowser1.NavigateToString("http://www.youtube.com/embed/BppxvEwWffE");
然后 WebBrowser 会将链接显示为文本,但我希望 YouTube 视频缩放到 WebBrowser 的宽度和高度,并在控件中垂直居中放置一个“播放视频”按钮。我怎样才能做到这一点?
I want to use the WebBrowser
control to play a YouTube video from a link. When I add the link to the WebBrowser control by:
webBrowser1.NavigateToString("http://www.youtube.com/embed/BppxvEwWffE");
then WebBrowser will show the link as text but I want the YouTube video scaled to width and height of WebBrowser and a button "Play video" vertically centered in the control. How could I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的情况总结为:
NavigateToString
动态加载的内容没有跨站点限制,而从网络加载的内容有正常的跨站点限制。”因此,在等待 YouTube 完全采用 HTML5 的同时,您可以将用户发送到普通的 YouTube 视频页面(例如通过
webBrowser1.Navigate(new Uri("http://youtu.be/BppxvEwWffE"));< /代码>)。然后,他们可以点击视频,WP7 的本机视频播放器将全屏打开并播放视频。
Your situation summarized:
NavigateToString
has no cross-site restrictions, while content loaded from the network has normal cross-site restrictions."So while waiting for YouTube to go fully HTML5 you could just send your users to the normal YouTube video page (for example by
webBrowser1.Navigate(new Uri("http://youtu.be/BppxvEwWffE"));
). They can then tap the video and the native video player of WP7 opens full screen and plays the video.