HTML5 <video> tag in Chrome doesn't work HTML5 <video> tag in Chrome doesn't work google-chrome google-chrome

HTML5 <video> tag in Chrome doesn't work


Video tag's attributes should be specified for strict standard implementation:

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

If this doesn't work, there is something changed in your browser's preferences


I'm surprised your video even shows up. Chrome stopped supporting mp4. You should use a .webm file when working with Chrome for html5 videos.


You need to use muted=""; it does work for video

<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>