Reputation: 11
For some reason that I can't make out, the player is defaulting to flash in IE, although it works just fine in Chrome and FF. I've added in all three recommended video formats (mp4, webm, and ogv).
http://www.bijouphotobooths.com/
Any help would be most appreciated!
Upvotes: 1
Views: 751
Reputation: 7821
IE 9 renders your page in quirks mode. While in quirks mode, IE can't play MP4 natively so the Flash fallback is needed.
If you open IE's developer tools (press F12) and switch the document mode from "Quirks" to "Internet Explorer 9 standards", you'll see the player on the reloaded page can now use the browser's native MP4 support.
Also try this in the console of developer tools. In quirks mode it will error because canPlayType is not a function.
document.createElement("video").canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"');
See this question for how to coax Internet Explorer into using standards mode.
Upvotes: 1