hdcp
v3.1.0
Published
Detect HDCP version in browser
Maintainers
Readme
HDCP
Check HDCP version for a key system in browser.
Install
npm i --save-dev hdcp
Supported Browsers
⚠️ Please note that Safari currently does not support HDCP version detection.
Using
import { canDetectHdcpVersion, checkHdcpVersion, checkAllHdcpVersions } from 'hdcp';
console.log('Can detect HDCP version: ', canDetectHdcpVersion());
const status = await checkHdcpVersion('com.widevine.alpha', '1.0');
console.log('checkHdcpVersion: ', status);
const allVersions = await checkAllHdcpVersions('com.microsoft.playready.recommendation');
console.log('checkAllHdcpVersions: ', allVersions);