Kodi Community Forum
Dynamic m3u8 playlist - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+---- Forum: PVR (https://forum.kodi.tv/forumdisplay.php?fid=136)
+---- Thread: Dynamic m3u8 playlist (/showthread.php?tid=379177)



Dynamic m3u8 playlist - Chatty - 2024-10-18

Hi,

I'd like to automate the following and feed it to IPTV simple client:

(echo \#EXTM3U;curl server/stations.json|jq -r '...')>playlist.m3u8

So anytime when the simple client wants to load the playlist I'd like to feed it the above file. Is that already possible or what would be the best way to achieve this?


RE: Dynamic m3u8 playlist - izprtxqkft - 2024-10-18

(7 hours ago)Chatty Wrote: what would be the best way to achieve this?

write an addon to do it - https://kodi.wiki/view/Add-on_development


RE: Dynamic m3u8 playlist - Chatty - 2024-10-18

Could you elaborate a little what kind of AddOn that would be? Are you thinking of a tiny web server AddOn or are there other ways of providing that info to IPTV simple client?