HTML5 video tag in chrome - wmv

Posted by elcuco on Stack Overflow See other posts from Stack Overflow or by elcuco
Published on 2010-03-11T13:28:30Z Indexed on 2010/03/11 17:19 UTC
Read the original article Hit count: 996

Filed under:
|
|

Hi Al,

I need to make a page which displays a video. Firefox and and Opera support the OGG format, no problem there. Chrome is ... "stupid" and does not recognize OGG.

Does Chrome on Windows know how to handle WMV? I already have them encoded, and no I cannot recode new videos since the media is limited in spaced (CDROM).

My code currently looks like this (and not working in chrome)

<video controls>
<source codecs="theora, vorbis" media="video/ogg" src="video.ogv" />
<source media="video/x-ms-wmv" src="video.wmv" />
Please install a new browser, or just get out
</video>

Note that I am missing a codec entry, does anyone know what I need to put there?

© Stack Overflow or respective owner

Related posts about html5

Related posts about video