如何在 WebBrowser 控件中显示和缩放 YouTube 媒体?

发布于 2024-12-11 07:56:07 字数 289 浏览 0 评论 0原文

我想使用 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 技术交流群。

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

发布评论

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

评论(1

不如归去 2024-12-18 07:56:07

您的情况总结为:

因此,在等待 YouTube 完全采用 HTML5 的同时,您可以将用户发送到普通的 YouTube 视频页面(例如通过 webBrowser1.Navigate(new Uri("http://youtu.be/BppxvEwWffE"));< /代码>)。然后,他们可以点击视频,WP7 的本机视频播放器将全屏打开并播放视频。

Your situation summarized:

  • WP7 has no Flash, but HTML5 video
  • YouTube in theory can do HTML5 video, but it's still in test mode and not activated by default for all users
  • NavigateToString has possible security implications for your users: "Content loaded from isolated storage or dynamically by using 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.

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