使用 html5 自动播放 mp4 视频

发布于 2024-10-19 21:55:53 字数 317 浏览 0 评论 0原文

我正在使用 HTML5 创建一个网页,以便在其上播放 mp4 视频,我已经完成了这一点,但是,我尝试使用此代码添加一些功能,例如自动播放、自动缓冲和循环

<video id="video" width="320" height="240" src="http://.../TCLAST.mp4"  controls autobuffer autoplay loop>

但到目前为止什么都没有,我还想要一件事在 Motorola XOOM 上显示此页面。我使用过不同的浏览器,如 dolphin、skyfire、firefox 和默认浏览器。

I'm creating a web page using HTML5 in order to have a mp4 video on it, I already accomplished this but, I trying to add some functionalities like autoplay, autobuffer and loop using this code

<video id="video" width="320" height="240" src="http://.../TCLAST.mp4"  controls autobuffer autoplay loop>

But nothing so far, one more thing I want to display this page on the Motorola XOOM. I have used different browsers like dolphin, skyfire, firefox and the default browser.

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

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

发布评论

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

评论(3

染年凉城似染瑾 2024-10-26 21:55:53

您可以尝试 videojs ( http://videojs.com/ ) 并在 DOMReady 上播放视频。使用视频 JS API。这也将为您带来与 iDevice 兼容的好处。

You can try videojs ( http://videojs.com/ ) and play the video on DOMReady. Using the video JS API. This will also give you the benefit of being iDevice compatable.

千里故人稀 2024-10-26 21:55:53

当前形式的 XOOM 对视频非常挑剔。您是否已验证您要播放的视频是否会在本机播放器中播放?

有关更多信息,请查看此处:

http://forum.xda- Developers.com/showthread.php?t=1026570&highlight=video
http://forum.xda-developers.com/showthread.php ?t=1021461&highlight=视频

The XOOM in its current form is very picky about video. Have you verified that the video you want to play will play in the native player?

For more information, look here:

http://forum.xda-developers.com/showthread.php?t=1026570&highlight=video
http://forum.xda-developers.com/showthread.php?t=1021461&highlight=video

昨迟人 2024-10-26 21:55:53

这里是演示

http://jsfiddle.net/dineshk/fvnr0zex/2/

这将起作用当使用 Javascript 附加视频标签时。

这是 JavaScript 代码

 var newHtml = '<video width="100%" height="30%" autoplay controls  id="myVideos" src="https://dev.ocutagsnap.com:8080/PearsonVideos/videos/tumb10.mp4" ></video>';
$("#newone").append(newHtml);

Here the Demo

http://jsfiddle.net/dineshk/fvnr0zex/2/

This Will work when the video tag append using Javascript.

Here the Javascript code

 var newHtml = '<video width="100%" height="30%" autoplay controls  id="myVideos" src="https://dev.ocutagsnap.com:8080/PearsonVideos/videos/tumb10.mp4" ></video>';
$("#newone").append(newHtml);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文