--- title: MediaKeySession slug: Web/API/MediaKeySession tags: - API - Audio - EncryptedMediaExtensions - Interface - Media - MediaKeySession - NeedsExample - NeedsTranslation - Reference - TopicStub - Video translation_of: Web/API/MediaKeySession ---

{{APIRef("EncryptedMediaExtensions")}}{{SeeCompatTable}}

The MediaKeySession interface of the EncryptedMediaExtensions API represents a context for message exchange with a content decryption module (CDM).

Properties

{{domxref("MediaKeySession.closed")}} {{readonlyInline}}
Returns a {{jsxref("Promise")}} signaling when a MediaKeySession closes. This promise can only be fulfilled and is never rejected. Closing a session means that licenses and keys associated with it are no longer valid for decrypting media data. 
{{domxref("MediaKeySession.expiration")}} {{readonlyInline}}
The time after which the keys in the current session can no longer be used to decrypt media data, or NaN if no such time exists. This value is determined by the CDM and measured in milliseconds since January 1, 1970, UTC. This value may change during a session lifetime, such as when an action triggers the start of a window.
{{domxref("MediaKeySession.keyStatuses")}} {{readonlyInline}}
Contains a reference to a read-only {{domxref("MediaKeyStatusMap")}} of the current session's keys and their statuses.
{{domxref("MediaKeySession.sessionId")}} {{readonlyInline}}
Contains a unique string generated by the CDM for the current media object and its associated keys or licenses.

Event handlers

{{domxref("MediaKeySession.onkeystatuseschange")}}
Sets the {{domxref('EventHandler')}} called when there has been a change in the keys in a session or their statuses.
{{domxref("MediaKeySession.onmessage")}}
Sets the {{domxref('EventHandler')}} called when the content decryption module has generated a message for the session.

Methods

{{domxref("MediaKeySession.close()")}}

Returns a {{jsxref("Promise")}} after notifying the current media session is no longer needed and that the CDM should release any resources associated with this object and close it.

{{domxref("MediaKeySession.generateRequest()")}}
Returns a {{jsxref("Promise")}} after generating a media request based on initialization data.
{{domxref("MediaKeySession.load()")}}
Returns a {{jsxref("Promise")}} that resolves to a boolean value after loading data for a specified session object. 
{{domxref("MediaKeySession.remove()")}}
Returns a {{jsxref("Promise")}} after removing any session data associated with the current object.
{{domxref("MediaKeySession.update()")}}
Returns a {{jsxref("Promise")}} after loading messages and licenses to the CDM.

Examples

// TBD

Specifications

Specification Status Comment
{{SpecName('EME', '#mediakeysession-interface', 'MediaKeySession')}} {{Spec2('EME')}} Initial definition.

Browser compatibility

{{CompatibilityTable}}
Feature Chrome Edge Firefox (Gecko) Internet Explorer Opera Safari (WebKit)
Basic support {{CompatChrome(42.0)}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}}
onkeystatuseschange and onmessage {{CompatChrome(55.0)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatOpera(42)}} {{CompatUnknown}}
Feature Android Android Webview Edge Firefox Mobile (Gecko) Firefox OS IE Mobile Opera Mobile Safari Mobile Chrome for Android
Basic support {{CompatNo}} {{CompatChrome(43.0)}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatVersionUnknown}} {{CompatUnknown}} {{CompatChrome(42.0)}}
onkeystatuseschange and onmessage {{CompatNo}} {{CompatChrome(55.0)}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatUnknown}} {{CompatOperaMobile(42)}} {{CompatUnknown}} {{CompatChrome(55.0)}}