使用 html5 自动播放 mp4 视频
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以尝试 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.
当前形式的 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
这里是演示
http://jsfiddle.net/dineshk/fvnr0zex/2/
这将起作用当使用 Javascript 附加视频标签时。
这是 JavaScript 代码
Here the Demo
http://jsfiddle.net/dineshk/fvnr0zex/2/
This Will work when the video tag append using Javascript.
Here the Javascript code