The encrypted
event is fired when the media encounters some initialization data indicating it is encrypted.
This event is not cancelable and does not bubble.
The encrypted
event is fired when the media encounters some initialization data indicating it is encrypted.
This event is not cancelable and does not bubble.
Use the event name in methods like addEventListener()
, or set an event handler property.
js
addEventListener("encrypted", (event) => {}); onencrypted = (event) => {};
A MediaEncryptedEvent
. Inherits from Event
.
MediaEncryptedEvent.initDataType
Read only
Returns a case-sensitive string with the type of the format of the initialization data found.
MediaEncryptedEvent.initData
Read only
Returns an ArrayBuffer
containing the initialization data found. If there is no initialization data associated with the format, it returns null
.
Specification |
---|
Encrypted Media Extensions # dom-evt-encrypted |
Encrypted Media Extensions # dom-htmlmediaelement-onencrypted |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
encrypted_event |
42 | 13 | 38 | No | 29 | 12.1 | 42 | 42 | 38 | 29 | 12.2 | 4.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/encrypted_event