在网页上插入视频

发布于 2024-11-19 16:46:36 字数 413 浏览 5 评论 0原文

在网页上插入和显示视频的可能性有哪些,

  • 不需要用户额外的插件或安装,并且
  • 可以用于 .flv 格式(.f4v、.avi 例如)以外的格式,

在 SO 我发现了一些问题像这样:stackoverflow.com[...],但它们仅与 .flv 播放器有关。是因为没有别的事了吗?

我知道有很多很多格式,没有工具可以处理所有这些。但是,是否可以在不使用额外插件的情况下显示除 .flv 格式之外的任何格式?我从来没有找到过。

谢谢。

What possibilities are there for inserting and showing videos on a webpage that

  • don't require additional plugins or installations from the user and
  • can be used for other than the .flv format (.f4v, .avi e.g.)

At SO I found a few questions like this: stackoverflow.com[...], but they are only about .flv-players. Is that because there is nothing else?

I know there are many, many formats and no tool can handle them all. But is it at all possible to show any other than .flv formats without extra plugins? I have never found any.

Thank you.

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

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

发布评论

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

评论(2

相思故 2024-11-26 16:46:36

最新技术是带有 标签的 HTML5

<video width="320" height="240" controls="controls">
  <source src="movie.ogg" type="video/ogg" />
  <source src="movie.mp4" type="video/mp4" />
  Your browser does not support the video tag.
</video>

文档

现在大多数浏览器都支持HTML5,所以不用担心使用 + 不要需要额外的插件或安装

Most latest technology is HTML5 with <video> tag

The <video> tag specifies video, such as a movie clip or other video streams.

<video width="320" height="240" controls="controls">
  <source src="movie.ogg" type="video/ogg" />
  <source src="movie.mp4" type="video/mp4" />
  Your browser does not support the video tag.
</video>

Documentation

Now most of the browsers supports HTML5 so no worry of using + don't require additional plugins or installations

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