How to make widevine with license key url on code m3u android iptv application?
Link : https://example.com/file.mpd
Widevine url license key : https://example.com/key?=12345
Example code IPTV.m3u :
#EXTM3U
#EXTINF:-1 tvg-name" TV", TV
https://example.com/file.mpd`
I tried with some attributes but it doesn't work like : #EXT-X-SESSION-KEY:METHOD=AES-128,URI="https://example.com/key?=12345"
I need explanation and code to make my program work. Thanks
I think you want to generate a HLS stream that is protected by Widevine DRM and with the correct information included in the HLS manifest.
The easiest way to do this is likely to look at an example from an existing packager - Shaka packager includes the example below, which create both DASH and HLS encrypted output with Widvine DRM. The link also includes test widevine credentials
(https://shaka-project.github.io/shaka-packager/html/tutorials/widevine.html)
If you are just tying to understand what the format of Widevine URL's look like in a HLS manifest, then the HLS RFC itself has an explanation and some examples (see section 8.3 of https://datatracker.ietf.org/doc/html/draft-pantos-hls-rfc8216bis-01) which includes:
One note on your question, you are using EXT-X-SESSION-KEY which is an optional mechanism when you have multiple playlists with media keys and you want to be able to preload them in a master playlist.