How to implement video DRM in iOS

前端 未结 2 742
[愿得一人]
[愿得一人] 2021-02-05 12:15

I\'m looking to implement DRM in an iOS video player, but I\'m not sure how to implement this. In order to implement video DRM (while still using Apple\'s hardware accelerated H

相关标签:
2条回答
  • 2021-02-05 12:39

    A working solution is local http server. But the patent application was submitted by Authentec.

    http://www.google.com/patents/US20120284802

    0 讨论(0)
  • 2021-02-05 13:00

    You can begin decrypting the file into another file and playback that file as you decrypt. You'll need to let it buffer a few seconds worth of video, but it will work.

    Additionally you'll need to make sure that the moov atom is BEFORE the mdat atom in the file, otherwise it won't work. (AVFoundation, for example, creates MP4s where the moov atom comes after the mdat atom, and so they would need to be modified to work)

    0 讨论(0)
提交回复
热议问题