0

我现在一直在尝试这样做 4 并且无法弄清楚。我可以用 quicktime 嵌入视频,但现在最新版本确实有问题。有没有其他方法可以在不使用 quicktime 或 windows 播放器的情况下嵌入视频?

提前致谢

4

3 回答 3

1

您可以尝试 HTML5 视频标签,例如;

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

是一个现场演示。

您可以查看将视频嵌入网页的 10 大方法4 种新的视频嵌入方法

于 2012-09-09T07:22:14.610 回答
0

Html5 的视频标签。当然,浏览器必须支持它,但据我所知,这是除了 Adob​​e 的 Flash Player 之外的唯一其他方式:

<video width="200" height="200" controls="controls">
    <source src="some_movie.mp4" type="video/mp4" />
    Video tag unsupported.
</video>

很好的例子:http ://www.html5rocks.com/en/tutorials/video/basics/

于 2012-09-09T04:39:17.947 回答
0

使用“视频”标签确实有其局限性。例如:您无法使用标签中的参数调整视频大小,因此您只能构建适合您要放置它的容器的视频。否则,视频将严格按照原始纵横比调整大小。

对于更灵活的网站视频播放器,您可能希望从 jQuery 或其他风格的视频播放器中进行选择,我建议您查看此问题中提供的答案:https ://stackoverflow.com/questions/4697556/ best-html5-video-player其中,接受的答案是指 Sublimevideo,但投票最多的答案(今天)包括下一个列表:

查看这些链接:

  1. http://videojs.com/

  2. http://www.longtailvideo.com/support/jw-player/jw-player-for-html5

  3. http://sublimevideo.net/

  4. http://www.dailymotion.com/html5

  5. http://www.html5video.org/kaltura-html5/

  6. http://www.youtube.com/html5

  7. http://vimeo.com/blog:268

  8. http://flarevideo.com/

  9. http://www.mediafront.org/project/osmplayer

  10. http://darkonyx.web-anatomy.com

所有这些都很容易实现。不像简单地编写标签和填充参数那么容易,但如果您希望灵活/自定义,其中许多都是不错的选择。

祝你好运!

于 2012-09-09T13:53:40.100 回答