HTML5 – mp4 video does not play in IE9

for IE9 I found that a meta tag was required to set the mode

<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>

<video width="400" height="300" preload controls>
<source src="https://stackoverflow.com/questions/6944679/movie.mp4" type="video/mp4" />
Your browser does not support the video tag
</video>

Leave a Comment