I am using AWS Elemental MediaConvert to convert mp4 to hls it works fine. now i tried to implement encryption and decryption when conversion hls. I created job like below
encryption done successfully. but when I tried to play video using video.js
json file for encryption
"Encryption": {
"EncryptionMethod": "AES128",
"InitializationVectorInManifest": "INCLUDE",
"StaticKeyProvider": {
"StaticKeyValue": "00112233445566778899AABBCCDDEEFF",
"Url": "enc.key"
},
"Type": "STATIC_KEY"
}
I am getting issues ts file not loading and unable to play video
any steps which i missed from above
Looking at your configuration there is an issue with the 'URL' value
enc.key
As per the tooltip:
Relates to DRM implementation. The location of the license server used for protecting content.
You need to specify a location on the web where your
enc.key
can be accessed. In my case, this is an Amazon S3 bucket fronted by a CloudFront distribution.Static key encryption parameters