Reputation: 1460
i want to play video of above any format on aspx web page. actually i'm using microsoft visual 10 and C# 4.0 for it. i'm not bother about player or plugins or anything. using this scripts and video tag of html5 now video is playing fine on Mozilla as well as Chrome. but how to play video on IE using HTML5? Is there any solution?
<script src="http://html5media.googlecode.com/svn/trunk/src/jquery.html5media.min.js" type="text/javascript"></script>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
Upvotes: 0
Views: 1024
Reputation: 809
Html5 <video>
tag is not supported on IE8 and before. It is only supported on IE9+ and on IE9, the support is limited to mp4 videos only. ref. http://docs.webplatform.org/wiki/html/elements/video
For unsupported versions, you might need to use a plugin like Windows Media Player or Flash.
Upvotes: 1