6001 - shaka error drm.requested_key_system_config_unavailable ()»6001 - shaka error drm.requested_key_system_config_unavailable ()
Close
6001 - shaka error drm.requested_key_system_config_unavailable ()

New Workspace Modernization Research from CDW

See how IT leaders are tackling workspace modernization opportunities and challenges.

6001 - Shaka Error Drm.requested_key_system_config_unavailable () Official

player.addEventListener('error', (event) => { if (event.detail.code === 6001) { document.getElementById('error-message').innerText = "Your browser doesn't support the required security for this film. Please update Chrome, Firefox, Safari, or Edge."; } }); Maya pushed the fix at 11:58 PM. Dr. Reid reloaded the page. The black screen vanished. Cybernetic Vampire III began playing, grainy and glorious.

The next morning, Maya documented the incident for her team: player

player.configure({ drm: { servers: { 'com.widevine.alpha': 'https://license.arthouse.com/widevine' } } }); The problem? The manifest file for Cybernetic Vampire III (and several other 4K remasters) contained multiple DRM schemes. But the player was asking for Widevine. When Widevine wasn't available (or the license server was down for that key system), Shaka threw the REQUESTED_KEY_SYSTEM_CONFIG_UNAVAILABLE error because it had no fallback. Reid reloaded the page

The error message translated to: "The video player asked the browser for a specific DRM system to unlock the movie, but the browser said, 'I don't have that, and you didn't give me a backup plan.'" Maya opened her browser's developer console and replicated the error. She saw the player trying to initialize a DRM system called "com.widevine.alpha" (the standard for Chrome and Firefox) but failing because the video file was actually encrypted for a different system: "com.microsoft.playready" (common in older Edge browsers). The next morning, Maya documented the incident for