shaka-project / shaka-player-embedded

Shaka Player in a C++ Framework
Apache License 2.0
238 stars 63 forks source link

Error widevine release version #181

Open franciscocarodiaz opened 3 years ago

franciscocarodiaz commented 3 years ago

I'm getting this error using release version:

[ERROR:/var/lib/jenkins/workspace/CDM_Arxan_Create_Release/oemcrypto-arxan/third_party/cdm/core/src/cdm_engine.cpp(1712):Decrypt] CdmEngine::Decrypt: session not found: Empty session ID [ERROR:/var/lib/jenkins/workspace/CDM_Arxan_Create_Release/oemcrypto-arxan/third_party/cdm/cdm/src/cdm.cpp(1203):decrypt] Key not available.

I'm trying to display a content with DRM. Do I have to do something special for this type of content?

TheModMaker commented 3 years ago

Are you seeing an error object or does the video just pause? Are there any other logs? This usually indicates the license server didn't give us the required keys. Does the same content play in Shaka Player? Do you have a license filter? You need to call block(nil) at the end to indicate you're done.

franciscocarodiaz commented 3 years ago

-Are you seeing an error object or does the video just pause? The video doesn't start and console displays this error.

-Are there any other logs? This error message is displayed everytime nad the content is not played.

-Do you have a license filter? Yes, we do. But we are sending our creentials correctly.

-You need to call block(nil) at the end to indicate you're done. Yes, we are sending block(nil) at the end of the filter function.