This article needs a technical review. How you can help.
The Navigator.requestMediaKeySystemAccess()
method returns a Promise
for a MediaKeySystemAccess
object.
SyntaxEdit
Navigator.requestMediaKeySystemAccess(keySystem, supportedConfigurations).then(function(mediaKeySystemAccess) { ... });
Parameters
- keySystem
- A
DOMString
identifier of the key system. For examplecom.example.somesystem
ororg.w3.clearkey
. - supportedConfigurations
- A non-empty
Array
ofMediaKeySystemConfiguration
objects. The first element with a satisfiable configuration will be used.
Note: Firefox implements an older version of the specification and does not require the second, supportedConfigurations
, parameter to be defined. This is likely to change in the future (bug 1180482).
Return value
A Promise
that resolves to a MediaKeySystemAccess
object. If the given keySystem
is not supported or none of the the requested configurations are satisfiable, the returned Promise
is rejected with a DOMException
whose name is NotSupportedError
.
SpecificationsEdit
Specification | Status | Comment |
---|---|---|
Encrypted Media Extensions The definition of 'requestMediaKeySystemAccess()' in that specification. |
Working Draft | Initial definition |