drm

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

Best Shareware lock for Delphi Win32 [closed]

ぐ巨炮叔叔 提交于 2019-12-30 02:23:05
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Same intro as my last question: I am re-writing and/or consolidating a bunch of my "app framework" classes (basic mainform, about box, locking routines & purchase linking, auto-update, datamodule initializer, etc) -- Basically, I have a number of small potential shareware apps that I'm wanting to get out the

Getting XHTML from DRM EPUB

微笑、不失礼 提交于 2019-12-23 03:25:10
问题 I'm currently using the Adobe RMSDK to read DRM EPUBs. It renders an EPUB page as an image, and sends it back to be displayed on the device. I would really like to have access to the EPUBs XHTML, to display it in a webview. I have been able to unzip the EPUBs and browse the different chapters, but the content is still encrypted. Is there anyone that have any idea how I can accomplish this? I'm using Xcode 4.2 , Objective C/C++ Regards, EZFrag EDIT 1: I already combed through the whole RMSDK,

How to prevent iOS11 Built in screen recording feature just like Amazon Prime for protected DRM content?

此生再无相见时 提交于 2019-12-22 17:05:50
问题 WideVine iOS CDM Player is playing DRM Protected content. Now, iOS11 introduce a new built-in feature i.e Screen Recording. Using this feature a user can easily capture or record DRM Protected content. I used iOS11 Beta isCaptured and UIScreenCapturedDidChange Property and try to prevent DRM protected content to recorded, But This isCaptured and UIScreenCapturedDidChange working fine when the first time I Launch my Application. Now, when I Kill my running App(Terminate the application) and

How to prevent iOS11 Built in screen recording feature just like Amazon Prime for protected DRM content?

别说谁变了你拦得住时间么 提交于 2019-12-22 17:05:32
问题 WideVine iOS CDM Player is playing DRM Protected content. Now, iOS11 introduce a new built-in feature i.e Screen Recording. Using this feature a user can easily capture or record DRM Protected content. I used iOS11 Beta isCaptured and UIScreenCapturedDidChange Property and try to prevent DRM protected content to recorded, But This isCaptured and UIScreenCapturedDidChange working fine when the first time I Launch my Application. Now, when I Kill my running App(Terminate the application) and

How to encrypt WebM or MP4 file using ClearKey and then play it

好久不见. 提交于 2019-12-21 20:39:51
问题 I'm currently researching the subject of encrypting and playing encrypted videos in browser. I already have some successes with castlabs' DRMToday and Shaka Player while using Widevine. Now I'm trying to encrypt video without external services using ClearKey and play it in Chrome (using whatever js player which can handle). I did manage to encrypt single mp4 file using MP4Box (and mse-eme for creating crypt configuration) but I have no idea how to play it in browser. HTML5's Video didn't even

Determine DRM system supported by browser

不羁的心 提交于 2019-12-21 11:37:44
问题 I've trying to find out how to determine which DRM system browser is using. And in fact, only chrome say it is use 'com.widevine.alpha' where IE & Safari (Win) throw error on 'requestMediaKeySystemAccess', and firefox do not even try to say it use 'com.adobe.acccess' =] function isKeySystemSupported(keySystem) { var dfd = Q.defer(); console.log('check: ', keySystem); navigator.requestMediaKeySystemAccess(keySystem, [{contentType: 'video/webm; codecs="vp9"'}]).then(function() { dfd.resolve

Determine DRM system supported by browser

蹲街弑〆低调 提交于 2019-12-21 11:37:12
问题 I've trying to find out how to determine which DRM system browser is using. And in fact, only chrome say it is use 'com.widevine.alpha' where IE & Safari (Win) throw error on 'requestMediaKeySystemAccess', and firefox do not even try to say it use 'com.adobe.acccess' =] function isKeySystemSupported(keySystem) { var dfd = Q.defer(); console.log('check: ', keySystem); navigator.requestMediaKeySystemAccess(keySystem, [{contentType: 'video/webm; codecs="vp9"'}]).then(function() { dfd.resolve

How to implement Clear-Key video encryption in PHP and play it in HTML [closed]

徘徊边缘 提交于 2019-12-21 09:06:30
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . I want to implement video encryption in php and play encrypted video in HTML5 video. I have read some documents about it: https://en.wikipedia.org/wiki/Encrypted_Media_Extensions https://w3c.github.io/encrypted-media/ And I know there are alternative tools and services that I can

How to protect Digital Content (PDF) inside my iOS app?

微笑、不失礼 提交于 2019-12-20 23:30:55
问题 This question is mainly about protecting the content inside my iOS app. I intend to make an app that will download a lot of content (mainly PDF files) on user request. Once these PDFs are downloaded, they will be stored locally for easy offline access. Now, I don't want anyone to get hold of the .ipa file and manage to extract the PDF files. If this is not possible, is it possible that even if they extract the PDFs, they canNOT view it or run them? I am not sure how to handle this. Any