add new DRM player reference

This commit is contained in:
hyugogirubato 2024-10-26 15:18:05 +02:00
parent 08852fa082
commit 46e3ad9052
1 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,5 @@
from pathlib import Path
from keydive.vendor import Vendor
# https://developer.android.com/ndk/guides/cpp-support
@ -121,3 +123,10 @@ CDM_FUNCTION_API = {
'PrepareKeyRequest',
'getOemcryptoDeviceId'
}
# https://github.com/kaltura/kaltura-device-info-android
DRM_PLAYER = {
'package': 'com.kaltura.kalturadeviceinfo',
'path': Path(__file__).parent.parent / 'docs' / 'server' / 'kaltura.apk',
'url': 'https://github.com/kaltura/kaltura-device-info-android/releases/download/t3/kaltura-device-info-release.apk'
}