Skip to content

Instantly share code, notes, and snippets.

@xxzefgh
Last active August 3, 2017 09:54
Show Gist options
  • Save xxzefgh/c700ed16863c201ced1a2cb34933211f to your computer and use it in GitHub Desktop.
Save xxzefgh/c700ed16863c201ced1a2cb34933211f to your computer and use it in GitHub Desktop.
const vp9CodecType = 'video/webm; codecs="vp9"'
function checkMediaSourceWay() {
return 'MediaSource' in window && MediaSource.isTypeSupported(vp9CodecType)
}
function checkHTMLMediaElementWay() {
return document.createElement('video').canPlayType(vp9CodecType) === 'probably'
}
export function canPlayVP9() {
return checkMediaSourceWay() || checkHTMLMediaElementWay()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment