Skip to content

6001 -: Shaka Error Drm.requested_key_system_config_unavailable () ((new))

);

The DRM.RequestedKeySystemConfigUnavailable error, also known as Shaka Error 6001, occurs when the requested key system configuration is not available or supported by the browser or platform. This error is typically encountered when trying to play protected content using a Key System that is not supported or not properly configured. ); The DRM

Modern browsers restrict EME to "Secure Contexts" (HTTPS). Enable verbose logging in Shaka Player to see

Enable verbose logging in Shaka Player to see the exact Key System being requested: Core Causes of Error 6001 The most frequent

Verify that the browser actually supports the DRM system being requested.

player.getNetworkingEngine().registerRequestFilter((type, request) => if (type === shaka.net.NetworkingEngine.RequestType.LICENSE) // Ensure the correct license server is used per key system if (request.uris[0].includes('widevine') && !window.navigator.requestMediaKeySystemAccess) request.uris[0] = request.uris[0].replace('widevine', 'playready');

The (formally DRM.REQUESTED_KEY_SYSTEM_CONFIG_UNAVAILABLE ) indicates that Shaka Player is unable to find a Digital Rights Management (DRM) configuration that both the browser supports and the content requires. This error acts as a "handshake failure" between your media stream and the browser's Encrypted Media Extensions (EME). Core Causes of Error 6001 The most frequent reasons this error triggers include: