diff --git a/src/js/me-featuredetection.js b/src/js/me-featuredetection.js index 980583244..7eef78179 100644 --- a/src/js/me-featuredetection.js +++ b/src/js/me-featuredetection.js @@ -36,6 +36,13 @@ mejs.MediaFeatures = { t.supportsMediaTag = (typeof v.canPlayType !== 'undefined' || t.isBustedAndroid); + // Fix for IE9 on Windows 7N / Windows 7KN (Media Player not installer) + try{ + v.canPlayType("video/mp4"); + }catch(e){ + t.supportsMediaTag = false; + } + // detect native JavaScript fullscreen (Safari/Firefox only, Chrome still fails) // iOS