Decrypting widevine DRM protected video in android using MediaDrm

∥☆過路亽.° 提交于 2020-01-02 13:32:52

问题


I am trying to decrypt widevine DRm protected media file using Android's MediaDrm API. But MediaDrm is instantiated using UUId( of DRM-scheme). Android developer site says

"App accesses the DRM-scheme-identifying UUID, typically from metadata in the content, and uses this UUID to construct an instance of a MediaDrm object that is able to support the DRM scheme required by the content". (www.developer.android.com/reference/android/media/MediaDrm.html).

So I tried to get UUID using MediaExtractor.getpsshInfo() but it returned a null object. Then I tried DrmManagerClient.getMetadata(uri of media content) but again this method also returned null.

I tried this on the follwing widevine demo uri:

content URL: http://commondatastorage.googleapis.com/wvmedia/starz_main_720p_6br_tp.wvm
Licence server: https://license.uat.widevine.com/getlicense/widevine

although after aquiring rights using DrmManagerClient API I am able to play the video in Android's native MediaPLayer( VideoView) but I want to decrypt the media file using Android's MediaDrm API and want to get unencrypted data ,which I am not able to do because I am not getting proper UUID value. Can someone point me in the right direction to achieve this.

Or Can some one help me in accessing a DRM scheme - UUID value?

Thanks


回答1:


mediaDRM is designed for EME Common Encryption playback. See https://developer.android.com/reference/android/media/MediaDrm.html

The Widevine content you have listed is not in the Common Encryption format and therefore, is incompatible.



来源:https://stackoverflow.com/questions/24510294/decrypting-widevine-drm-protected-video-in-android-using-mediadrm

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!