Is there a way to generate a customised playlist? #1617
|
Like right now playlists are separated by category, language, broadcast area, and sources. Is there a way to make a custom playlist that has more granular filters? like say have one that is sports and news channels in Canada and the USA, and only in the english language? Like a docker image you can run on your own server that can do that, and can also scan for all geoblocked content or not working content and remove them from your playlist (or access them through a vpn), and then generate a guide for the new playlist? Then i can link jellyfin to the playlist and the guide information and it all works |
Replies: 1 comment 1 reply
|
There is not a single official URL builder for "sports + news, Canada + USA, English, only working/non-geoblocked" as one hosted playlist, but the data to build it is available. The hosted playlists are grouped one dimension at a time: category playlists such as For the intersection you described, use the JSON API instead of trying to combine the static M3U files. The useful endpoints are:
So your generator would join those by channel/feed, then keep channels where category is The one part I would not treat as a static filter is "working" or "geoblocked". The stream If this answers the approach, please mark the reply as the answer. |
There is not a single official URL builder for "sports + news, Canada + USA, English, only working/non-geoblocked" as one hosted playlist, but the data to build it is available. The hosted playlists are grouped one dimension at a time: category playlists such as
categories/news.m3uandcategories/sports.m3u, language playlists such aslanguages/eng.m3u, and country playlists such ascountries/ca.m3u/countries/us.m3u.For the intersection you described, use the JSON API instead of trying to combine the static M3U files. The useful endpoints are:
https://iptv-org.github.io/api/channels.jsonfor channel metadata, includingcountry,categories, andis_nsfwhttps://iptv-org.github.io/api/fe…