HTMLMediaElement: encrypted event - Web APIs | MDN
Syntax
Use the event name in methods like addEventListener(), or set an event handler property.
js
addEventListener("encrypted", (event) => { })
onencrypted = (event) => { }
Event type
A MediaEncryptedEvent. Inherits from Event.
Event properties
MediaEncryptedEvent.initDataTypeRead only-
Returns a case-sensitive string with the type of the format of the initialization data found.
MediaEncryptedEvent.initDataRead only-
Returns an
ArrayBuffercontaining the initialization data found. If there is no initialization data associated with the format, it returnsnull.
Specifications
| Specification |
|---|
| Encrypted Media Extensions # dom-htmlmediaelement-onencrypted |