English 中文(简体)
铬中的 HTML5 < vote> 标记不工作
原标题:HTML5 <video> tag in Chrome doesn t work

我注意到在铬中 HTML5 标记有一个奇怪的问题 。

使用这个,效果很好:

<video poster="023.png" autoplay controls>
<source src="todojunto.mp4" type="video/mp4"  />
</video>

这只播放声音,没有视频:

<video poster="023.png" autoplay >
<source src="todojunto.mp4" type="video/mp4"  />
</video>

如果我删除 poster 属性, 它就会再次起作用 。

所有其他浏览器(甚至IE9...!)都运作良好,

有什么想法/帮助吗?

谢谢 谢谢

问题回答

为严格标准实施,应指定视频标签属性 :

<video poster="023.png" autoplay="autoplay" controls="controls">
    <source src="todojunto.mp4" type="video/mp4"  />
</video>

如果这不起作用, 您的浏览器首选项有变化 。

我很惊讶你的视频甚至出现。 Chrome停止支持 mp4 。 您在与 Chrome 合作 html5 视频时应该使用. webm 文件 。

您需要使用 muted=" "; 它为视频工作

<div class="wrap">
	<video width="auto" height="400px" autoplay="" loop="" muted="">
   	   <source src="Video.mp4"  type="video/mp4">
	   <source src="Video.ogg" type="video/ogg">
	</video>
</div>

I ve encountered the same error. I fixed it by adding the preload="auto" tag.

<video autoplay loop preload="auto" poster="023.png">
    <source src="todojunto.mp4" type="video/mp4" />
</video>

不知道这对你是否有效 你问了这个问题已经有一段时间了,但也许这对将来的人有帮助!

我刚刚把它转换为 ogv, 在所有浏览器中都运作良好。 我对火狐有问题, 但不再有问题了。 它也表现出灰色的背景, 但现在, 现在, 现在。 这是我的代码: 您可以从耳盖. com/ Products 中看到它 。

<video class="" style="" autoplay loop>
            <source class="" src="video.ogv" >
            <source class="" src="video.mov" >
            <source class="" src="video.mp4" >
</video>

2015年7月5日之后,您可能会看到它。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签