Created
October 29, 2014 12:15
-
-
Save arakno/9bd134542c21351a5af5 to your computer and use it in GitHub Desktop.
feature detect video capabilities
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (Modernizr.video.h264 == "" || Modernizr.video.h264 == "maybe" || Modernizr.video.h264 == undefined || v.currentSrc == "" || !v.canPlayType || !v.canPlayType('video/mp4') ) { | |
//... magic happens | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment