-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add parsing of M3U8ExtXKey #17
Conversation
Add a m3u8 file example (just like 769.m3u8 in demo project) for demo to test it plz.
|
Hi, I've just added an example of encrypted file into the demo project directory. |
My man. More detail should be concerned with multi-key. See this:
There is a circumstance that has more than one key in M3U8 file. @interface M3U8MediaPlaylist : NSObject
@property (readonly, nonatomic, strong) M3U8ExtXKey *key; The property should not be handled like this. 😎 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#EXT-X-KEY
May be more than one
Hi, I've removed the parsing of the M3U8ExtXKey and added M3U8ExtXSessionKey parsing directly in the master playlist. Thanks |
Thx for your contribution.🎉 |
already solved thx man |
@PierrePerrin hello. I've refactored X-Key & X-SessionKey function. |
Hi,
I've add the ability to parse the M3U8ExtXKey.
This could be useful for parsing content identifier for protected content such as FairPlay or HLS-AES content.
Thank you.