用于显示视频的嵌入与 Flash 视频播放器

发布于 2024-10-08 03:26:25 字数 231 浏览 1 评论 0原文

我想在企业应用程序的一个页面中显示视频。我正在考虑使用基于 Flash 的播放器,例如 Flowplayer。然后我了解到我也可以使用 EMBED 标签。

访问我的网络应用程序的默认浏览器是 IE - 无论版本如何。我也认为应该有 一些用户使用其他浏览器。

我的问题是每种方法都有缺点,您以前用什么来显示视频?

I want to show video in one of my pages of an enterprise application. I was thinking on using a flash based player such as Flowplayer. Then I learnt that I could also use the EMBED tag.

The default browser for accessing my web app is IE - whatever version. I also supose there should be
some users using other browsers.

My question is are the drawbacks on each and what have you used before to show video?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

勿忘初心 2024-10-15 03:26:25

我强烈建议使用支持 HTML5 视频标签的框架,并为旧浏览器提供 Flash 或其他格式回退。示例有众多并包括VideoJSFlareVideo其他。这样,您将仅依赖于旧浏览器的(说出您的缺点,例如不安全和专有的)技术,并很好地支持较新的浏览器。结果是,当管理层决定升级客户端时,您面临的问题会减少。

I would highly recommend using framework which supports HTML5 video tag with flash or other format fallback for old browsers. Examples are numerous and include VideoJS, FlareVideo and others. This way you would depend on (name-your-disadvantages-like-insecure-and-proprietary) technologies only for older browsers and support a newer ones well. The result is fewer problems you face when the management decides to upgrade the clients.

青春如此纠结 2024-10-15 03:26:25

嵌入提供了最简单的解决方案。 iframe 代码很简单并且可以完成工作

<iframe src="http://(your video source here)" width="400" height="380" frameborder="0">   </iframe>

embedding offers the easiest solution. The iframe code is simple and does the job

<iframe src="http://(your video source here)" width="400" height="380" frameborder="0">   </iframe>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文