Axinom for DRM Key

has anyone ever used axinom for DRM key and the others? if yes, i wanted to ask

how to get my content ID and how to convert DRM_FAIRPLAY_IV, DRM_WIDEVINE_KID to hexadecimal format?

Hi @muhammad

The Content ID should be returned from Axinom when you ingest a new key.

As for converting BASE64 responses I typically use e.g. Base64 to Hex | Base64 Decode | Base64 Converter | Base64

If you want to use eg. Python, you can use something like:

-> % python3
Python 3.10.8 (main, Oct 21 2022, 22:22:30) [Clang 14.0.0 (clang-1400.0.29.202)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import base64
>>> base64.b64decode('cHl0aG9uLXRlc3Q=').hex()
'707974686f6e2d74657374'

I hope this helps.

BR
Peder