Skip to content

Instantly share code, notes, and snippets.

@ovlb
Last active February 7, 2019 00:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ovlb/7396107426585fe163abfb32bccfd968 to your computer and use it in GitHub Desktop.
Save ovlb/7396107426585fe163abfb32bccfd968 to your computer and use it in GitHub Desktop.
KS – Video format detection
static hlsSupported() {
const $vid = document.createElement('video')
return (
$vid.canPlayType('application/x-mpegURL codecs="avc1.42E01E"') ||
$vid.canPlayType('application/vnd.apple.mpegurl')
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment