DRM samples use wrong protData syntax
Created by: slhck
The samples at:
- https://github.com/Dash-Industry-Forum/dash.js/blob/development/samples/drm/playready.html
- https://github.com/Dash-Industry-Forum/dash.js/blob/development/samples/drm/clearkey.html
- https://github.com/Dash-Industry-Forum/dash.js/blob/development/samples/drm/widevine.html
use incorrect syntax for specifying the protData
. Per the type definitions, this should be:
{
"serverURL": "https://drm-widevine-licensing.axtest.net/AcquireLicense",
"httpRequestHeaders": {
"X-AxDRM-Message": "..."
}
}
And not:
{
"com.widevine.alpha": {
"serverURL": "https://drm-widevine-licensing.axtest.net/AcquireLicense",
"httpRequestHeaders": {
"X-AxDRM-Message": "..."
}
}
}