HTML5 video tag not working with "codecs" attribute on Chrome -
HTML5 video tag not working with "codecs" attribute on Chrome -
i´ve got "video" tag follows:
<video id="videotag" loop autoplay controls preload poster="xxx.jpg" height="100%" width="100%"> <source src="xxx.mp4" type="video/mp4; codecs='avc1.64001e, mp4a.40.2'"/> </video>
it has been working in chrome until recent chrome update (can´t assure version), since update had remove "codecs" attribute "source", leaving this:
<video id="videotag" loop autoplay controls preload poster="xxx.jpg" height="100%" width="100%"> <source src="xxx.mp4" type="video/mp4"/> </video>
and working well.
my question is: why did happen? chrome no longer supports "codecs" attribute or codec specifically? "codesc" attribute useful browser? please shed lite on it?
btw, has work on ie11, , withous "codecs" attribute.
thanks!
html5 google-chrome video codec
Comments
Post a Comment