I have to develop a function that decrypt a DRM HLS content using video.js lib. I've retrieved about this issue and I found it(https://learn.microsoft.com/ko-kr/azure/media-services/previous/media-services-protect-hls-with-fairplay) So I've used playready as like as a below
const setPlayerForDashHLS = (src, type, key, licenseURL) => {
const customData = DRM_TYPE + SITE_ID + key;
player.src({
src: src,
type: type,
keySystems: {
'com.microsoft.playready': {
url: licenseURL,
licenseHeaders: {
'pallycon-customdata': customData
}
}
}
});
}
but It's not working to play DRM HLS video and not print anything about an error log. I want to know that how to play it.
There is an official plugin for VideoJS that supports DRM playback, leveraging the EME standard.
EME (Encrypted Media Standard) is a HTML5 extension to support playing encrypted media in a standard way - https://www.w3.org/TR/2017/REC-encrypted-media-20170918/)
You can see the VideoJS plugin here: https://github.com/videojs/videojs-contrib-eme
It includes instructions for configuring and playing back with PlayReady DRM.
Looking at the error message you are receiving:
This is generated by the platform or browser and indicates:
(https://developer.mozilla.org/en-US/docs/Web/API/Navigator/requestMediaKeySystemAccess)
Looking at your configuration above, one reason why you might get this could be playing back the video on a browser which does not support PlayReady. As a general (not absolute) rule the DRM's supported 'natively' by browsers and devices are at this time:
To try to minimise the overhead for video stream providers CENC (https://en.wikipedia.org/wiki/MPEG_Common_Encryption) allows you have a single stream protected by both PlayReady or Widevine.
Added to this, CMAF and the announced support for AES-CBC mode encryption by all major devices and browsers promises the ability to have a single media stream for encrypted HLS and DASH streams, but it will likely be some time before the announced support rolls out to all devices, meaning that now typically both HLS and DASH streams are typically required for maximum reach for streamed video.