From 20355d1cf85e9a62e101627c68b896bf4ea8a739 Mon Sep 17 00:00:00 2001 From: thehack904 <35552907+thehack904@users.noreply.github.com> Date: Sat, 11 Oct 2025 16:02:06 -0500 Subject: [PATCH] Update app.py Add two active (tested) IPTV Tuners (Plex / Tubi). These were to show that you can copy .m3u link into both the .xml and .m3u lines and they will work automatically. --- app.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app.py b/app.py index be63923..cac8920 100644 --- a/app.py +++ b/app.py @@ -133,6 +133,14 @@ def init_tuners_db(): "Tuner 2": { "m3u": "http://iptv2.lan:8500/iptv/channels.m3u", "xml": "http://iptv2.lan:8500/iptv/xmltv.xml" + }, + "Plex": { + "m3u": "https://raw.githubusercontent.com/iptv-org/iptv/refs/heads/master/streams/us_plex.m3u", + "xml": "https://raw.githubusercontent.com/iptv-org/iptv/refs/heads/master/streams/us_plex.m3u" + }, + "Tubi": { + "m3u": "https://raw.githubusercontent.com/iptv-org/iptv/refs/heads/master/streams/us_tubi.m3u", + "xml": "https://raw.githubusercontent.com/iptv-org/iptv/refs/heads/master/streams/us_tubi.m3u" } } for name, urls in defaults.items():