Skip to content

Instantly share code, notes, and snippets.

@sabberworm
Last active May 23, 2016 13:34
Show Gist options
  • Save sabberworm/d69be93c3957fd630f9c to your computer and use it in GitHub Desktop.
Save sabberworm/d69be93c3957fd630f9c to your computer and use it in GitHub Desktop.
Disable Flash-HLS Hack
if(videojs.Hls) {
videojs.Flash.isSupported = function() {
// Only support Flash if no HTML5 is available
return !videojs.Html5.isSupported();
};
videojs.Hls.isSupported = function() {
return videojs.Hls.supportsNativeHls;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment