I want to change the Kodi application code so that it can be used in other IPTV applications.

kodi code:

HTML Code:
#KODIPROP:inputstream.adaptive.license_type=com.widevine.alpha 
#KODIPROP:inputstream.adaptive.license_key=https://example.com/?deviceId=example_key
#EXTINF:-1 tv-name="TV" tvg-logo="https://example/sgsK9jf3/tv.png", TV
https://example.com/TV.mpd
Example Android IPTV application code:

HTML Code:
#EXT-X-PLAYLIST-TYPE:VOD
#EXT-X-KEY:METHOD=URI="https://example.com/?deviceId=example_key"
#EXTINF:-1 tv-name="TV" tvg-logo="https://example/sgsK9jf3/tv.png", TV
https://example.com/TV.mpd
I need the m3u code to support the license key url and the mpd file, without using the kodiprop code. Thanks !