Why do only the controls show up when using HTML5 video on Chrome?
Posted
by Rob
on Stack Overflow
See other posts from Stack Overflow
or by Rob
Published on 2010-05-19T22:52:11Z
Indexed on
2010/05/19
23:20 UTC
Read the original article
Hit count: 131
I'm using the following HTML5 to display video, but only the controls show up in Chrome. Works fine in Safari and Firefox:
<video width="720" height="480" controls="controls" preload="preload">
<source src="<?php bloginfo('url'); ?>/wp-content/uploads/Reel.ogv" type="video/ogg; codecs=theora,vorbis" >
<source src="<?php bloginfo('url'); ?>/wp-content/uploads/Reel.mp4" type="video/mp4">
Your browser doesn't support video.
</video>
Any ideas?
© Stack Overflow or respective owner