Skip to content

Instantly share code, notes, and snippets.

@kypflug

kypflug/eme-1.js Secret

Last active October 14, 2015 23:57
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 kypflug/d19b846047e0b41bad12 to your computer and use it in GitHub Desktop.
Save kypflug/d19b846047e0b41bad12 to your computer and use it in GitHub Desktop.
if (window.navigator.requestMediaKeySystemAccess) {
// unprefixed EME (Edge/Chrome)
videoElement.addEventListener('encrypted', this.getNewKeySession, false);
}
else {
// prefixed EME (IE11)
videoElement.addEventListener('msneedkey', this.getNewPrefixedKeySession, false);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment