Dhaval Patel
Dhaval Patel

Reputation: 726

Playing DRM protected video issues in AVPlayerViewController

I'm developing an iOS application of playing video app, some of the videos are DRM protected and not played in AVPlayerViewController. Please help me out in playing those videos. I have referred FairPlay Streaming notes but unable to get anything out of it.

Upvotes: 4

Views: 4758

Answers (1)

Durdu
Durdu

Reputation: 4849

If you are streaming Fairplay DRM, you will need to implement Apple's Fairplay implementation for this: https://developer.apple.com/streaming/fps/

If you are using other types of encryption I would recommend going to something 3rd party. Example Playready for Smooth Streaming use something like Inside Secure's solution. For more info about the natively supported drm and adaptive stream types per platform check this: http://www.drmtoday.com/platforms

Additional info: The trend is for developers to adopt DRM on a platform by platform basis, rather than one DRM for all.

Upvotes: 1

Related Questions