diff --git a/.github/workflows/deploy-stream-patches.yml b/.github/workflows/deploy-stream-patches.yml new file mode 100644 index 0000000..41baaa5 --- /dev/null +++ b/.github/workflows/deploy-stream-patches.yml @@ -0,0 +1,81 @@ +# Deploy the stream-department review site to its OWN Cloudflare Pages project. +# +# WHY THIS EXISTS +# Stream work lands on the `stream-patches` branch and is merged into main only +# after review. A diff is a poor review surface for it: the globe going from 82 +# nations to 199 is ONE line of void2-final.html, because the C array is a single +# line. What actually needs reviewing is whether the globe still looks right and +# whether the new nations carry streams — so this publishes the PATCHED BUILD, +# playable, next to the numbers behind each patch. +# +# It deploys a SEPARATE project (`stream-patches`), never void-app-d35c, so the +# live app is untouched until the branch is merged. Merging to main is what ships +# it, via deploy-pages.yml. +# +# Uses the same two secrets as deploy-pages.yml. The Pages project is created on +# first run if it does not exist yet. +name: Deploy stream patches review site + +on: + push: + branches: [stream-patches] + workflow_dispatch: + +# A second push while one deploy is mid-flight would race for the same project. +concurrency: + group: stream-patches-pages + cancel-in-progress: true + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 # the review site diffs against main; a shallow clone has no main + + - uses: actions/setup-node@v4 + with: + node-version: '20' + + - name: Fetch main to diff against + run: git fetch origin main:main || echo "no main on the remote yet — the site will show an empty diff" + + # Fail before publishing rather than shipping a build that black-screens. + # A broken C array takes the whole app down, and it is exactly what this + # branch edits, so this check is the point rather than a formality. + - name: Verify the patched build parses + run: | + node -e " + const fs=require('fs'); + const h=fs.readFileSync('void2-final.html','utf8'); + const re=/]*src=)[^>]*>([\s\S]*?)<\/script>/g; + let m,n=0,e=0; + while ((m=re.exec(h))) { n++; try { new Function(m[1]); } catch(err) { e++; console.error(err.message); } } + console.log('void2-final.html', n+' scripts', e+' errors', h.length+'B'); + const c=/const C\s*=\s*\[/.exec(h); + if(!c){ console.error('the C country array is gone'); process.exit(1); } + const from=h.indexOf('[',c.index); let d=0,k=from; + for(;kx[1]); + const dupes=isos.filter((x,i)=>isos.indexOf(x)!==i); + console.log('C array', isos.length+' nations', dupes.length+' duplicate ISO'); + if (e || dupes.length) process.exit(1); + " + + - name: Stage the review site + run: node scripts/streams/build-review-site.js --out public --base main + + - name: Create the Pages project if it does not exist + continue-on-error: true # already exists -> non-zero, which is fine + env: + CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} + CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + run: npx --yes wrangler@3 pages project create stream-patches --production-branch stream-patches + + - name: Deploy to Cloudflare Pages + uses: cloudflare/wrangler-action@v3 + with: + apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} + accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} + command: pages deploy public --project-name=stream-patches --branch=stream-patches --commit-dirty=true diff --git a/.gitignore b/.gitignore index 5ff31bb..22b6116 100644 --- a/.gitignore +++ b/.gitignore @@ -42,3 +42,6 @@ scripts/railway/.cache/ # Wrangler local cache — holds the Cloudflare account id + email .wrangler/ + +# Stream-patches review site (regenerated in CI by build-review-site.js) +/public/ diff --git a/NOTE-FOR-AGENTS.md b/NOTE-FOR-AGENTS.md new file mode 100644 index 0000000..fc802e7 --- /dev/null +++ b/NOTE-FOR-AGENTS.md @@ -0,0 +1,80 @@ +# Note for other agents working in this repo + +_Written 2026-09-17 by the stream-sources agent. Read this before you touch +`void2-final.html` or anything under `scripts/`._ + +## What I am doing + +Scaling the live-stream pool: more sources per nation, more nations, **same feel**. +The 7-news / 3-life mix in `WALL_MIX` is deliberately untouched. + +All of it is on the branch **`stream-patches`**. **Nothing is on `main`.** + +## I have not touched your work + +When I started, the working tree had uncommitted changes I did not make: + +``` +copy33thevoid.html +void-app/assets/void.html +void-app/src/core/feed/bluesky.ts +void-app/src/features/feed/format.ts +void-proxy/public/index.html +void-proxy/public/void.html +scripts/verify-perf.mjs (untracked) +void2-final.html (reels / vwAttach / liveWake / PeerTube / bluesky hunks) +``` + +I left every one of them alone. To avoid touching them I did my work in a **separate +git worktree** (`D:\stream dept\wt`), so my commits contain only my own files. Your +changes are still sitting uncommitted in the main tree — **please commit them**, they +are currently unprotected. + +`main` also advanced from `9b057b7` to `8659536` while I was working, so more than +one of us is active here. + +## ⚠️ The one thing that will bite you + +**`void2-final.html` is being edited on both sides.** + +My edits to it are deliberately tiny and confined to two places: + +| what | where | +|---|---| +| the `C` country array — one line, 82 → 199 nations | ~line 2522 | +| the `IPTV_SOURCES:GENERATED` block — regenerated, do not hand-edit | ~line 2158 | + +Everything else in that file is yours. If you commit your `void2-final.html` work +before `stream-patches` merges, the merge should resolve cleanly — the hunks are far +apart. **If you regenerate the whole file from a template or reformat it, my changes +will be silently lost.** + +## What changed, and why it matters to you + +- **The globe now holds 199 nations, not 82.** This is load-bearing for more than the + globe: `scripts/build-iptv-sources.js` maps ISO-2 → country name by *reading the `C` + array*, so any nation missing from `C` has its streams discarded before they are + ever probed. If you add or remove entries in `C`, you are adding or removing + stream coverage. +- **The stream pool went 508 → 2,186 streams across 154 nations.** It is baked into + the HTML by `scripts/inject-iptv.js` as a string (~268KB raw, 49KB brotli). +- `scripts/streams/` is new and is mine: `build-nations.js`, `report.js`, + `build-review-site.js`. +- I fixed a filter bug in `build-iptv-sources.js` that the nation expansion would + otherwise have triggered — with "Congo", "Guinea" and "Sudan" now on the globe, the + "is this channel about a different nation?" check was about to delete the entire + catalogues of DR Congo, Equatorial Guinea and South Sudan. + +## If you need to regenerate the builds + +`copy33thevoid.html` and `void-app/assets/void.html` are generated from +`void2-final.html` by `node build.js`. I have **not** run it, so on `stream-patches` +those two are stale relative to the new nation list. Run `node build.js` after the +merge, not before — otherwise you will bake in a half-merged app. + +## Review before merge + +The branch publishes its own Cloudflare Pages site (project `stream-patches`, via +`.github/workflows/deploy-stream-patches.yml`) with the patched build playable, so the +globe can be checked before any of this reaches `main`. It deploys **only** that +project — `void-app-d35c`, the live app, is never touched by this branch. diff --git a/scripts/build-iptv-sources.js b/scripts/build-iptv-sources.js index 8626a93..7910e5c 100644 --- a/scripts/build-iptv-sources.js +++ b/scripts/build-iptv-sources.js @@ -91,13 +91,27 @@ const NATION_ALIASES = { 'North Korea': ['dprk', 'korean', 'choson'], 'South Korea': ['korean'], 'France': ['french'], 'Germany': ['deutsch', 'german'], 'Saudi Arabia': ['saudi'], 'Somalia': ['somali'], }; +/** + * A nation whose name CONTAINS another nation's name as a whole word cannot be + * tested against it: every channel in DR Congo says "Congo", every channel in + * Equatorial Guinea says "Guinea", every channel in South Sudan says "Sudan". + * Before the globe held 199 nations this never fired, because none of those + * shorter names were placed. Now they are, and without this the longer nation + * loses its entire catalogue to the shorter one. + */ +const containsNation = (own, other) => { + const w = ' ' + own.toLowerCase() + ' '; + return w.includes(' ' + other.toLowerCase() + ' '); +}; function mentionsOtherNation(label, own, names) { const t = ' ' + String(label).toLowerCase().replace(/[^a-z0-9À-￿]+/g, ' ') + ' '; - if (/palestin/.test(t)) return 'Palestine'; + // Palestine is a nation on the globe now, so this is only a foreign mention + // when some OTHER nation is the one carrying the channel. + if (/palestin/.test(t)) return own === 'Palestine' ? null : 'Palestine'; const ownWords = [own.toLowerCase(), ...(NATION_ALIASES[own] || [])]; if (ownWords.some(w => t.includes(' ' + w + ' '))) return null; // names itself: its own for (const n of names) { - if (n === own) continue; + if (n === own || containsNation(own, n)) continue; for (const w of [n.toLowerCase(), ...(NATION_ALIASES[n] || [])]) if (t.includes(' ' + w + ' ')) return n; } // A foreign-language service ("BBC Arabic", "CGTN Russian") speaks to other nations. diff --git a/scripts/inject-iptv.js b/scripts/inject-iptv.js index 7662dbd..3dbb8c1 100644 --- a/scripts/inject-iptv.js +++ b/scripts/inject-iptv.js @@ -73,13 +73,21 @@ const newSrc = 'src:shuffle([...(CAM_SOURCES[n]||[]),...(RAW_FOOTAGE[n]||[])])' const legacySrc = 'src:shuffle([...(CAM_SOURCES[n]||[]),...(RAW_FOOTAGE[n]||[])])' + '.concat(shuffle([...((typeof IPTV_SOURCES!=="undefined"&&IPTV_SOURCES[n])||[])]))'; if (html.includes(legacySrc)) html = html.replace(legacySrc, newSrc); -if (html.includes(newSrc)) { +// wallSlots was since rewritten around WALL_MIX, which reads the pool as +// const news = shuffle(iptvFor(n).filter(usable)); +// None of the three literal spellings above survive that rewrite, so this +// script warned "NOT wired" on a build where the pool was, in fact, wired — +// a false alarm that would eventually be believed. Ask the real question +// (does anything call iptvFor?) before falling back to patching a literal. +if (/\biptvFor\s*\(\s*n\s*\)/.test(html)) { + console.log('wallSlots reads the pool via iptvFor(n)'); +} else if (html.includes(newSrc)) { console.log('wallSlots already merges IPTV_SOURCES'); } else if (html.includes(oldSrc)) { html = html.replace(oldSrc, newSrc); console.log('wallSlots now merges IPTV_SOURCES (appended, so curated cams still lead)'); } else { - console.warn('WARN: wallSlots source-list pattern not found — block written but NOT wired'); + console.warn('WARN: nothing calls iptvFor() — block written but NOT wired'); } fs.writeFileSync(SRC, html); diff --git a/scripts/iptv-sources.generated.json b/scripts/iptv-sources.generated.json index 957a4f3..de52b93 100644 --- a/scripts/iptv-sources.generated.json +++ b/scripts/iptv-sources.generated.json @@ -1,24 +1,24 @@ { - "generated": "2026-09-13T22:11:27.834Z", + "generated": "2026-09-17T22:34:05.362Z", "note": "Generated by scripts/build-iptv-sources.js from iptv-org. Only channels FROM the nation; every URL served #EXTM3U over https with CORS (and a playable variant) at generation time. Re-run from a normal network to refresh.", - "count": 508, - "countries": 80, + "count": 2186, + "countries": 154, "sources": { "Netherlands": [ { "type": "hls", - "url": "https://takeoff.jetstre.am/?account=nhnieuws&file=live&output=playlist.m3u8&protocol=https&service=wowza&type=live", - "label": "NH" + "url": "https://stream.fomixmedia.nl/FomixTV/video.m3u8", + "label": "FomixTV" }, { "type": "hls", - "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/suzegroenewegzaal/index.m3u8?hd=1&keyframes=1&subtitles=live", - "label": "Tweede Kamer: Suze Groenewegzaal" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/plenairezaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Plenaire zaal" }, { "type": "hls", - "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/wttewaallvanstoetwegenzaal/index.m3u8?hd=1&keyframes=1&subtitles=live", - "label": "Tweede Kamer: Wttewaall van Stoetwegenzaal" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/evenementenkanaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Actualiteitenkanaal" }, { "type": "hls", @@ -27,2613 +27,11151 @@ }, { "type": "hls", - "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/evenementenkanaal/index.m3u8?hd=1&keyframes=1&subtitles=live", - "label": "Tweede Kamer: Actualiteitenkanaal" + "url": "https://takeoff.jetstre.am/?account=nhnieuws&file=live&output=playlist.m3u8&protocol=https&service=wowza&type=live", + "label": "NH" }, { "type": "hls", - "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/alettajacobszaal/index.m3u8?hd=1&keyframes=1&subtitles=live", - "label": "Tweede Kamer: Aletta Jacobszaal" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/troelstrazaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Troelstrazaal" }, { "type": "hls", - "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/maxvanderstoelzaal/index.m3u8?hd=1&keyframes=1&subtitles=live", - "label": "Tweede Kamer: Max van der Stoelzaal" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/wttewaallvanstoetwegenzaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Wttewaall van Stoetwegenzaal" }, { "type": "hls", - "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/enquetezaal/index.m3u8?hd=1&keyframes=1&subtitles=live", - "label": "Tweede Kamer: Enquetezaal" - } - ], - "Russia": [ + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/alettajacobszaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Aletta Jacobszaal" + }, { "type": "hls", - "url": "https://rt-srb.rttv.com/dvr/rtbalkan/playlist.m3u8", - "label": "RT Balkan" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/enquetezaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Enquetezaal" }, { "type": "hls", - "url": "https://stream.smotrim.ru/hls2/russia24nl_smotrim/playlist_5.m3u8", - "label": "Russia-24" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/maxvanderstoelzaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Max van der Stoelzaal" }, { "type": "hls", - "url": "https://streaming.televizor-24-tochka.ru/live/28.m3u8", - "label": "Crimea 24" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/thorbeckezaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Thorbeckezaal" }, { "type": "hls", - "url": "https://stream8.cinerama.uz/1219/tracks-v1a1/mono.m3u8", - "label": "Mir 24" + "url": "https://livestreaming.b67buv2.tweedekamer.nl/live/suzegroenewegzaal/index.m3u8?hd=1&keyframes=1&subtitles=live", + "label": "Tweede Kamer: Suze Groenewegzaal" }, { "type": "hls", - "url": "https://streaming.astrakhan.ru/astrakhan24/playlist.m3u8", - "label": "Astrahan 24" + "url": "https://ms2.mx-cd.net/dtv-02/260-2403096/Regio90TV.smil/playlist.m3u8", + "label": "Regio90 TV" }, { "type": "hls", - "url": "https://live-tolknews.cdnvideo.ru/tolknews/stream/playlist.m3u8", - "label": "Tolk" + "url": "https://ms2.mx-cd.net/tv/184-782326/Omroep_Tilburg_TV.smil/playlist.m3u8", + "label": "Omroep Tilburg" }, { "type": "hls", - "url": "https://live-vgtrksmotrim.cdnvideo.ru/vgtrksmotrim/smotrim-live-03-srt.smil/playlist.m3u8", - "label": "360° News" + "url": "https://ms7.mx-cd.net/dtv-11/208-1258878/Omroep_Peelrand_TV.smil/playlist.m3u8", + "label": "Omroep Peelrand" }, { "type": "hls", - "url": "https://streaming.televizor-24-tochka.ru/live/27.m3u8", - "label": "Pervyy Respublikanskiy" - } - ], - "South Africa": [ + "url": "https://ms2.mx-cd.net/dtv-10/268-2641474/RTV_Purmerend_TV.smil/playlist.m3u8", + "label": "RTV Purmerend" + }, { "type": "hls", - "url": "https://cdnstack.internetmultimediaonline.org/ln24/ln24.stream/playlist.m3u8", - "label": "LN24SA" + "url": "https://ms7.mx-cd.net/tv/200-1006554/ORTS_TV.smil/playlist.m3u8", + "label": "ORTS TV" }, { "type": "hls", - "url": "https://sabctretalh.cdn.mangomolo.com/lehae/smil:lehae.stream.smil/master.m3u8", - "label": "SABC Lehae" + "url": "https://ms7.mx-cd.net/tv/290-3222276/RTV_Rijnstreek.smil/playlist.m3u8", + "label": "RTV Rijnstreek TV" }, { "type": "hls", - "url": "https://sabconetanw.cdn.mangomolo.com/news/smil:news.stream.smil/master.m3u8", - "label": "SABC News" + "url": "https://ms2.mx-cd.net/tv/272-2641704/Hoeksche_Waard_TV.smil/playlist.m3u8", + "label": "Omroep Hoeksche Waard" }, { "type": "hls", - "url": "https://cdn.freevisiontv.co.za/sttv/smil:brics.stream.smil/playlist.m3u8", - "label": "TV BRICS Africa" + "url": "https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/ustad/index.m3u8", + "label": "UStad" }, { "type": "hls", - "url": "https://cdn.freevisiontv.co.za/sttv/smil:tshwane.stream.smil/playlist.m3u8", - "label": "Tshwane TV" + "url": "https://ms2.mx-cd.net/tv/151-573495/WeertFM_TV.smil/playlist.m3u8", + "label": "WeertFM TV" }, { "type": "hls", - "url": "https://cdn.freevisiontv.co.za/sttv/smil:1kzn.stream.smil/playlist.m3u8", - "label": "1KZN TV" + "url": "https://ms2.mx-cd.net/tv/81-334271/VechtdalTV.smil/playlist.m3u8", + "label": "Vechtdal TV" }, { "type": "hls", - "url": "https://cdn.freevisiontv.co.za/sttv/smil:ctv.stream.smil/playlist.m3u8", - "label": "Cape Town TV" + "url": "https://d1axml5ozykh3g.cloudfront.net/live/omroepwest/tv/index.m3u8", + "label": "Omroep West" }, { "type": "hls", - "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_012/Stream/playlist.m3u8", - "label": "ROV TV" - } - ], - "Ukraine": [ + "url": "https://d5ms27yy6exnf.cloudfront.net/live/omroepflevoland/tv/index.m3u8", + "label": "Omroep Flevoland" + }, { "type": "hls", - "url": "https://dash4.antik.sk/live/test_espresso/playlist.m3u8", - "label": "Espreso TV" + "url": "https://d3slqp9xhts6qb.cloudfront.net/live/omroepbrabant/tv/index.m3u8", + "label": "Omroep Brabant" }, { "type": "hls", - "url": "https://dash2.antik.sk/live/test_uatv/playlist.m3u8", - "label": "FREEDOM" + "url": "https://d2od87akyl46nm.cloudfront.net/live/omroepgelderland/tvgelderland-hls/index.m3u8", + "label": "Omroep Gelderland" }, { "type": "hls", - "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/hrpl-abr/playlist.m3u8", - "label": "PTV" + "url": "https://stream.studiorhedenlive.nl/hlstv/stream.m3u8", + "label": "Studio Rheden" }, { "type": "hls", - "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/news24-abr/playlist.m3u8", - "label": "24 Kanal" + "url": "https://rrr.sz.xlcdn.com/?account=ndc_mediagroep&file=NDC2&output=playlist.m3u8&service=wowza&type=live", + "label": "Podium.TV 2" }, { "type": "hls", - "url": "https://dash2.antik.sk/live/test_kuskus_tv_atktv/playlist.m3u8", - "label": "Kus-Kus" + "url": "https://wl.tvrain.tv/transcode/ngrp:ses_all/playlist.m3u8", + "label": "TV Rain" }, { "type": "hls", - "url": "https://dash2.antik.sk/live/test_dacha_tv_atktv/playlist.m3u8", - "label": "Dacha" + "url": "https://d3isaxd2t6q8zm.cloudfront.net/live/omroepzeeland/tv/index.m3u8", + "label": "Omroep Zeeland" }, { "type": "hls", - "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/mega-abr/playlist.m3u8", - "label": "Mega" + "url": "https://d18rwjdhpr8dcw.cloudfront.net/live/rtvutrecht/rtvutrecht/index.m3u8", + "label": "RTV Utrecht" }, { "type": "hls", - "url": "https://dash2.antik.sk/live/telekanal_dim/playlist.m3u8", - "label": "DIM" - } - ], - "Australia": [ + "url": "https://d2n2i1jp4j20kw.cloudfront.net/nlpo/clr-nlpo/schietv/index.m3u8", + "label": "Schie TV" + }, { "type": "hls", - "url": "https://jukin-weatherspy-2-au.samsung.wurl.tv/playlist.m3u8", - "label": "WeatherSpy (AU)" + "url": "https://d3j015sg8r68y.cloudfront.net/nlpo/clr-nlpo/omroepvenray/index.m3u8", + "label": "Omroep Venray" }, { "type": "hls", - "url": "https://abc-news-dmd-streams-1.akamaized.net/out/v1/701126012d044971b3fa89406a440133/index.m3u8", - "label": "ABC News" + "url": "https://d11lnfpmek70tc.cloudfront.net/nlpo/clr-nlpo/bad78523/index.m3u8", + "label": "Salto 2" }, { "type": "hls", - "url": "https://live-hls-7agy.livepush.io/live_abr_cdn/nsitWAl1pTZtwca/emnmZbKZcO8RfwJR/index.m3u8", - "label": "ticker News" + "url": "https://d2ycaxub5x98iw.cloudfront.net/nlpo/clr-nlpo/merwetv/index.m3u8", + "label": "MerweTV" }, { "type": "hls", - "url": "https://skynewsau-live-premium.akamaized.net/hls/live/2105299/skynews/live.m3u8", - "label": "News24" + "url": "https://d1xcc1603wntzx.cloudfront.net/nlpo/clr-nlpo/oogtv/index.m3u8", + "label": "OOG TV" }, { "type": "hls", - "url": "https://c.mjh.nz/abc-act.m3u8", - "label": "ABC TV" + "url": "https://d1893oi5c6e5u0.cloudfront.net/nlpo/clr-nlpo/rpltvwoerden/index.m3u8", + "label": "RPL Woerden" }, { "type": "hls", - "url": "https://jtvs.ncare.live/Gznr84Woj7UEye3OPVeWq2ForboWAgdV/jonmobhumitv.stream/playlist.m3u8", - "label": "JonmoBhumi TV" + "url": "https://de68fck4398ez.cloudfront.net/nlpo/clr-nlpo/omroepdommelland/index.m3u8", + "label": "Omroep Dommelland" }, { "type": "hls", - "url": "https://d9quh89lh7dtw.cloudfront.net/public-output/index.m3u8", - "label": "Ausbiz TV" + "url": "https://d3go236bg358u.cloudfront.net/nlpo/clr-nlpo/omroeplandvancuijk/index.m3u8", + "label": "Omroep Land van Cuijk" }, { "type": "hls", - "url": "https://d1k6kax80wecy5.cloudfront.net/WFqZJc/index.m3u8", - "label": "Channel 44" + "url": "https://s-d15f8b0b.b.cdn.bluebillywig.com/live/omropfryslan/f8f68bd5/index.m3u8", + "label": "Omrop Fryslan" } ], - "Spain": [ + "Russia": [ { "type": "hls", - "url": "https://cdnapisec.kaltura.com/p/2288691/sp/228869100/playManifest/entryId/1_gnz6ity9/protocol/https/format/applehttp/flavorIds/1_a9gxgxzy,1_v71ryg4b,1_vbfvtjw6,1_obo1bqsx,1_3shk3s5d/a.m3u8", - "label": "CMM TV" + "url": "https://streaming.televizor-24-tochka.ru/live/28.m3u8", + "label": "Crimea 24" }, { "type": "hls", - "url": "https://fastly.live.brightcove.com/1846756479408303045/eu-central-1/6057955885001/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJob3N0IjoiZWFxNWh4LmVncmVzcy53YzQ3bTEiLCJhY2NvdW50X2lkIjoiNjA1Nzk1NTg4NTAwMSIsImVobiI6ImZhc3RseS5saXZlLmJyaWdodGNvdmUuY29tIiwiaXNzIjoiYmxpdmUtcGxheWJhY2stc291cmNlLWFwaSIsInN1YiI6InBhdGhtYXB0b2tlbiIsImF1ZCI6WyI2MDU3OTU1ODg1MDAxIl0sImp0aSI6IjE4NDY3NTY0Nzk0MDgzMDMwNDUifQ.o6wb_VA-TVxl3ERgr7FKLlaTjY7smErmsf73QAydySE/playlist-hls-dvr.m3u8", - "label": "A Punt" + "url": "https://streaming.astrakhan.ru/astrakhan24/playlist.m3u8", + "label": "Astrahan 24" }, { "type": "hls", - "url": "https://directes-tv-int.3catdirectes.cat/live-content/bondia-hls/master.m3u8", - "label": "Bon Dia TV" + "url": "https://wisewatchoott.wiseplayout.com/RT/master.m3u8", + "label": "RT" }, { "type": "hls", - "url": "https://ztnr.rtve.es/ztnr/3987218.m3u8", - "label": "La 2 Catalunya" + "url": "https://stream.smotrim.ru/hls2/russia24nl_smotrim/playlist_5.m3u8", + "label": "Russia-24" }, { "type": "hls", - "url": "https://congresodirecto.akamaized.net/hls/live/2037973/canalparlamento/master.m3u8", - "label": "Canal Parlamento" + "url": "https://stream8.cinerama.uz/1219/tracks-v1a1/mono.m3u8", + "label": "Mir 24" }, { "type": "hls", - "url": "https://ztnr.rtve.es/ztnr/1694255.m3u8", - "label": "24 Horas" + "url": "https://live-tolknews.cdnvideo.ru/tolknews/stream/playlist.m3u8", + "label": "Tolk" }, { "type": "hls", - "url": "https://amg01821-lovetv-amg01821c27-lg-es-6726.playouts.now.amagi.tv/playlist/amg01821-lovetvfast-lovenews-lges/playlist.m3u8", - "label": "Actualidad 360" + "url": "https://live-vgtrksmotrim.cdnvideo.ru/vgtrksmotrim/smotrim-live-03-srt.smil/playlist.m3u8", + "label": "360° News" }, { "type": "hls", - "url": "https://ztnr.rtve.es/ztnr/5473142.m3u8", - "label": "24 Horas Canarias" - } - ], - "Thailand": [ + "url": "https://dumatv.iptv2022.com/playlist.m3u8", + "label": "Duma TV" + }, { "type": "hls", - "url": "https://live.topnews.co.th/hls/topnews_a_720.m3u8", - "label": "Top News" + "url": "https://streaming.televizor-24-tochka.ru/live/27.m3u8", + "label": "Pervyy Respublikanskiy" }, { "type": "hls", - "url": "https://live-us1.thaimomo.com/live-as/chnews1-2/playlist.m3u8", - "label": "News1" + "url": "https://stream.smotrim.ru/hls2/solovievlive/playlist_6.m3u8", + "label": "Solovyov Live" }, { "type": "hls", - "url": "https://live-us1.thaimomo.com/live-as/chNation-3/playlist.m3u8", - "label": "Nation TV" + "url": "https://stream.smotrim.ru/hls2/russia_k/playlist_5.m3u8", + "label": "Russia-K" }, { "type": "hls", - "url": "https://live.x2.co.th/live/13livetv-th.m3u8", - "label": "13 Siam Thai" + "url": "https://fs.uplink.kz/perviy_kanal_sng/mono.m3u8?token=onlinetv", + "label": "Channel One CIS" }, { "type": "hls", - "url": "https://tv-live.tpchannel.org/live/tv.m3u8", - "label": "Thai Parliament Television" + "url": "https://fs.uplink.kz/lapki_live/mono.m3u8?token=onlinetv", + "label": "Lapki Live" }, { "type": "hls", - "url": "https://cdn-live.dltv.ac.th/dltv11.m3u8", - "label": "DLTV 11" + "url": "https://fs.uplink.kz/ntv_mir/mono.m3u8?token=onlinetv", + "label": "NTV Mir" }, { "type": "hls", - "url": "https://live-us1.thaimomo.com/live-as/chone-3/playlist.m3u8", - "label": "One 31" + "url": "https://fs.uplink.kz/ren/mono.m3u8?token=onlinetv", + "label": "REN TV International" }, { "type": "hls", - "url": "https://live-us1.thaimomo.com/live-as/chgmmchannel-3/playlist.m3u8", - "label": "GMM 25" - } - ], - "Germany": [ + "url": "https://fs.uplink.kz/sarafan/mono.m3u8?token=onlinetv", + "label": "Sarafan" + }, { "type": "hls", - "url": "https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg01821-lovetvfast-nachrichten360-samsungde/playlist.m3u8", - "label": "Nachrichten 360" + "url": "https://stream8.cinerama.uz/1231/tracks-v1a1/mono.m3u8", + "label": "Da Vinci" }, { "type": "hls", - "url": "https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk1.m3u8", - "label": "Parlamentsfernsehen 1" + "url": "https://stream8.cinerama.uz/1409/tracks-v1a1/mono.m3u8", + "label": "Doctor" }, { "type": "hls", - "url": "https://dwamdstream103.akamaized.net/hls/live/2015526/dwstream103/master.m3u8", - "label": "DW" + "url": "https://stream8.cinerama.uz/1416/tracks-v1a1/mono.m3u8", + "label": "Insayt TV" }, { "type": "hls", - "url": "https://ndrint.akamaized.net/hls/live/2020766/ndr_int/index.m3u8", - "label": "NDR Fernsehen International" + "url": "https://stream8.cinerama.uz/1037/tracks-v1a1/mono.m3u8", + "label": "T24" }, { "type": "hls", - "url": "https://daserste-live.ard-mcdn.de/daserste/live/hls/int/master.m3u8", - "label": "Das Erste" + "url": "https://stream8.cinerama.uz/1420/tracks-v1a1/mono.m3u8", + "label": "Priklyucheniya" }, { "type": "hls", - "url": "https://hls1.wtnet.de/noa4/apple/wifi6500.m3u8", - "label": "noa4 Norderstedt" + "url": "https://stream8.cinerama.uz/1427/tracks-v1a1/mono.m3u8", + "label": "Usadba" }, { "type": "hls", - "url": "https://hls1.wtnet.de/noa4hh/apple/wifi6500.m3u8", - "label": "noa4 Hamburg" + "url": "https://stream8.cinerama.uz/1031/tracks-v1a1/mono.m3u8", + "label": "Tochka otryva" }, { "type": "hls", - "url": "https://mcdn.br.de/br/fs/bfs_nord/hls/de/master.m3u8", - "label": "BR Fernsehen" - } - ], - "Kenya": [ + "url": "https://stream8.cinerama.uz/1062/tracks-v1a1/mono.m3u8", + "label": "TNV-Planet" + }, { "type": "hls", - "url": "https://stream-server9-jupiter.muxlive.com/hls/gctvghana/index.m3u8", - "label": "Great Commission TV" + "url": "https://stream8.cinerama.uz/1250/tracks-v1a1/mono.m3u8", + "label": "Zhivaya Planeta" }, { "type": "hls", - "url": "https://goliveafrica.media:9998/live/628e5c1991061/index.m3u8", - "label": "MERU TV" + "url": "https://stream8.cinerama.uz/1281/tracks-v1a1/mono.m3u8", + "label": "TV Centr International" }, { "type": "hls", - "url": "https://live-onesignal.royalmedia.co.ke/live/T-MxRsFebq6zx7k2QFMbLw.m3u8", - "label": "Inooro TV" + "url": "https://stream8.cinerama.uz/1044/tracks-v1a1/mono.m3u8", + "label": "Zagorodnaya Zhizn" }, { "type": "hls", - "url": "https://livecdn.premiumfree.tv/afxpstr/K24Backup/index.m3u8", - "label": "K24" + "url": "https://stream.smotrim.ru/hls2/ext_spbtv/playlist_5.m3u8", + "label": "Sankt-Peterburg" }, { "type": "hls", - "url": "https://goliveafrica.media:9998/live/6425a6efa15c8/index.m3u8", - "label": "MOF TV" + "url": "https://zabava-htlive.cdn.ngenix.net/hls/CH_OTR/variant.m3u8", + "label": "OTR" }, { "type": "hls", - "url": "https://goliveafrica.media:9998/live/6257fbe7383d6/index.m3u8", - "label": "YOUNIB Media TV" + "url": "https://streaming.astrakhan.ru/astrakhanrulivehd/playlist.m3u8", + "label": "Astrahan.Ru TV" }, { "type": "hls", - "url": "https://goliveafrica.media:9998/live/64227f58b8413/index.m3u8", - "label": "Capuchin TV" + "url": "https://streaming.astrakhan.ru/proastrakhanhd/index.m3u8", + "label": "Prodvizhenie" }, { "type": "hls", - "url": "https://livecdn.live247stream.com/mc/tv/playlist.m3u8", - "label": "Morning Cloud TV" - } - ], - "Poland": [ + "url": "https://streaming.astrakhan.ru/telplushd/playlist.m3u8", + "label": "Telplus" + }, { "type": "hls", - "url": "https://lowa8026-cmyk.github.io/tvpvod/399731.m3u8", - "label": "TVP World" + "url": "https://cdn4.skygo.mn/live/disk1/Pobeda/HLSv3-FTA/Pobeda.m3u8", + "label": "Pobeda" }, { "type": "hls", - "url": "https://stream.tvkstella.pl/stella/stella.m3u8", - "label": "TVK Stella" + "url": "https://stream.smotrim.ru/hls2/doverie/playlist_3.m3u8", + "label": "Moskva. Doveriye" }, { "type": "hls", - "url": "https://emisja2.btb.j00r.us/iptv/session/4/hls.m3u8", - "label": "BTB Info" + "url": "https://cdn4.skygo.mn/live/disk1/Vremya/HLSv3-FTA/Vremya.m3u8", + "label": "Vremya" }, { "type": "hls", - "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883008", - "label": "Dr G Medical Examiner" + "url": "https://fs.uplink.kz/bober/mono.m3u8?token=onlinetv", + "label": "Bober" }, { "type": "hls", - "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883037", - "label": "Hard Knocks Fighting Championship" + "url": "https://streaming.televizor-24-tochka.ru/live/25.m3u8", + "label": "Za! TV" }, { "type": "hls", - "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883095", - "label": "Car City Adventures" + "url": "https://stream8.cinerama.uz/1417/tracks-v1a1/mono.m3u8", + "label": "Zoopark" }, { "type": "hls", - "url": "https://ac76260b1102416c93f3d20958bfeb4b.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/RakutenTV-pl_Royalworld/playlist.m3u8", - "label": "Royalworld" + "url": "https://bsttv.bonus-tv.ru/cdn/salyam/playlist.m3u8", + "label": "Salyam" }, { "type": "hls", - "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883099", - "label": "Buzzfeed Unsolved" + "url": "https://stream.smotrim.ru/hls/planeta_rtr_asia/playlist.m3u8?entity=channel&id=511&sign=d1fe06cd922b67e412719536998fa43d", + "label": "RTR-Planeta" } ], - "France": [ + "South Africa": [ { "type": "hls", - "url": "https://live-cdn-stream-euw1.bfmb.bct.nextradiotv.com/master.m3u8", - "label": "BFM Business" + "url": "https://cdnstack.internetmultimediaonline.org/ln24/ln24.stream/playlist.m3u8", + "label": "LN24SA" }, { "type": "hls", - "url": "https://live.france24.com/hls/live/2037222-b/F24_AR_HI_HLS/master_5000.m3u8", - "label": "France 24" + "url": "https://sabconetanw.cdn.mangomolo.com/news/smil:news.stream.smil/master.m3u8", + "label": "SABC News" }, { "type": "hls", - "url": "https://d1ib1gsg71oarf.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-scp7wda722jph/BFM2_FR.m3u8", - "label": "BFM2" + "url": "https://sabctretalh.cdn.mangomolo.com/lehae/smil:lehae.stream.smil/master.m3u8", + "label": "SABC Lehae" }, { "type": "hls", - "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_TOULONVAR/index.m3u8?end=END&start=LIVE", - "label": "BFM Var" + "url": "https://cdn.freevisiontv.co.za/sttv/smil:ctv.stream.smil/playlist.m3u8", + "label": "Cape Town TV" }, { "type": "hls", - "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_NORMANDIE/index.m3u8?end=END&start=LIVE", - "label": "BFM Normandie" + "url": "https://cdn.freevisiontv.co.za/sttv/smil:1kzn.stream.smil/playlist.m3u8", + "label": "1KZN TV" }, { "type": "hls", - "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_DICI_HAUTEPROVENCE/index.m3u8?end=END&start=LIVE", - "label": "BFM DICI Haute-Provence" + "url": "https://cdn.freevisiontv.co.za/sttv/smil:brics.stream.smil/playlist.m3u8", + "label": "TV BRICS Africa" }, { "type": "hls", - "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_NICECOTEDAZUR/index.m3u8?end=END&start=LIVE", - "label": "BFM Cote d'Azur" + "url": "https://cdn.freevisiontv.co.za/sttv/smil:tshwane.stream.smil/playlist.m3u8", + "label": "Tshwane TV" }, { "type": "hls", - "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_TECHANDCO/index.m3u8?end=END&start=LIVE", - "label": "BFM Tech & Co" - } - ], - "India": [ + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_012/Stream/playlist.m3u8", + "label": "ROV TV" + }, { "type": "hls", - "url": "https://amg13737-amg13737c1-amgplt0016.playout.now3.amagi.tv/playlist/amg13737-amg13737c1-amgplt0016/playlist.m3u8", - "label": "Asianet News" + "url": "https://cdn.freevisiontv.co.za/sttv/smil:soweto.stream.smil/playlist.m3u8", + "label": "Soweto TV" }, { "type": "hls", - "url": "https://yuppnimrestreammum.akamaized.net/181224/smil:cvrnewseng.smil/playlist.m3u8?hdnts=st=1735898689~exp=1835898688~acl=*~hmac=f5fe24724fe05481e3841f9eb5ab8efdee0a3dd83645ae9dcf45703f525bab7b", - "label": "CVR English" + "url": "https://faithnow-hls.secdn.net/faithnow-holland-channel/play/FaithAfrica.smil/playlist.m3u8", + "label": "Faith Africa" }, { "type": "hls", - "url": "https://d2gvyg6lvauoko.cloudfront.net/230226/bigtvmalyalam/chunks.m3u8", - "label": "Big TV 24x7" + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_022/Stream/playlist.m3u8", + "label": "Homebase TV" }, { "type": "hls", - "url": "https://d2lk5u59tns74c.cloudfront.net/out/v1/eea48c6b61074052a2fa8532ff795ff1/index.m3u8", - "label": "DD Mizoram" + "url": "https://livestream2.bokradio.co.za/hls/Bok5c.m3u8", + "label": "BOKTV" }, { "type": "hls", - "url": "https://server.livelegitpro.in:9899/anbnews/anbnews/index.m3u8", - "label": "ANB News" - }, + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_002/Stream/playlist.m3u8", + "label": "NuView TV" + } + ], + "Ukraine": [ { "type": "hls", - "url": "https://feeds.intoday.in/bttv/itgd.m3u8", - "label": "BT TV" + "url": "https://dash2.antik.sk/live/test_uatv/playlist.m3u8", + "label": "FREEDOM" }, { "type": "hls", - "url": "https://legitpro.co.in/cnews/cnews/index.fmp4.m3u8", - "label": "Cnews Bharat" + "url": "https://dash4.antik.sk/live/test_espresso/playlist.m3u8", + "label": "Espreso TV" }, { "type": "hls", - "url": "https://asianetnews.vgcdn.net/vglive-sk-335835/playlist.m3u8", - "label": "Asianet Suvarna News" - } - ], - "Turkey": [ - { - "type": "hls", - "url": "https://yayin30.haber100.com/live/finansturk/playlist.m3u8", - "label": "Finans Turk TV" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/hrpl-abr/playlist.m3u8", + "label": "PTV (UA)" }, { "type": "hls", - "url": "https://tv.ensonhaber.com/haberglobal/haberglobal.m3u8", - "label": "Haber Global" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/news24-abr/playlist.m3u8", + "label": "24 Kanal" }, { "type": "hls", - "url": "https://cdn-haber61tv.yayin.com.tr/haber61tv/smil:haber61tv.smil/index.m3u8", - "label": "Haber61 TV" + "url": "https://dash2.antik.sk/live/test_one_plus_one_int_tizen/playlist.m3u8", + "label": "1+1 International" }, { "type": "hls", - "url": "https://canli.tgrthaber.com/tgrt.m3u8", - "label": "TGRT Haber" + "url": "https://dash2.antik.sk/live/test_dacha_tv_atktv/playlist.m3u8", + "label": "Dacha" }, { "type": "hls", - "url": "https://tv-trthaber.medya.trt.com.tr/master.m3u8", - "label": "TRT Haber" + "url": "https://dash2.antik.sk/live/telekanal_dim/playlist.m3u8", + "label": "DIM" }, { "type": "hls", - "url": "https://tv-trtarabi.medya.trt.com.tr/master.m3u8", - "label": "TRT Arabi" + "url": "https://dash2.antik.sk/live/test_kuskus_tv_atktv/playlist.m3u8", + "label": "Kus-Kus" }, { "type": "hls", - "url": "https://dash2.antik.sk/live/test_trt_world_atktv/playlist.m3u8", - "label": "TRT World" + "url": "https://dash2.antik.sk/live/kvartal_tv/playlist.m3u8", + "label": "RAZ 3 International" }, { "type": "hls", - "url": "https://603c568fccdf5.streamlock.net/live/dhaweb1_C5efC/playlist.m3u8", - "label": "DHA" - } - ], - "Myanmar": [ - { - "type": "hls", - "url": "https://mrtvott.com/cache/MRTV-HLUTTAW/master.m3u8", - "label": "Hluttaw S & D" + "url": "https://lowa8026-cmyk.github.io/Ukraine/Edyni_Novyny/2Plus2Marafon.m3u8", + "label": "2+2 Marathon" }, { "type": "hls", - "url": "https://mrtvott.com/cache/MRTV-NEWS-HD/master.m3u8", - "label": "MRTV News" + "url": "https://dash2.antik.sk/live/1plus1_marathon/playlist.m3u8", + "label": "1+1 Marafon" }, { "type": "hls", - "url": "https://live-stream.dvb.no/hls/stream_src/index.m3u8", - "label": "DVB TV" + "url": "https://streaming.televizor-24-tochka.ru/live/29.m3u8", + "label": "Lugansk 24" }, { "type": "hls", - "url": "https://mrtvott.com/cache/MRTV-HD/master.m3u8", - "label": "MRTV" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/7tvod-abr/playlist.m3u8", + "label": "Channel 7 Ukraine" }, { "type": "hls", - "url": "https://mrtvott.com/cache/MRTV-NRC-HD/master.m3u8", - "label": "MRTV NRC" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/mega-abr/playlist.m3u8", + "label": "Mega" }, { "type": "hls", - "url": "https://mrtvott.com/cache/MITV/master.m3u8", - "label": "Myanmar International TV" + "url": "https://avers.pp.ua/hls/efir.m3u8", + "label": "Avers" }, { "type": "hls", - "url": "https://mrtvott.com/cache/MRTV-Ent-HD/master.m3u8", - "label": "MRTV Entertainment" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/ntn-abr/playlist.m3u8", + "label": "NTN" }, { "type": "hls", - "url": "https://mrtvott.com/cache/MRTV-FARMER/master.m3u8", - "label": "MRTV Farmer" - } - ], - "Argentina": [ - { - "type": "hls", - "url": "https://stream.arcast.com.ar/canal7catamarca/ngrp:canal7catamarca_all/playlist.m3u8?DVR=", - "label": "Catamarca TV" + "url": "https://rtsp.cdn.ua/tva.ua_live/_definst_/livestream/playlist.m3u8", + "label": "TVA" }, { "type": "hls", - "url": "https://videostream.shockmedia.com.ar:19360/quanticatv/quanticatv.m3u8", - "label": "Quantica TV" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/islandiya-abr/playlist.m3u8", + "label": "Islandia" }, { "type": "hls", - "url": "https://videostream.shockmedia.com.ar/hls/mercuriotv/mercuriotv.m3u8", - "label": "Mercurio Noticias" + "url": "https://stream.rai.ua/rai/stream.m3u8", + "label": "Telekanal RAI" }, { "type": "hls", - "url": "https://tdcserver.com:19360/tdconlione-2/tdconlione-2.m3u8", - "label": "Canal TDC" + "url": "https://stream.ntktv.ua/s/ntk/ntk.m3u8", + "label": "NTK TV" }, { "type": "hls", - "url": "https://stream-gtlc.telecentro.net.ar/hls/canal26hls/main.m3u8", - "label": "Canal 26" + "url": "https://cdn10.live-tv.cloud/izod/izod-abr-lq/playlist.m3u8", + "label": "Izmail TV" }, { "type": "hls", - "url": "https://panel.host-live.com:19360/cn247tv/cn247tv.m3u8", - "label": "24/7 Canal de Noticias" + "url": "https://cdn10.live-tv.cloud/sferarv/sferarv-abr/playlist.m3u8", + "label": "Sfera-TV (UA)" }, { "type": "hls", - "url": "https://redirector.rudo.video/hls-video/c54ac2799874375c81c1672abb700870537c5223/bravo/bravo.smil/playlist.m3u8", - "label": "Bravo TV" + "url": "https://live-nstu.cdn-03.cosmonova.net.ua/mobile-app/main/nstu-kyiv/master.m3u8", + "label": "Suspilne. Kyiv" }, { "type": "hls", - "url": "https://vivo.solumedia.com:19360/bragadato/bragadato.m3u8", - "label": "Bragado TV" - } - ], - "United States": [ + "url": "https://hls.simon.ua/live-HD/live/playlist.m3u8", + "label": "Simon" + }, { "type": "hls", - "url": "https://lineup.cbsivideo.com/playout/8877a7d5-b094-4ac8-bc72-75a5fed68e5b/index.m3u8", - "label": "CBS News Baltimore" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/inter-abr/playlist.m3u8", + "label": "Inter+" }, { "type": "hls", - "url": "https://blacknewschannel-vizio.amagi.tv/playlist.m3u8", - "label": "Black News Channel" + "url": "https://cdn10.live-tv.cloud/itvrv/abr-lq/playlist.m3u8", + "label": "ITV" }, { "type": "hls", - "url": "https://capitalcityconnection.cablecast.tv/live/stream-1/live.m3u8", - "label": "Capital City Connection Montgomery" + "url": "https://dash2.antik.sk/live/test_rybalka_tv_atktv/playlist.m3u8", + "label": "Rybalka" }, { "type": "hls", - "url": "https://reflect-stream-bronxnet.cablecast.tv/live-8/live/stream-4/live.m3u8", - "label": "BX Inform" + "url": "https://dash2.antik.sk/live/test_tridsatsest_hd_atktv/playlist.m3u8", + "label": "36.6 TV" }, { "type": "hls", - "url": "https://pb-0n3n2ej0w8pl9.akamaized.net/ABCNewsLive_Disney.m3u8", - "label": "ABC News Live" + "url": "https://tv.mediacp.eu:8081/happyradio/index.m3u8", + "label": "Happy Radio TV" }, { "type": "hls", - "url": "https://livestream.telvue.com/billerica3/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", - "label": "BATV Government Channel" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/nashemus-abr/playlist.m3u8", + "label": "NASHE Music" }, { "type": "hls", - "url": "https://buenapark.cablecast.tv/live/stream-1/live.m3u8", - "label": "BPTV" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/muzvar-abr/playlist.m3u8", + "label": "Muzvar" }, { "type": "hls", - "url": "https://cdn3.wowza.com/5/ZWQ1K2NYTmpFbGsr/BEK-WOWZA-1/smil:BEKPRIMEeast.smil/playlist.m3u8", - "label": "BEK News" + "url": "https://cdn15.live-tv.cloud/ua_infinitas_tv/k2-abr/playlist.m3u8", + "label": "K2" } ], - "Italy": [ + "Georgia": [ { "type": "hls", - "url": "https://live.ipstream.it/etvmarche/etvmarche.stream/playlist.m3u8", - "label": "eTv Marche" + "url": "https://c4635.cdn.xsg.ge/c4635/TVFormula/index.m3u8", + "label": "Formula" }, { "type": "hls", - "url": "https://5db313b643fd8.streamlock.net/Etnachannelponte/Etnachannelponte/playlist.m3u8", - "label": "Etna Espresso Channel" + "url": "https://live.palitranews.ge/hls/palitratv/index.m3u8", + "label": "Palitra News" }, { "type": "hls", - "url": "https://live.ipstream.it/etv/etv.stream/playlist.m3u8", - "label": "eTv Rete 7" + "url": "https://tv.cdn.xsg.ge/imedihd/index.m3u8", + "label": "Imedi TV" }, { "type": "hls", - "url": "https://d3k8wzt41aflvx.cloudfront.net/RAINEWS24/Live.m3u8", - "label": "Rai News 24" + "url": "https://tv.cdn.xsg.ge/gpb-1tv/index.m3u8", + "label": "1TV" }, { "type": "hls", - "url": "https://d3k8wzt41aflvx.cloudfront.net/TGCOM24/Live.m3u8", - "label": "TGCom24" + "url": "https://tv.cdn.xsg.ge/gpb-2tv/index.m3u8", + "label": "2 TV" }, { "type": "hls", - "url": "https://rtmp-live-ingest-us-east-1-universe-dacast-com.akamaized.net/transmuxv1/streams/2095a288-1384-ed2e-5da0-278ccbb72295.m3u8", - "label": "tv9 Telemaremma" + "url": "https://gcmx3v3owcj.a.trbcdn.net/livemaster/ba7pu_fgej0zelpw.smil/playlist.m3u8?blstid=null", + "label": "Apsua TV" }, { "type": "hls", - "url": "https://f5842579ff984c1c98d63b8d789673eb.msvdn.net/live/S27391994/HVvPMzy/playlist.m3u8", - "label": "LaC News 24" + "url": "https://tv.nucast.tv/lb/ge/bmg/index.m3u8", + "label": "BMG TV" }, { "type": "hls", - "url": "https://5db313b643fd8.streamlock.net/MinformoTV/MinformoTV/playlist.m3u8", - "label": "Minformo TV" + "url": "https://stream.sstv.ge/live/sstv/playlist.m3u8", + "label": "Ertsulovneba" } ], - "Pakistan": [ - { - "type": "hls", - "url": "https://vcdn.dunyanews.tv/lahorelive/ngrp:lnews_1_all/playlist.m3u8", - "label": "Lahore News" - }, + "Australia": [ { "type": "hls", - "url": "https://imob.dunyanews.tv/livehd/ngrp:dunyalivehd_2_all/playlist.m3u8", - "label": "Dunya News" + "url": "https://jukin-weatherspy-2-au.samsung.wurl.tv/playlist.m3u8", + "label": "WeatherSpy (AU)" }, { "type": "hls", - "url": "https://cdn4.mjunoon.tv:8087/streamtest/111M/chunks.m3u8", - "label": "Capital TV" + "url": "https://skynewsau-live-premium.akamaized.net/hls/live/2105299/skynews/live.m3u8", + "label": "News24" }, { "type": "hls", - "url": "https://vodzong.mjunoon.tv:8087/streamtest/KTNNews-151/playlist.m3u8", - "label": "KTN News" + "url": "https://abc-news-dmd-streams-1.akamaized.net/out/v1/701126012d044971b3fa89406a440133/index.m3u8", + "label": "ABC News" }, { "type": "hls", - "url": "https://cdn4.mjunoon.tv:8087/streamtest/140M/chunks.m3u8", - "label": "365 News" + "url": "https://live-hls-7agy.livepush.io/live_abr_cdn/nsitWAl1pTZtwca/emnmZbKZcO8RfwJR/index.m3u8", + "label": "ticker News" }, { "type": "hls", - "url": "https://s2.ideationtec.live/Pnn/Pnn.m3u8?token=KsR3k27_sH3n-2", - "label": "Aik News" + "url": "https://jtvs.ncare.live/Gznr84Woj7UEye3OPVeWq2ForboWAgdV/jonmobhumitv.stream/playlist.m3u8", + "label": "JonmoBhumi TV" }, { "type": "hls", - "url": "https://video.primexsports.com/suchnews/live/playlist.m3u8", - "label": "Such TV" + "url": "https://d9quh89lh7dtw.cloudfront.net/public-output/index.m3u8", + "label": "Ausbiz TV" }, { "type": "hls", - "url": "https://vodzong.mjunoon.tv:8087/streamtest/ABN-161/playlist.m3u8", - "label": "ABN News" - } - ], - "Mexico": [ - { - "type": "hls", - "url": "https://srspsn.live/live/livestream.m3u8", - "label": "PSN" + "url": "https://c.mjh.nz/abc-act.m3u8", + "label": "ABC TV" }, { "type": "hls", - "url": "https://srspsn2.live/live/livestream.m3u8", - "label": "PSN Canal 45.2" + "url": "https://d1k6kax80wecy5.cloudfront.net/WFqZJc/index.m3u8", + "label": "Channel 44" }, { "type": "hls", - "url": "https://jukin-weatherspy-2-mx.samsung.wurl.tv/playlist.m3u8", - "label": "WeatherSpy (MX)" + "url": "https://d1k6kax80wecy5.cloudfront.net/RLnAKY/index.m3u8", + "label": "C31 Melbourne" }, { "type": "hls", - "url": "https://5fe2654d6127d.streamlock.net:443/uaa2/videouaa2/playlist.m3u8", - "label": "UAA TV" + "url": "https://livecdn.live247stream.com/missionasia/tv/playlist.m3u8", + "label": "Mission Asia" }, { "type": "hls", - "url": "https://live-scjn.ovp-vivaro.digital/ovp-origin/638a22b47746d/playlist.m3u8", - "label": "Justicia TV" - }, + "url": "https://dce3793146fef017.mediapackage.us-west-2.amazonaws.com/out/v1/55cdf73af7894775ba6de8f57482b66a/CMAF_HLS/index.m3u8", + "label": "10 Bold" + } + ], + "Morocco": [ { "type": "hls", - "url": "https://60417ddeaf0d9.streamlock.net/srtc/smil:srtc.smil/playlist.m3u8", - "label": "Canal Parlamento del Congreso de Jalisco" + "url": "https://cdn.live.easybroadcast.io/abr_corp/83_medi1tv-maghreb_jnbspmg/playlist.m3u8", + "label": "Medi1TV Maghreb" }, { "type": "hls", - "url": "https://5fc584f3f19c9.streamlock.net/icrtvcolima/smil:icrtvcolima.smil/playlist.m3u8", - "label": "Icrtv Colima" + "url": "https://136044159.r.cdnsun.net/storychannel.m3u8", + "label": "StoryChannel TV" }, { "type": "hls", - "url": "https://5f2c1b0d880e5.streamlock.net/canal33tijuana/videocanal33tijuana/playlist.m3u8", - "label": "Canal 33 Tijuana" + "url": "https://d2qh3gh0k5vp3v.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-n6pess5lwbghr/2M_ES.m3u8", + "label": "2M Monde" } ], - "Chile": [ + "Spain": [ { "type": "hls", - "url": "https://lbgo.bozztv.com/ssh101/ssh101/telecauquenestv/playlist.m3u8", - "label": "TeleCauquenes" + "url": "https://amg01821-lovetv-amg01821c27-lg-es-6726.playouts.now.amagi.tv/playlist/amg01821-lovetvfast-lovenews-lges/playlist.m3u8", + "label": "Actualidad 360" }, { "type": "hls", - "url": "https://pnt.janusmedia.tv/hls/pnt.m3u8", - "label": "Puranoticia TV" + "url": "https://cdn1.etbon.eus/etb2/index.m3u8", + "label": "ETB 2" }, { "type": "hls", - "url": "https://v2.tustreaming.cl/atacamanoticias/index.m3u8", - "label": "Atacama Noticias" + "url": "https://cdn1.etbon.eus/etb1on/index.m3u8", + "label": "ETB1 On" }, { "type": "hls", - "url": "https://v1.tustreaming.cl/diarioelcentrotv/index.m3u8", - "label": "El Centro TV" + "url": "https://rtvelivestream.rtve.es/rtvesec/can/la1_can_main.m3u8", + "label": "La 1 Canarias" }, { "type": "hls", - "url": "https://redirector.rudo.video/hls-video/931b584451fa6dd1313ee66efbfd5802e3f3bcea/adntv/adntv.smil/playlist.m3u8", - "label": "ADN TV" + "url": "https://rtvelivestream.rtve.es/rtvesec/la2/la2_main.m3u8", + "label": "La 2" }, { "type": "hls", - "url": "https://redirector.dps.live/hls/pinguinotv/playlist.m3u8", - "label": "El Pinguino TV" + "url": "https://amg01821-lovetvchannels-lovemagazineuk-samsungse-p1sf1.amagi.tv/playlist/amg01821-lovetvchannels-lovemagazineuk-samsungse/playlist.m3u8", + "label": "Trailers" }, { "type": "hls", - "url": "https://redirector.dps.live/hls/t13/playlist.m3u8", - "label": "T13 En Vivo" + "url": "https://fastly.live.brightcove.com/1846756479408303045/eu-central-1/6057955885001/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJob3N0IjoiZWFxNWh4LmVncmVzcy53YzQ3bTEiLCJhY2NvdW50X2lkIjoiNjA1Nzk1NTg4NTAwMSIsImVobiI6ImZhc3RseS5saXZlLmJyaWdodGNvdmUuY29tIiwiaXNzIjoiYmxpdmUtcGxheWJhY2stc291cmNlLWFwaSIsInN1YiI6InBhdGhtYXB0b2tlbiIsImF1ZCI6WyI2MDU3OTU1ODg1MDAxIl0sImp0aSI6IjE4NDY3NTY0Nzk0MDgzMDMwNDUifQ.o6wb_VA-TVxl3ERgr7FKLlaTjY7smErmsf73QAydySE/playlist-hls-dvr.m3u8", + "label": "A Punt" }, { "type": "hls", - "url": "https://pantera1-100gb-cl-movistar.dps.live/nctv/nctv.smil/playlist.m3u8", - "label": "NCTV" - } - ], - "Kazakhstan": [ + "url": "https://cdn1.etbon.eus/oc1/index.m3u8", + "label": "ETB Events 1" + }, { "type": "hls", - "url": "https://fs.uplink.kz/24KZ/mono.m3u8?token=onlinetv", - "label": "24KZ" + "url": "https://directes-tv-int.3catdirectes.cat/live-origin/canal324-hls/master.m3u8", + "label": "3CatInfo" }, { "type": "hls", - "url": "https://fs.uplink.kz/ntk/mono.m3u8?token=onlinetv", - "label": "NTK" + "url": "https://rtvelivestream.rtve.es/rtvesec/cat/la1_cat_main.m3u8", + "label": "La 1 Catalunya" }, { "type": "hls", - "url": "https://fs.uplink.kz/almaty/mono.m3u8?token=onlinetv", - "label": "Almaty TV" + "url": "https://directes-tv-int.3catdirectes.cat/live-content/c33-super3-hls/master.m3u8", + "label": "El 33" }, { "type": "hls", - "url": "https://fs.uplink.kz/ktk/mono.m3u8?token=onlinetv", - "label": "KTK" + "url": "https://directes-tv-int.3catdirectes.cat/live-content/beauties-hls/master.m3u8", + "label": "3Cat Cameres del temps" }, { "type": "hls", - "url": "https://fs.uplink.kz/habar/mono.m3u8?token=onlinetv", - "label": "Khabar" + "url": "https://directes-tv-int.3catdirectes.cat/live-content/bondia-hls/master.m3u8", + "label": "Bon Dia TV" }, { "type": "hls", - "url": "https://live-tdk42kz.cdnvideo.ru/tdk42kz/tdk42kz_720.smil/playlist.m3u8", - "label": "TDK 42" + "url": "https://limited2.todostreaming.es/live/m95-livestream.m3u8", + "label": "M95 Television Marbella" }, { "type": "hls", - "url": "https://fs.uplink.kz/turan_tv/mono.m3u8?token=onlinetv", - "label": "Turan TV" + "url": "https://cdnlive.codev8.net/rtvalive/smil:channel42.smil/playlist.m3u8", + "label": "Canal Sur Noticias" }, { "type": "hls", - "url": "https://otv.wotom.net/alau/stream.m3u8", - "label": "Alau TV" - } - ], - "Peru": [ + "url": "https://cloudvideo.servers10.com:8081/8116/index.m3u8", + "label": "Onda Valencia TV" + }, { "type": "hls", - "url": "https://videoserver.tmcreativos.com:19360/visionnoticias/visionnoticias.m3u8", - "label": "VNP" + "url": "https://cdnapisec.kaltura.com/p/2288691/sp/228869100/playManifest/entryId/1_gnz6ity9/protocol/https/format/applehttp/flavorIds/1_a9gxgxzy,1_v71ryg4b,1_vbfvtjw6,1_obo1bqsx,1_3shk3s5d/a.m3u8", + "label": "CMM TV" }, { "type": "hls", - "url": "https://stmv2.srvif.com/qtelevision/qtelevision/playlist.m3u8", - "label": "Qosqo Times" + "url": "https://cdnlive.codev8.net/rtvalive/smil:channel22.smil/playlist.m3u8", + "label": "Canal Sur 2" }, { "type": "hls", - "url": "https://dai.google.com/linear/hls/event/oYQGDqEGTmGdHE_fz9oLlg/master.m3u8", - "label": "Latina Noticias 24/7" + "url": "https://cloudvideo.servers10.com:8081/8034/index.m3u8", + "label": "Onda 15 TV" }, { "type": "hls", - "url": "https://live-evg11.tv360.bitel.com.pe/bitel/selvaticaSRT/playlist.m3u8", - "label": "RSelvaTV" + "url": "https://crtvg-europa.flumotion.cloud/playlist.m3u8", + "label": "Galicia TV Europa" }, { "type": "hls", - "url": "https://lbgo.bozztv.com/ssh101/ssh101/jnetv/playlist.m3u8", - "label": "JNE TV" + "url": "https://dfk2a268yviz9.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-ddiii1m6jt6of/CanalSurAndaluciaES.m3u8", + "label": "Canal Sur Andalucia" }, { "type": "hls", - "url": "https://live-evg11.tv360.bitel.com.pe/bitel/pbo_abr/playlist.m3u8", - "label": "PBO" + "url": "https://ztnr.rtve.es/ztnr/1694255.m3u8", + "label": "24 Horas" }, { "type": "hls", - "url": "https://redirector.rudo.video/hls-video/567ffde3fa319fadf3419efda25619456231dfea/rpptv/rpptv.smil/playlist.m3u8", - "label": "RPP TV" + "url": "https://ztnr.rtve.es/ztnr/5473142.m3u8", + "label": "24 Horas Canarias" }, { "type": "hls", - "url": "https://luna-4-video.mediaserver.digital/exitosatv_233b-4b49-a726-5a451262/index.m3u8", - "label": "Exitosa TV" - } - ], - "Iran": [ + "url": "https://congresodirecto.akamaized.net/hls/live/2037973/canalparlamento/master.m3u8", + "label": "Canal Parlamento" + }, { "type": "hls", - "url": "https://iptv.mihantv.com/mihantv/playlist.m3u8", - "label": "Mihan TV" + "url": "https://ztnr.rtve.es/ztnr/4952053.m3u8", + "label": "24 Horas Catalunya" }, { "type": "hls", - "url": "https://rdejhls.wns.live/hls/stream.m3u8", - "label": "Dej TV" + "url": "https://cloud.streamingconnect.tv/hls/estutele/estutele.m3u8", + "label": "EsTuTele" }, { "type": "hls", - "url": "https://araxhls.wns.live/hls/stream.m3u8", - "label": "Arax TV" + "url": "https://bit.controlstreams.com:5443/LiveApp/streams/punt3.m3u8", + "label": "Punt 3" }, { "type": "hls", - "url": "https://arkhls.wns.live/hls/stream.m3u8", - "label": "Arko TV" + "url": "https://cloudvideo.servers10.com:8081/8022/index.m3u8", + "label": "Estepona Television" }, { "type": "hls", - "url": "https://cafetradehls.wns.live/hls/stream.m3u8", - "label": "Cafe Trade TV" + "url": "https://ingest1-video.streaming-pro.com/tac12_ABR/stream/tacdotze/srtweb_1080/chunks.m3u8", + "label": "Tac12" }, { "type": "hls", - "url": "https://arvhls.wns.live/hls/stream.m3u8", - "label": "Arvan TV" + "url": "https://nlb2-live.emitstream.com/hls/5z6oj7ziwxzfnj78vg2m/master.m3u8", + "label": "Teleganes" }, { "type": "hls", - "url": "https://live.asil.tv/asiltv/index.m3u8", - "label": "Asil TV" - } - ], - "Romania": [ + "url": "https://interalmeria.tv/directo/live.m3u8", + "label": "Interalmeria TV" + }, { "type": "hls", - "url": "https://hls02ns.antenaplay.ro/hls/b1-tv-hd/index.m3u8", - "label": "B1" + "url": "https://s.emisoras.tv:8081/sierradecadiz/index.m3u8", + "label": "Canal Sierra de Cadiz" }, { "type": "hls", - "url": "https://hls02ns.antenaplay.ro/hls/prima-news-hd/index.m3u8", - "label": "Prima News" + "url": "https://nlb2-live.emitstream.com/hls/3mn7wpcv7hbmxmdzaxap/master.m3u8", + "label": "Distrito TV" }, { "type": "hls", - "url": "https://live.dottotv.ro/index.m3u8", - "label": "Dotto TV" + "url": "https://zuzenean.goienamedia.eus/goiena-telebista.m3u8", + "label": "Goiena Eus" }, { "type": "hls", - "url": "https://informatia.streamnet.ro/mobile_tv/informatiatv.m3u8", - "label": "Informatia TV" + "url": "https://video3.lhdserver.es/empordatv2/live.m3u8", + "label": "Emporda TV" }, { "type": "hls", - "url": "https://vdo.ssl-stream.com:3247/stream/play.m3u8", - "label": "TeleMoldova +" + "url": "https://avantstreaming.es/hls/canal3.m3u8", + "label": "Canal 3 TV Biar" }, { "type": "hls", - "url": "https://stream-aleph.m.ro/Aleph/ngrp:Alephnewsmain.stream_all/playlist.m3u8", - "label": "Aleph News" + "url": "https://cloudtv.provideo.es/live/algecirastv-livestream.m3u8", + "label": "Onda Algeciras" }, { "type": "hls", - "url": "https://cmero-ott-live.ssl.cdn.cra.cz/channels/cme-ro-voyo-news/playlist.m3u8?offsetSeconds=0&url=0", - "label": "PROTV News" + "url": "https://nlb2-live.emitstream.com/hls/5f9asjsehd7gmyxsdpzu/master.m3u8", + "label": "Durangaldeko Telebista" }, { "type": "hls", - "url": "https://tvr-info.lg.mncdn.com/tvrinfo/smil:tvrinfo.smil/playlist.m3u8", - "label": "TVR Info" + "url": "https://streamtv2.elitecomunicacion.cloud:3628/live/arabitv2025live.m3u8", + "label": "Arabi TV" + }, + { + "type": "hls", + "url": "https://cls.alcarria.tv/alcarriatv/livestream/playlist.m3u8", + "label": "Alcarria TV" } ], - "Philippines": [ + "Thailand": [ { "type": "hls", - "url": "https://amg19223-amg19223c11-amgplt0352.playout.now3.amagi.tv/playlist/amg19223-amg19223c11-amgplt0352/playlist.m3u8", - "label": "Bilyonaryo News Channel" + "url": "https://live-us1.thaimomo.com/live-as/chnews1-2/playlist.m3u8", + "label": "News1" }, { "type": "hls", - "url": "https://amg19223-amg19223c12-amgplt0352.playout.now3.amagi.tv/playlist/amg19223-amg19223c12-amgplt0352/playlist.m3u8", - "label": "Abante TV" + "url": "https://live-us1.thaimomo.com/live-as/chNation-3/playlist.m3u8", + "label": "Nation TV" }, { "type": "hls", - "url": "https://stream.kdlc.click/hls/0/stream.m3u8", - "label": "SMNI" + "url": "https://live.topnews.co.th/hls/topnews_a_720.m3u8", + "label": "Top News" }, { "type": "hls", - "url": "https://cdn.vegasplus.us/vegas/mmn01/playlist.m3u8", - "label": "Mindanow Network TV" + "url": "https://tv-live.tpchannel.org/live/tv.m3u8", + "label": "Thai Parliament Television" }, { "type": "hls", - "url": "https://cdn.vegasplus.us/vegas/lac/playlist.m3u8", - "label": "Living Asia Channel" + "url": "https://live.x2.co.th/live/13livetv-th.m3u8", + "label": "13 Siam Thai" }, { "type": "hls", - "url": "https://stream-243529.castr.net/6842a712b68c56f675d988f1/live_f5ac22b0566511f0805217b960326aaa/rewind-1800.m3u8", - "label": "INC TV" + "url": "https://live-us1.thaimomo.com/live-as/chTrue4u-2/playlist.m3u8", + "label": "True4U" }, { "type": "hls", - "url": "https://stream-243529.castr.net/6842a712b68c56f675d988f1/live_b60a96e056fc11f084c05f5d0649296b/rewind-1800.m3u8", - "label": "INC Radio" - } - ], - "Saudi Arabia": [ - { - "type": "hls", - "url": "https://live-news.asharq.com/asharq.m3u8", - "label": "Asharq News" + "url": "https://live-us1.thaimomo.com/live-as/chtnn24-2/playlist.m3u8", + "label": "TNN16" }, { "type": "hls", - "url": "https://cdn-globecast.akamaized.net/live/eds/al_ekhbariya/hls_roku/index.m3u8", - "label": "Al Ekhbariya" + "url": "https://live-us1.thaimomo.com/live-as/chthairathhd-3/playlist.m3u8", + "label": "Thairath TV" }, { "type": "hls", - "url": "https://av.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8", - "label": "Al Hadath" + "url": "https://live-us1.thaimomo.com/live-as/ch7hd-3/playlist.m3u8", + "label": "Channel 7 (TH)" }, { "type": "hls", - "url": "https://live.alarabiya.net/alarabiapublish/english/playlist_dvr.m3u8", - "label": "Al Arabiya English" + "url": "https://live-us1.thaimomo.com/live-as/chlantung-2/playlist.m3u8", + "label": "Lanthung TV" }, { "type": "hls", - "url": "https://cdn-globecast.akamaized.net/live/eds/saudi_tv/hls_roku/index.m3u8", - "label": "Al Saudiya" + "url": "https://live-us1.thaimomo.com/live-as/chThaipbshd-2/playlist.m3u8", + "label": "Thai PBS" }, { "type": "hls", - "url": "https://stream.addresses-sat.com/Alwesam/index.m3u8", - "label": "Alwesam TV" + "url": "https://live-us1.thaimomo.com/live-as/chtvb-2/playlist.m3u8", + "label": "Umm TV" }, { "type": "hls", - "url": "https://radio-loud-fm.mbc.net/radio-loud-fm_1.m3u8", - "label": "MBC Loud" + "url": "https://live-us1.thaimomo.com/live-as/chone-3/playlist.m3u8", + "label": "One 31" }, { "type": "hls", - "url": "https://playlist.fasttvcdn.com/pl/dlkqw1ftuvuuzkcb4pxdcg/Iqraafasttv3/playlist.m3u8", - "label": "Iqraa Arabic" - } - ], - "Venezuela": [ + "url": "https://live-us1.thaimomo.com/live-as/chgmmchannel-3/playlist.m3u8", + "label": "GMM 25" + }, { "type": "hls", - "url": "https://mblenmain01.telesur.ultrabase.net/mblivev3/480p/playlist.m3u8", - "label": "Telesur" + "url": "https://live-us1.thaimomo.com/live-as/chworkpointt-3/playlist.m3u8", + "label": "Workpoint TV" }, { "type": "hls", - "url": "https://59d39900ebfb8.streamlock.net/untv-720/untv-720/playlist.m3u8", - "label": "UN24" + "url": "https://fastly.live.brightcove.com/1846248737588002042/ap-southeast-1/6075037809001/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJob3N0IjoibzRoaGc2LmVncmVzcy5zYjBmOGsiLCJhY2NvdW50X2lkIjoiNjA3NTAzNzgwOTAwMSIsImVobiI6ImZhc3RseS5saXZlLmJyaWdodGNvdmUuY29tIiwiaXNzIjoiYmxpdmUtcGxheWJhY2stc291cmNlLWFwaSIsInN1YiI6InBhdGhtYXB0b2tlbiIsImF1ZCI6WyI2MDc1MDM3ODA5MDAxIl0sImp0aSI6IjE4NDYyNDg3Mzc1ODgwMDIwNDIifQ.HbjGHxGv87ivAdsCtAdEDjj2SVCfRnCUMYWn2fCkVPY/playlist-hls.m3u8", + "label": "Vipa TV" }, { "type": "hls", - "url": "https://streaming.canal-i.com/canal-i/live/master.m3u8", - "label": "Canal I" + "url": "https://mcothd-streaming-edge-cdn.mcot.net/tencentmcot/smil:tencentmcot.smil/playlist.m3u8", + "label": "MCOT HD" }, { "type": "hls", - "url": "https://live20.bozztv.com/giatv/giatv-watavision/watavision/chunks.m3u8", - "label": "Wata Vision" + "url": "https://cdn-live.dltv.ac.th/dltv15.m3u8", + "label": "DLTV 15" }, { "type": "hls", - "url": "https://cloud.fastchannel.es/manifiest/hls/prog9/vepacotv.m3u8", - "label": "Vepaco TV" + "url": "https://live.bangkokstream.com:19360/suwannabhumi/suwannabhumi.m3u8", + "label": "Suwannabhumi Channel" }, { "type": "hls", - "url": "https://streamtv.intervenhosting.net:3789/live/portutvlive.m3u8", - "label": "Portuguesa Television" + "url": "https://vdo.plathong.net/Halaltv/Halaltv/playlist.m3u8", + "label": "Halal TV" }, { "type": "hls", - "url": "https://master.myplaytv.com:2020/hls/canaldiplomatico/canaldiplomatico.m3u8", - "label": "Canal Diplomatico" + "url": "https://cdn-th-vip.livestreaming.in.th/policetv/policetv/playlist.m3u8", + "label": "Police TV" }, { "type": "hls", - "url": "https://cloud.fastchannel.es/manifiest/hls/prog9/catatumbotv.m3u8", - "label": "Catatumbo TV" - } - ], - "Iraq": [ + "url": "https://live-us1.thaimomo.com/live-as/ch3hd-3/playlist.m3u8", + "label": "3HD" + }, { "type": "hls", - "url": "https://sd343444.vodu.store:3356/live/Alghadeer/index.m3u8", - "label": "Alghadeer TV" + "url": "https://ramach.ddns.net/live/ramalive/index.m3u8", + "label": "Rama Channel" }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/PAYAM_TV/HLS/PAYAM_TV.m3u8", - "label": "Payam TV" + "url": "https://cdn-th-vip2.livestreaming.in.th/watsanghathan/watsanghathan/playlist.m3u8", + "label": "SBB TV" }, { "type": "hls", - "url": "https://imn-live.esite-lab.com/hls/iraqia-news.m3u8", - "label": "Al Iraqia News" + "url": "https://cdn-edge.iiptvcdn.com/live_event/smil:f180-054a-38d7-ce66-f7cf.smil/playlist.m3u8", + "label": "NBT 2 HD" }, { "type": "hls", - "url": "https://stream.shams.tv/hls/stream.m3u8", - "label": "Shams TV (IQ)" + "url": "https://live.thaichaiyo.tv/tcy/live-transmux.m3u8", + "label": "Thai Chaiyo" }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/KURDSAT_NEWS/HLS/KURDSAT_NEWS.m3u8", - "label": "Kurdsat News" + "url": "https://stream1.stou.ac.th/live/stou_720p/playlist.m3u8", + "label": "STOU Channel" }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/RUDAW/HLS/RUDAW.m3u8", - "label": "Rudaw TV" + "url": "https://cdn-edge.iiptvcdn.com/live_event/smil:4f6e-aa34-2034-5492-c82d.smil/playlist.m3u8", + "label": "NBT TV Chiang Mai" }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/K24/HLS/K24.m3u8", - "label": "Kurdistan 24" + "url": "https://live-us1.thaimomo.com/live-as/chamarin-3/playlist.m3u8", + "label": "Amarin TV" }, { "type": "hls", - "url": "https://live.alissahost.net/hls/test.m3u8", - "label": "Al Janoub TV" + "url": "https://live.x2.co.th/live/bntv.m3u8", + "label": "Boonniyom TV" } ], - "Greece": [ + "Germany": [ { "type": "hls", - "url": "https://server.gointernet.gr/live/livestream.m3u8", - "label": "Astra TV" + "url": "https://dwamdstream103.akamaized.net/hls/live/2015526/dwstream103/master.m3u8", + "label": "DW" }, { "type": "hls", - "url": "https://lbgo.bozztv.com/ssh101/ssh101/eurotvlive/playlist.m3u8", - "label": "Euro TV" + "url": "https://dash4.antik.sk/live/test_welt_tizen/playlist.m3u8", + "label": "WELT" }, { "type": "hls", - "url": "https://av.hellasnet.tv/rst/trt/main_stream.m3u8", - "label": "TRT" + "url": "https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg01821-lovetvfast-nachrichten360-samsungde/playlist.m3u8", + "label": "Nachrichten 360" }, { "type": "hls", - "url": "https://verginanews.gr:8443/hls_live/stream1.m3u8", - "label": "Vergina TV" + "url": "https://cldf-hlsgw.r53.cdn.tv1.eu/1000153copo/hk1.m3u8", + "label": "Parlamentsfernsehen 1" }, { "type": "hls", - "url": "https://itv.streams.ovh/ALEERT/ALEERT/playlist.m3u8", - "label": "Alert TV" + "url": "https://dash4.antik.sk/live/test_ntv_tizen/playlist.m3u8", + "label": "n-tv" }, { "type": "hls", - "url": "https://telmaco-cdn.akamaized.net/starcgr/default/index.m3u8", - "label": "Star Kentrikis Elladas" + "url": "https://dash4.antik.sk/live/test_vox_tizen/playlist.m3u8", + "label": "VOX" }, { "type": "hls", - "url": "https://itv.streams.ovh:1936/corfuchannel/corfuchannel/playlist.m3u8", - "label": "Corfu Channel" + "url": "https://dash4.antik.sk/live/test_swr_tizen/playlist.m3u8", + "label": "SWR Fernsehen HD" }, { "type": "hls", - "url": "https://live.cast-control.eu/StartMedia/StartMedia/playlist.m3u8", - "label": "Start TV" - } - ], - "Nigeria": [ + "url": "https://dash4.antik.sk/live/test_mdr_tizen/playlist.m3u8", + "label": "MDR Fernsehen" + }, { "type": "hls", - "url": "https://wf.newscentral.ng:8443/hls/stream.m3u8", - "label": "News Central" + "url": "https://dash4.antik.sk/live/test_rtl_ger_tizen/playlist.m3u8", + "label": "RTL" }, { "type": "hls", - "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_029/Stream/playlist.m3u8", - "label": "Silverbird News 24" + "url": "https://dash4.antik.sk/live/test_sat_eins_gold_tizen/playlist.m3u8", + "label": "SAT.1 Gold" }, { "type": "hls", - "url": "https://oqgdro3xd4rm-hls-live.5centscdn.com/tfmediacastlivestream24/60414fd886a863e5851f4559fb86e7f6.sdp/playlist.m3u8", - "label": "Yobe TV" + "url": "https://dash4.antik.sk/live/test_hr_tizen/playlist.m3u8", + "label": "hr-fernsehen" }, { "type": "hls", - "url": "https://oqgdro3xd4rm-hls-live.5centscdn.com/waffiitvstreaminglivetfmediacast/e0885d428bea69e372309657f3bd895f.sdp/playlist.m3u8", - "label": "Waffi TV" + "url": "https://dash4.antik.sk/live/test_sixx_tizen/playlist.m3u8", + "label": "sixx" }, { "type": "hls", - "url": "https://oqgdro3xd4rm-hls-live.5centscdn.com/tfmediacastlivestreamUTV/8f263182c36c7e5c56a986bf770091e3.sdp/playlist.m3u8", - "label": "UTV Africa" + "url": "https://h056.video-stream-hosting.de/easycast8-live/_definst_/mp4:livestreamhd8/playlist.m3u8", + "label": "teltOwkanal" }, { "type": "hls", - "url": "https://video1.getstreamhosting.com:1936/8398/8398/playlist.m3u8", - "label": "Superscreen TV" + "url": "https://sdn-global-live-streaming-packager-cache.3qsdn.com/132661/132661_264_live.m3u8", + "label": "Altenburg TV" }, { "type": "hls", - "url": "https://tv-west.lg.mncdn.com/tv_west/tv_west.stream/playlist.m3u8", - "label": "TV-WEST (NG)" + "url": "https://dash4.antik.sk/live/test_zdf_avc_25p/playlist.m3u8", + "label": "ZDF" }, { "type": "hls", - "url": "https://streams.playtv.com.ng/Tele-Regency_TRTV/index.m3u8", - "label": "Tele Regency TV" - } - ], - "Belgium": [ + "url": "https://dash2.antik.sk/live/test_rbb_tizen/playlist.m3u8", + "label": "rbb Fernsehen" + }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/STERK_TV/HLS/STERK_TV.m3u8", - "label": "Sterk TV" + "url": "https://dash4.antik.sk/live/test_pro_sieben_tizen/playlist.m3u8", + "label": "ProSieben" }, { "type": "hls", - "url": "https://streams.prd.commavservices.eu/live/ebsplus/index.m3u8", - "label": "EbS+" + "url": "https://stream01.welocal.stream/stream/fhd-tvingolstadt_44349/ngrp:stream_all/playlist.m3u8", + "label": "TV Ingolstadt" }, { "type": "hls", - "url": "https://live.zendzend.com/mpegts/29375_107244/media_mpegts_0.m3u8", - "label": "ATV" + "url": "https://hls1.wtnet.de/noa4/apple/wifi6500.m3u8", + "label": "noa4 Norderstedt" }, { "type": "hls", - "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/4db788c7/index.m3u8", - "label": "ACTV" + "url": "https://hls1.wtnet.de/noa4hh/apple/wifi6500.m3u8", + "label": "noa4 Hamburg" }, { "type": "hls", - "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/2f00284b/index.m3u8", - "label": "Telesambre" + "url": "https://dash4.antik.sk/live/test_super_rtl_tizen/playlist.m3u8", + "label": "RTL Super" }, { "type": "hls", - "url": "https://streaming01.divercom.be/notele_live/direct.stream/playlist.m3u8", - "label": "Notele" + "url": "https://dash4.antik.sk/live/test_rtl_zwei_tizen/playlist.m3u8", + "label": "RTL Zwei" }, { "type": "hls", - "url": "https://59959724487e3.streamlock.net/stream/live/playlist.m3u8", - "label": "BX1" + "url": "https://tagesschau.akamaized.net/hls/live/2020115/tagesschau/tagesschau_1/master.m3u8", + "label": "tagesschau24" }, { "type": "hls", - "url": "https://live.matele.be/hls/live.m3u8", - "label": "Matele" - } - ], - "Uganda": [ + "url": "https://srfs.akamaized.net/hls/live/689649/srfsgeo/index.m3u8", + "label": "SR Fernsehen" + }, { "type": "hls", - "url": "https://channels.ad-ug.com/live/ch03/index.m3u8", - "label": "KRC TV" + "url": "https://stream03.welocal.stream/stream/fhd-nbypassau_49171/ngrp:stream_all/index.m3u8", + "label": "Niederbayern TV Passau" }, { "type": "hls", - "url": "https://stream.rwenzoritv.com:3232/live/rwenzoritvlive.m3u8", - "label": "Rwenzori TV" + "url": "https://h057.video-stream-hosting.de/tv38-live/_definst_/smil:livestream.smil/playlist.m3u8?ref=", + "label": "TV38 Sudost-Niedersachen" }, { "type": "hls", - "url": "https://stream.hydeinnovations.com/luotv-flussonic/index.m3u8", - "label": "Wan Luo TV" + "url": "https://stream01.welocal.stream/stream/fhd-allgaeutv_25679/ngrp:stream_all/playlist.m3u8", + "label": "Allgau TV" }, { "type": "hls", - "url": "https://stream.hydeinnovations.com/tvwest-flussonic/index.m3u8", - "label": "TV West (UG)" + "url": "https://stream03.welocal.stream/stream/fhd-nbydeggendorf_99148/ngrp:stream_all/index.m3u8", + "label": "Niederbayern TV Deggendorf & Straubing" }, { "type": "hls", - "url": "https://stream.hydeinnovations.com/tarari-west/index.m3u8", - "label": "Tayari West TV" + "url": "https://ndrint.akamaized.net/hls/live/2020766/ndr_int/index.m3u8", + "label": "NDR Fernsehen International" }, { "type": "hls", - "url": "https://stream.hydeinnovations.com/bukedde2flussonic/index.m3u8", - "label": "Bukedde TV 2" + "url": "https://stream03.welocal.stream/stream/sat-nby/ngrp:sat-nby.stream_all/index.m3u8", + "label": "Niederbayern TV" }, { "type": "hls", - "url": "https://live.esteem.africa/kstv/hls/0/stream.m3u8", - "label": "KSTV Uganda" + "url": "https://h056.video-stream-hosting.de/easycast7-live/_definst_/mp4:livestreamhd20/playlist.m3u8?ref=", + "label": "Seenluft24" }, { "type": "hls", - "url": "https://stream.hydeinnovations.com/arktv-international/index.fmp4.m3u8", - "label": "Ark TV" - } - ], - "Portugal": [ + "url": "https://stream02.welocal.stream/stream/fhd-augsburgtv_104951/ngrp:stream_all/playlist.m3u8", + "label": "Augsburg TV" + }, { "type": "hls", - "url": "https://playout172.livextend.cloud/liveiframe/_definst_/liveartvabr/playlist.m3u8", - "label": "ARTV" + "url": "https://live-cdn.oksh.de/play/hls/kieltv/index.m3u8", + "label": "OK Kiel" }, { "type": "hls", - "url": "https://production-fast-sic.content.okast.tv/fa2e8c4385712f9a7dce4ff2dcebac2e/channels/d9070446-8448-455e-8075-773b1ba12562/d47eae0f-ad77-414a-9a1d-2a6628ba18c3/media_.m3u8", - "label": "SIC Replay" + "url": "https://live-cdn.oksh.de/play/hls/flensburgtv/index.m3u8", + "label": "OK Flensburg" }, { "type": "hls", - "url": "https://production-fast-sic.content.okast.tv/fa2e8c4385712f9aa54bbe52b1bd9b6b/channels/d9070446-8448-455e-8075-773b1ba12562/fc831b20-f252-4e7d-8cc5-2d05f4d43c1c/media_.m3u8", - "label": "SIC Alta Definicao" + "url": "https://h056.video-stream-hosting.de/medienasa-live/_definst_/mp4:RFH_high/index.m3u8", + "label": "RFH" }, { "type": "hls", - "url": "https://pull-live-156-1.global.ssl.fastly.net/pc5865dc25400thmb-ea6bf03b14fa318f7133/smil:pc1-jhrgyuoqe5865db-68tkgb14fa318f7133f03.smil/playlist.m3u8", - "label": "Porto Canal" + "url": "https://dash4.antik.sk/live/test_drei_sat_tizen/playlist.m3u8", + "label": "3sat" }, { "type": "hls", - "url": "https://5ce9406b73c33.streamlock.net/ONFM/livestream/playlist.m3u8", - "label": "ON FM" + "url": "https://fms.nrwision.de/live/ngrp:livestreamHD.stream/playlist.m3u8", + "label": "NRWision" }, { "type": "hls", - "url": "https://w1.manasat.com/tvmana-brasil/smil:tvmana-brasil.smil/playlist.m3u8", - "label": "TV Mana Brasil" + "url": "https://bild-und-ton.stream/snj-de/snj-de.smil/.m3u8", + "label": "Sender Neu Jerusalem" }, { "type": "hls", - "url": "https://w1.manasat.com/igrejaonline/smil:igrejaonline.smil/playlist.m3u8", - "label": "Mana Igreja Online" + "url": "https://live.yoltv.com/hls/stream.m3u8", + "label": "YOL TV" }, { "type": "hls", - "url": "https://w1.manasat.com/tvmana-english/smil:tvmana-english.smil/playlist.m3u8", - "label": "TV Mana English" + "url": "https://alex-stream.rosebud-media.de/bounce/alexlivetv50.smil/index.m3u8", + "label": "Alex Berlin" } ], - "Brazil": [ - { - "type": "hls", - "url": "https://gpa-vja.otteravision.com/gpa/vja/vja.m3u8", - "label": "VEJA+ TV" - }, + "Kenya": [ { "type": "hls", - "url": "https://stmv1.srvstm.com/piaui8071/piaui8071/playlist.m3u8", - "label": "TV Assembleia Piaui" + "url": "https://goliveafrica.media:9998/live/628e5c1991061/index.m3u8", + "label": "MERU TV" }, { "type": "hls", - "url": "https://stmv5.samcast.com.br/claudio8701/claudio8701/playlist.m3u8", - "label": "Canal Metropolitano de Noticias" + "url": "https://live-onesignal.royalmedia.co.ke/live/T-MxRsFebq6zx7k2QFMbLw.m3u8", + "label": "Inooro TV" }, { "type": "hls", - "url": "https://rnw-rn.otteravision.com/rnw/rn/rnw_rn.m3u8", - "label": "Record News" + "url": "https://stream-server9-jupiter.muxlive.com/hls/gctvghana/index.m3u8", + "label": "Great Commission TV" }, { "type": "hls", - "url": "https://cdn.jmvstream.com/w/LVW-9730/LVW9730_LmUwslM8jt/playlist.m3u8", - "label": "TV Zoom" + "url": "https://livecdn.premiumfree.tv/afxpstr/K24Backup/index.m3u8", + "label": "K24" }, { "type": "hls", - "url": "https://cdn.live.br1.jmvstream.com/webtv/AVJ-12952/playlist/playlist.m3u8", - "label": "STZ TV" + "url": "https://goliveafrica.media:9998/live/6257fbe7383d6/index.m3u8", + "label": "YOUNIB Media TV" }, { "type": "hls", - "url": "https://5cf4a2c2512a2.streamlock.net/8104/8104/playlist.m3u8", - "label": "TV Sim Cachoeiro" + "url": "https://goliveafrica.media:9998/live/64227f58b8413/index.m3u8", + "label": "Capuchin TV" }, { "type": "hls", - "url": "https://live.tcm10.com.br/tcm10hd/stream.m3u8", - "label": "TCM 10 HD" + "url": "https://livecdn.live247stream.com/mc/tv/playlist.m3u8", + "label": "Morning Cloud TV" } ], - "Indonesia": [ + "Paraguay": [ { "type": "hls", - "url": "https://flv.intechmedia.net/live/ch112.m3u8", - "label": "BN Channel" + "url": "https://nanduti.b-cdn.net/Source.m3u8", + "label": "Nanduti" }, { "type": "hls", - "url": "https://edge.medcom.id/live-edge/smil:metro.smil/playlist.m3u8", - "label": "Metro TV" + "url": "https://www.desde-paraguay.com/mega.m3u8", + "label": "Mega TV" }, { "type": "hls", - "url": "https://flv.intechmedia.net/live/ch118.m3u8", - "label": "KTV (ID)" + "url": "https://copacogen.desdeparaguay.net/npy/npy_py_alta/playlist.m3u8?admin=tvaccion", + "label": "NPY" }, { "type": "hls", - "url": "https://gist.githubusercontent.com/iptvonlinetv/02d209207082846012c15305f7471c55/raw/4439b54b986e696e6fcfba7a53380d85b27bbbc1/udp450.500.723:6050.m3u8", - "label": "Groovia Kanal" + "url": "https://rds3.desdeparaguay.net/4dmasnoticiastv/4dmasnoticiastv/playlist.m3u8", + "label": "4Dmas Noticias TV" }, { "type": "hls", - "url": "https://5bf7b725107e5.streamlock.net/kstv/kstv/playlist.m3u8", - "label": "Kilisuci TV" + "url": "https://live.enhdtv.com:8081/8060/index.m3u8", + "label": "Suceso TV" }, { "type": "hls", - "url": "https://re1.siar.us/madutv/hd720/playlist.m3u8", - "label": "Madu TV" + "url": "https://rds3.desdeparaguay.net/republicatv/republicatv/playlist.m3u8", + "label": "Republica TV" }, { "type": "hls", - "url": "https://stream.matrixtv.id/hls/0/stream.m3u8", - "label": "Matrix TV Yogyakarta" + "url": "https://videoserver.tmcreativos.com:19360/dcsajkpvrh/dcsajkpvrh.m3u8", + "label": "CAD TV" }, { "type": "hls", - "url": "https://jambitv.globaldigitalcore.com/hls/sah5tu7Eiveepohyieyie3OoteL2anga.m3u8", - "label": "Jambi TV" - } - ], - "United Kingdom": [ + "url": "https://d3epa8orr2qy3m.cloudfront.net/ts:abr.m3u8", + "label": "SNT" + }, { "type": "hls", - "url": "https://amg01076-lightningintern-gbnewsau-samsungau-et7fz.amagi.tv/playlist/amg01076-lightningintern-gbnewsau-samsungau/playlist.m3u8", - "label": "GB News" + "url": "https://rds3.desdeparaguay.net/caritastv/caritastv/playlist.m3u8", + "label": "Caritas TV" }, { "type": "hls", - "url": "https://distro001-gb-hls1-prd.delivery.skycdp.com/easel_cdn/ngrp:weather_loop.stream_all/playlist.m3u8", - "label": "Sky News Weather" + "url": "https://video.hostingcaaguazu.com:19360/uniradiotv/uniradiotv.m3u8", + "label": "UniRadio TV" }, { "type": "hls", - "url": "https://vs-hls-push-ww-live.akamaized.net/x=4/i=urn:bbc:pips:service:bbc_news_channel_hd/mobile_wifi_main_hd_abr_v2.m3u8", - "label": "BBC News" + "url": "https://video.hostingcaaguazu.com:19360/tvcanindeyu/tvcanindeyu.m3u8", + "label": "TV Canindeyu" }, { "type": "hls", - "url": "https://5caf24a595d94.streamlock.net:1937/pvyugfkzkc/pvyugfkzkc/playlist.m3u8", - "label": "Canaf54 TV" + "url": "https://www.desde-paraguay.com/pro.m3u8", + "label": "Canal Pro" }, { "type": "hls", - "url": "https://hls.autopo.st/hls/britasiatv/index.m3u8", - "label": "Brit Asia TV" + "url": "https://rds3.desdeparaguay.net/brunomasitv/brunomasitv/playlist.m3u8", + "label": "Bruno Masi TV" }, { "type": "hls", - "url": "https://candlelightmedia-sparklightlove-4-us.roku.wurl.tv/playlist.m3u8", - "label": "Spark TV" + "url": "https://tigocloud.desdeparaguay.net/800tv/800tv/playlist.m3u8", + "label": "Union TV" }, { "type": "hls", - "url": "https://kjhls.wns.live/hls/stream.m3u8", - "label": "Kanal Jadid" + "url": "https://copacotf.desdeparaguay.net/telefuturo/telefuturo_py_alta/playlist.m3u8", + "label": "Telefuturo" }, { "type": "hls", - "url": "https://dash2.antik.sk/live/test_ectv_hd_1200/playlist.m3u8", - "label": "English Club TV" - } - ], - "Lebanon": [ + "url": "https://video.hostingcaaguazu.com:19360/tvairepy/tvairepy.m3u8", + "label": "TV Aire" + }, { "type": "hls", - "url": "https://mdnlv.cdn.octivid.com/almdn/smil:mpegts.stream.smil/playlist.m3u8", - "label": "Al Mayadeen TV" + "url": "https://copacotf.desdeparaguay.net/latele/latele_py_alta/playlist.m3u8?admin=tvaccion", + "label": "Latele" }, { "type": "hls", - "url": "https://edge.fastpublish.me/live/index.m3u8", - "label": "Al-Manar" + "url": "https://video.wilohosting.com:19360/redinteriortv/redinteriortv.m3u8", + "label": "Red Interior TV" }, { "type": "hls", - "url": "https://cdn.catiacast.video/abr/9436b5ab3c1171ab04a59af11951292f/playlist.m3u8", - "label": "UNews" + "url": "https://tigocloudgen.desdeparaguay.net/satelitaltv/satelitaltv/playlist.m3u8", + "label": "Canal 8 Vision TV" }, { "type": "hls", - "url": "https://svs.itworkscdn.net/vdltvlive/vdltv.smil/playlist.m3u8", - "label": "Voice of Lebanon" + "url": "https://video.hostingcaaguazu.com:19360/regionaltv/regionaltv.m3u8", + "label": "Regional TV Yaguaron" }, { "type": "hls", - "url": "https://live.kwikmotion.com/redtvlive/redtv.smil/playlist.m3u8", - "label": "Red TV Lebanon" + "url": "https://copacogen.desdeparaguay.net/monumentaltv/monumentaltv_alta/playlist.m3u8?admin=tvaccion", + "label": "Monumental TV" }, { "type": "hls", - "url": "https://cdn.streamlane.tv/hls/ltv/master.m3u8", - "label": "Lana TV" + "url": "https://video.hostingcaaguazu.com:19360/canal8cvs/canal8cvs.m3u8", + "label": "Canal 8 C&C Producciones" }, { "type": "hls", - "url": "https://hms.pfs.gdn/hms/v1/broadcast/hlmvmp2hfriode891/playlist.m3u8", - "label": "mfm" + "url": "https://video.hostingcaaguazu.com:19360/reddigitalsanpedro/reddigitalsanpedro.m3u8", + "label": "Red Digital" }, { "type": "hls", - "url": "https://svs.itworkscdn.net/nour1satlive/livestream/playlist.m3u8", - "label": "Nour Al Koddass" - } - ], - "Egypt": [ + "url": "https://video.hostingcaaguazu.com:19360/rbtv/rbtv.m3u8", + "label": "RB TV" + }, { "type": "hls", - "url": "https://eazyvwqssi.erbvr.com/alghadtv/alghadtv.m3u8", - "label": "Al Ghad TV" + "url": "https://video.wilohosting.com:19360/occidentaltv/occidentaltv.m3u8", + "label": "Occidental TV" }, { "type": "hls", - "url": "https://rp.tactivemedia.com/watantv_source/live/playlist.m3u8", - "label": "Watan TV" + "url": "https://tv-omega-nine.vercel.app/hls/live.m3u8", + "label": "Invasiva TV" }, { "type": "hls", - "url": "https://cdn.bestream.io:19360/elfaro1/elfaro1.m3u8", - "label": "Huda TV" + "url": "https://stream.paraguaytv.gov.py/memfs/bbe36fed-9b49-4d1d-adaa-4bd6d1b2e386.m3u8", + "label": "Paraguay TV" }, { "type": "hls", - "url": "https://ctv.icopts.app/CTV/index.fmp4.m3u8", - "label": "Coptic TV" + "url": "https://rds3.desdeparaguay.net/mitv/mitv/playlist.m3u8", + "label": "MiTV" }, { "type": "hls", - "url": "https://nogoumtv.nrpstream.com/hls/stream.m3u8", - "label": "NogoumFMTV" + "url": "https://tvdatta.com:3041/live/colmenarlive.m3u8", + "label": "Radio Colmenar 92.5 FM" }, { "type": "hls", - "url": "https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8", - "label": "Aghapy TV" + "url": "https://video.wilohosting.com:19360/radiotvelarcadelpacto/radiotvelarcadelpacto.m3u8", + "label": "Radio TV El Arca del Pacto" }, { "type": "hls", - "url": "https://9090video.mobtada.com/hls/stream.m3u8", - "label": "El Radio 9090 FM" - } - ], - "Bulgaria": [ + "url": "https://video.wilohosting.com:19360/sancristobalfm/sancristobalfm.m3u8", + "label": "Radio San Cristobal 88.7 FM" + }, { "type": "hls", - "url": "https://tv.tvsb.bg/112.m3u8", - "label": "TV Spravedliva Bulgariya" + "url": "https://tvdatta.com:3991/live/guairatvlive.m3u8", + "label": "Radio Guaira TV" }, { "type": "hls", - "url": "https://shift03.isp.bg/BNT4_HD/index.m3u8", - "label": "BNT 4" + "url": "https://rds3.desdeparaguay.net/gotv/gotv/playlist.m3u8", + "label": "GO TV" }, { "type": "hls", - "url": "https://restr2.bgtv.bg/agro/hls/agro.m3u8", - "label": "Agro TV" + "url": "https://copacogen.desdeparaguay.net/villaelisatv/villaelisatv/playlist.m3u8?admin=nacion", + "label": "Villa Elisa Radio TV" }, { "type": "hls", - "url": "https://streamer103.neterra.tv/travel/live.m3u8", - "label": "Travel TV" + "url": "https://copacogen.desdeparaguay.net/nandejaraneetv/nandejaraneetv/playlist.m3u8?admin=tvaccion", + "label": "Nandejara Ne'e TV" }, { "type": "hls", - "url": "https://streamer103.neterra.tv/tiankov-orient/live.m3u8", - "label": "Tiankov Orient Folk" + "url": "https://stream.farra.com.py/live/farra_low.m3u8", + "label": "Farra Play" }, { "type": "hls", - "url": "https://shift03.isp.bg/RodinaTV/index.m3u8", - "label": "TV Rodina" + "url": "https://copacogen.desdeparaguay.net/heitv/heitv_py_alta/playlist.m3u8?admin=nacion", + "label": "HEi Now" }, { "type": "hls", - "url": "https://bss1.neterra.tv/thevoice/thevoice.m3u8", - "label": "The Voice" + "url": "https://video.hostingcaaguazu.com:19360/delreytv/delreytv.m3u8", + "label": "Del Rey TV" }, { "type": "hls", - "url": "https://streamer1.streamhost.org/salive/GMIlcbgM/playlist.m3u8", - "label": "Light Channel" + "url": "https://rds3.desdeparaguay.net/dismartv/dismartv/playlist.m3u8", + "label": "Dismar Radio TV" + }, + { + "type": "hls", + "url": "https://copacoradios.desdeparaguay.net/rcctv/rcctv/playlist.m3u8?admin=nacion", + "label": "RCC TV" } ], - "United Arab Emirates": [ + "Poland": [ { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/ALYAUM_TV/HLS/ALYAUM_TV.m3u8", - "label": "Al Yaum TV" + "url": "https://stream.tvkstella.pl/stella/stella.m3u8", + "label": "TVK Stella" }, { "type": "hls", - "url": "https://amg01480-alshallalfze-alshallal-ono-q0hfg.amagi.tv/playlist.m3u8", - "label": "Al Shallal TV" + "url": "https://lowa8026-cmyk.github.io/tvpvod/399731.m3u8", + "label": "TVP World" }, { "type": "hls", - "url": "https://svs.itworkscdn.net/kablatvlive/kabtv1.smil/playlist.m3u8", - "label": "Al Sharqiya Min Kabla" + "url": "https://emisja2.btb.j00r.us/iptv/session/4/hls.m3u8", + "label": "BTB Info" }, { "type": "hls", - "url": "https://svs.itworkscdn.net/alwoustalive/alwoustatv.smil/playlist.m3u8", - "label": "Al Wousta TV" + "url": "https://lowa8026-cmyk.github.io/tvpvod/399723.m3u8", + "label": "TVP Polonia" }, { "type": "hls", - "url": "https://streamer3.premio.link/alqamar/playlist.m3u8", - "label": "Al Qamar TV" + "url": "https://ac76260b1102416c93f3d20958bfeb4b.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/RakutenTV-pl_Royalworld/playlist.m3u8", + "label": "Royalworld" }, { "type": "hls", - "url": "https://cdn1.logichost.in/ajmantv/live/playlist.m3u8", - "label": "Ajman TV" + "url": "https://lowa8026-cmyk.github.io/tvpvod/399699.m3u8", + "label": "TVP Info" }, { "type": "hls", - "url": "https://cdn.bestream.io:19360/elfaro4/elfaro4.m3u8", - "label": "Nour TV" + "url": "https://b6c7c7d1020a4588982ca7c2625f85d1.mediatailor.us-east-1.amazonaws.com/v1/master/0fb304b2320b25f067414d481a779b77db81760d/RakutenTV-eu_GrjngoWesterny/playlist.m3u8", + "label": "Grjngo" }, { "type": "hls", - "url": "https://pmchls.wns.live/hls/stream.m3u8", - "label": "PMC" - } - ], - "Albania": [ - { - "type": "hls", - "url": "https://protokolldns.xyz/ntv.l.i.v.e5547892023/index.m3u8", - "label": "ntv (AL)" + "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883037", + "label": "Hard Knocks Fighting Championship" }, { "type": "hls", - "url": "https://stream.syritv.al/live/syritv/playlist.m3u8", - "label": "Syri" + "url": "https://3ee905090d464be5a51478fd9c642e93.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/RakutenTV-pl_Moconomy/playlist.m3u8", + "label": "Moconomy" }, { "type": "hls", - "url": "https://live1.mediadesk.al/cnatvlive.m3u8", - "label": "CNA" + "url": "https://103f01c3ff79408e83c9212f8a374ecc.mediatailor.us-east-1.amazonaws.com/v1/master/0fb304b2320b25f067414d481a779b77db81760d/RakutenTV-eu_BjgtjmeDarmoweFilmy/playlist.m3u8", + "label": "Bigtime" }, { "type": "hls", - "url": "https://live1.mediadesk.al/oranews.m3u8", - "label": "Ora News" + "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883008", + "label": "Dr G Medical Examiner" }, { "type": "hls", - "url": "https://tv.balkanweb.com/news24/livestream/playlist.m3u8", - "label": "News 24" + "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883099", + "label": "Buzzfeed Unsolved" }, { "type": "hls", - "url": "https://protokolldns.xyz/johaniterweb44547dsd/index.m3u8", - "label": "TV Johaniter" + "url": "https://1409502578.rsc.cdn77.org/live/stream-1/chunklist.m3u8", + "label": "NewTV" }, { "type": "hls", - "url": "https://zjarr.future.al/hls/playlist.m3u8", - "label": "Zjarr TV" + "url": "https://stream.sferatv.pl/sferatvlive/live.m3u8", + "label": "Sfera TV (PL)" }, { "type": "hls", - "url": "https://live.prostream.al/al/smil:tropojatv.smil/playlist.m3u8", - "label": "Tropoja Televizion" - } - ], - "Bolivia": [ - { - "type": "hls", - "url": "https://edge.enhdtv.com/8192/index.m3u8", - "label": "Unifranz" + "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883095", + "label": "Car City Adventures" }, { "type": "hls", - "url": "https://eu1.servers10.com:8081/ceacom/index.m3u8", - "label": "CEACOM TV" + "url": "https://emisja.btb.j00r.us/iptv/session/1/hls.m3u8", + "label": "BTB" }, { "type": "hls", - "url": "https://edge.enhdtv.com/8190/index.m3u8", - "label": "UMSA TVU LP" + "url": "https://lowa8026-cmyk.github.io/WPolscePL.m3u8", + "label": "W Polsce PL" }, { "type": "hls", - "url": "https://tv.centaurychile.com/interactiva/streams/KIgB6QvZ0L8XaSLd3211668845221245.m3u8", - "label": "Red Uno" + "url": "https://fast-rakuten.okast.tv/fa2e8c4385712f9a9076eaf728c751de/channels/1a6ecfaa-40c6-41b8-8634-595c424f856e/21f67fd1-4d21-43ba-8ad8-3afac9982c25/master.m3u8", + "label": "Red Carpet TV International" }, { "type": "hls", - "url": "https://59d39900ebfb8.streamlock.net/telefehd/telefehd/playlist.m3u8", - "label": "Tele Fe Bolivia" + "url": "https://top-movies-rakuten-tv-pl.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6059/master.m3u8", + "label": "Top Movies Polska" }, { "type": "hls", - "url": "https://59d39900ebfb8.streamlock.net/asiesmipueblo/asiesmipueblo/playlist.m3u8", - "label": "Red Rubi" + "url": "https://9a81dd4ee3884d0dbcacafaf0d81327a.mediatailor.us-east-1.amazonaws.com/v1/master/04fd913bb278d8775298c26fdca9d9841f37601f/RakutenTV-eu_BilliardsTV/playlist.m3u8", + "label": "World Billiards" }, { "type": "hls", - "url": "https://59d39900ebfb8.streamlock.net/teleestrella/teleestrella/playlist.m3u8", - "label": "TL Estrella" + "url": "https://cdn01.aztv.pl/live_tvjaslo/live_tvjaslo.stream/playlist.m3u8", + "label": "Telewizja Jaslo" }, { "type": "hls", - "url": "https://ares.disfrutaenlared.com:1936/redcctv/redcctv/playlist.m3u8", - "label": "Red CCTV" - } - ], - "Colombia": [ - { - "type": "hls", - "url": "https://live20.bozztv.com/akamaissh101/ssh101/pyctelevision/playlist.m3u8", - "label": "Canal PyC" + "url": "https://s-pl-01.mediatool.tv/playout/tbpl-abr/index.m3u8", + "label": "Telewizja Biznesowa" }, { "type": "hls", - "url": "https://backupmaxmedia.hvmultiplay.com/hls/stream2/momento24.m3u8", - "label": "Momento24" + "url": "https://tvregfull.mailfull.pl/tvregfull/memfs/e64b3e05-649c-4939-9ff6-584e79285ccd.m3u8", + "label": "TV Regionalna Lubin" }, { "type": "hls", - "url": "https://inforedvos.lcdn.claro.net.co/Content/HLS_HLS_DIR/Live/channel(REDMASHDWEB)/master.m3u8", - "label": "Red+" + "url": "https://lowa8026-cmyk.github.io/PL/PULSHD.php.m3u8", + "label": "TV Puls" }, { "type": "hls", - "url": "https://play.cdn.enetres.net/621B146D29C541AFB1507809F038F471021/021/playlist.m3u8", - "label": "Noticiero 90 Minutos" + "url": "https://5cce8c6f0e84c.streamlock.net/LiveCast/smil:PlayStream9.smil/playlist.m3u8", + "label": "TV ASTA" }, { "type": "hls", - "url": "https://vs20.live.opencaster.com/soonatv_a1a564a9/index.m3u8", - "label": "Soona TV" + "url": "https://stream.twoja.tv/ttv_hls/live.m3u8", + "label": "Twoja.TV" }, { "type": "hls", - "url": "https://live20.bozztv.com/akamaissh101/ssh101/cncvalledupar1/playlist.m3u8", - "label": "CNC Valledupar" + "url": "https://5d84fe297ee2b.streamlock.net/sercanie/scj_florek.stream_aac/playlist.m3u8", + "label": "Telewizja iTTV" }, { "type": "hls", - "url": "https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8", - "label": "Senal Colombia" + "url": "https://tvregfull.mailfull.pl/tvregfull/memfs/e64b3e05-649c-4939-9ff6-584e79285ccd_output_0.m3u8", + "label": "Telewizja Regionalna Zary" }, { "type": "hls", - "url": "https://stmv2.voxtvhd.com.br/marsella/marsella/playlist.m3u8", - "label": "Marsella TV" - } - ], - "Jordan": [ + "url": "https://srv1.streamingo.pl/memfs/be50f17e-6579-4bdf-86b1-31207aec85b8.m3u8", + "label": "Telewizja Relax" + }, { "type": "hls", - "url": "https://jmc-live.ercdn.net/altaghier/altaghier.m3u8", - "label": "Altaghier TV" + "url": "https://iptv.prosto.tv/ch171/index.m3u8", + "label": "Belsat TV" }, { "type": "hls", - "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Archive/playlist.m3u8", - "label": "Jordan Archive" + "url": "https://amg00735-amg00735c57-rakuten-de-10677.playouts.now.amagi.tv/ts-eu-w1-n2/playlist/amg00735-videosolutionsagfast-wedotvauta-rakutende/cb553d1e726c678e9cd43d67d3ef42a0df2416fc087a8d6933fb4b926bc10f41f4e2a581b212bb785d9914ce1c553f080132c0099c3a0bc6da73b6512d6c6021c9c3ed64d89d1b17b2c8797368e62c4119e10f11d93b53309dbb1858dd68ec2b005ebb0d6f577fdcec0fac6b5ac58402967a7c82fc8e68312f5e56cd543fa29a7c9b1f0f5d65e94693d1605aa34f1abbd31c9df63d81b2a13ebedf52bbc33eabe7b5c98c50d7acad5b3ef4ac466f6f236f8a816ed1b835750fce1b5bcd2552213354fcac85f74f76ee2d250ca9b29fe635ad50a6fd540358406cb1d865a44989e5902bf9691a80e7d6fa575336b4c1145626b2f6a19dc1d352d742d6adf3d47f7098b94136178925f92c2f2a9ff4cf54d5954ed69b2c87bd651863808353c1cce6daa1e0c40abb20c9ccfbd76c16172d5442a054b09f6bd4319229fc975d712e202ecabb5bc094d65734102dd7d6249b797c8cd5808dd01935b0163c5fe665cb52062ced3a686eea24fdda11638b2f06807751d65737894ef9f81cfda8d5e00c58e48e91a29ebd7f4ba5b486210eed8f29b009af85251fe39768f8/106/426x240_611520/index.m3u8", + "label": "wedotv Auta" }, { "type": "hls", - "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Tourism/playlist.m3u8", - "label": "Jordan Tourism" + "url": "https://stream14.polskieradio.pl/pr4_video/video_pr4.stream/playlist.m3u8", + "label": "Radiowa Czworka" }, { "type": "hls", - "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Drama/playlist.m3u8", - "label": "Jordan Drama" + "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883104", + "label": "American Crime Channel" }, { "type": "hls", - "url": "https://ammantv-live.ercdn.net/ammantvhd/ammantvhd.m3u8", - "label": "Amman TV" + "url": "https://prx-y5cf8.4vod.tv/playout/repl-abr67/index.m3u8", + "label": "Remonty TV" }, { "type": "hls", - "url": "https://jrtv-live.ercdn.net/jordanhd/jordanhd.m3u8", - "label": "Jordan TV" + "url": "https://stream.4fun.tv:8888/hls/4f_high/index.m3u8", + "label": "4 Fun TV" }, { "type": "hls", - "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Song/playlist.m3u8", - "label": "Jordan Songs" + "url": "https://bsmbialogard.pl/live/index.m3u8", + "label": "Bialogardzka Telewizja Kablowa" }, { "type": "hls", - "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/cooking/playlist.m3u8", - "label": "Jordan Kitchen" + "url": "https://grupaatmrr.org.pl:8888/fallback/index.m3u8", + "label": "ATM Rozrywka REWORK" } ], - "Libya": [ + "France": [ { "type": "hls", - "url": "https://starmenajo.com/hls/almasar/index.m3u8", - "label": "Al Masar TV" + "url": "https://live.france24.com/hls/live/2037222-b/F24_AR_HI_HLS/master_5000.m3u8", + "label": "France 24" }, { "type": "hls", - "url": "https://alwasattv.hibridcdn.net/alwasattv/alwasat_abr/playlist.m3u8", - "label": "Wasat TV" + "url": "https://live-cdn-stream-euw1.bfmtv.bct.nextradiotv.com/master.m3u8", + "label": "BFM TV" }, { "type": "hls", - "url": "https://cdn-globecast.akamaized.net/live/eds/libya_al_watanya/hls_roku/index.m3u8", - "label": "Libya Al Wataniya" + "url": "https://live-cdn-stream-euw1.bfmb.bct.nextradiotv.com/master.m3u8", + "label": "BFM Business" }, { "type": "hls", - "url": "https://kilolink.pulsarstarsolutions.com/live/smil:tanasuhtv.smil/manifest.m3u8", - "label": "Tanasuh TV" - } - ], - "Yemen": [ + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_DICI_HAUTEPROVENCE/index.m3u8?end=END&start=LIVE", + "label": "BFM DICI Haute-Provence" + }, { "type": "hls", - "url": "https://live2.cdnbridge.tv/AlmasirahMubasher/Mubasher_All/playlist.m3u8", - "label": "Al Masirah Mubacher" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_DICI_ALPESDUSUD/index.m3u8?end=END&start=LIVE", + "label": "BFM DICI Alpes du Sud" }, { "type": "hls", - "url": "https://live.cdnbridge.tv/Almasirah/Almasirah_all/playlist.m3u8", - "label": "Al Masirah" + "url": "https://live-cdn-bfmtvlyo-euw1.bfmtv.bct.nextradiotv.com/master.m3u8", + "label": "BFM Lyon" }, { "type": "hls", - "url": "https://video.yementdy.tv/hls/yementoday.m3u8", - "label": "Yemen Today TV" + "url": "https://d1ib1gsg71oarf.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-scp7wda722jph/BFM2_FR.m3u8", + "label": "BFM2" }, { "type": "hls", - "url": "https://assahat.b-cdn.net/Assahat/assahatobs/index.m3u8", - "label": "Al-Sahat TV" - } - ], - "Syria": [ + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFMGRANDLITTORAL/index.m3u8?end=END&start=LIVE", + "label": "BFM Grand Littoral" + }, { "type": "hls", - "url": "https://live.kwikmotion.com/syriatvlive/syriatv.smil/playlist_dvr.m3u8", - "label": "Syria TV" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFMGRANDLILLE/index.m3u8?end=END&start=LIVE", + "label": "BFM Grand Lille" }, { "type": "hls", - "url": "https://halabtoday-live.lg.mncdn.com/halabtoday/livestream/playlist.m3u8", - "label": "Halab Today TV" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_MARSEILLEPROV/index.m3u8?end=END&start=LIVE", + "label": "BFM Marseille" }, { "type": "hls", - "url": "https://stream.badinan.xyz/welat/tv/playlist.m3u8", - "label": "Welat TV" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_TECHANDCO/index.m3u8?end=END&start=LIVE", + "label": "BFM Tech & Co" }, { "type": "hls", - "url": "https://live.kwikmotion.com/syriatv02live/syriatv02.smil/playlist.m3u8", - "label": "Althania" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_TOULONVAR/index.m3u8?end=END&start=LIVE", + "label": "BFM Var" }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/ROJAVA_HD/HLS/ROJAVA_HD.m3u8", - "label": "Rojava TV" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_NORMANDIE/index.m3u8?end=END&start=LIVE", + "label": "BFM Normandie" }, { "type": "hls", - "url": "https://hlspackager.akamaized.net/live/DB/RONAHI_TV/HLS/RONAHI_TV.m3u8", - "label": "Ronahi TV" - } - ], - "Azerbaijan": [ + "url": "https://live-20minutestv.digiteka.com/1961167769/index.m3u8", + "label": "20 Minutes TV" + }, { "type": "hls", - "url": "https://rtmp.baku.tv/hls/bakutv.m3u8", - "label": "Baku.TV" + "url": "https://do7nccdsswstc.cloudfront.net/v1/manifest/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-1aso0bc668saa/a5233c83-f772-4a81-959a-45ec7877ef61/5.m3u8", + "label": "Caillou" }, { "type": "hls", - "url": "https://nl.livekadeh.com/hls2/vilayet.m3u8", - "label": "Vilayet TV" + "url": "https://edge13.vedge.infomaniak.com/livecast/ik:adhtv/manifest.m3u8", + "label": "Alpe d'Huez TV" }, { "type": "hls", - "url": "https://str.yodacdn.net/azertv/index.m3u8", - "label": "Az TV" + "url": "https://vdo2.pro-fhi.net:3628/live/uppodsfqlive.m3u8", + "label": "Cannes Lerins TV" }, { "type": "hls", - "url": "https://cdn10-alvinchannel.yayin.com.tr/alvinchannel/alvinchannel/playlist.m3u8", - "label": "Alvin Channel TV" + "url": "https://stream2.mandarine.media/brionnaistv/brionnaistv/playlist.m3u8", + "label": "Brionnais TV" }, { "type": "hls", - "url": "https://str.yodacdn.net/medeniyyettele/index.m3u8", - "label": "Medeniyyet TV" + "url": "https://figarotv-live.freecaster.com/live/freecaster/figarotv.m3u8", + "label": "Le Figaro TV Ile-de-France" }, { "type": "hls", - "url": "https://str2.yodacdn.net/kanal35/index.m3u8", - "label": "Kanal 35" + "url": "https://tv3v.live-kd.com/live/tv3v/livestream/index.m3u8", + "label": "TV3V" }, { "type": "hls", - "url": "https://janya-ayaztv.vgcdn.net/ptnr-WebApp/title-Ayaz_TV/v1/vglive-sk-934820/main.m3u8", - "label": "Ayaz TV" + "url": "https://vosgestv.live-kd.com/live/vosgestv/vosgestv/playlist.m3u8", + "label": "Vosges TV" }, { "type": "hls", - "url": "https://str2.yodacdn.net/ntv/video.m3u8", - "label": "Naxcivan TV" - } - ], - "Canada": [ + "url": "https://tv7.live-kd.com/live/tv7/livestream/playlist.m3u8", + "label": "TV7 Colmar" + }, { "type": "hls", - "url": "https://citynewsregional.akamaized.net/hls/live/1024053/Regional_Live_8/Video-2Mbps.m3u8", - "label": "CityNews Edmonton" + "url": "https://d15aro46bnpfm8.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-fqkqiax1078up/RMC_Story_FR.m3u8", + "label": "RMC Story" }, { "type": "hls", - "url": "https://rcavlive.akamaized.net/hls/live/704025/xcanrdi/master.m3u8", - "label": "Ici RDI" + "url": "https://live.azenagroup.com/zenith/index.ll.m3u8", + "label": "zenith" }, { "type": "hls", - "url": "https://citynewsregional.akamaized.net/hls/live/1024052/Regional_Live_7/master.m3u8", - "label": "CityNews Toronto" + "url": "https://5dd226f8f01e8.streamlock.net/via-matele-live/matelelive_1080/playlist.m3u8", + "label": "ViaMatele" }, { "type": "hls", - "url": "https://d2ny9lo79ujali.cloudfront.net/CBC_News_International.m3u8", - "label": "CBC News Network" + "url": "https://mumt03.tangotv.in/Dsly5z3HTV5MONDEASIA/index.m3u8", + "label": "TV5Monde Asia" }, { "type": "hls", - "url": "https://citynewsregional.akamaized.net/hls/live/1024053/Regional_Live_8/master.m3u8", - "label": "CityNews Calgary" + "url": "https://ncdn-live-bfm.pfd.sfr.net/shls/LIVE$BFM_ALSACE/index.m3u8?end=END&start=LIVE", + "label": "BFM Alsace" }, { "type": "hls", - "url": "https://citynewsregional.akamaized.net/hls/live/1024054/Regional_Live_9/master.m3u8", - "label": "CityNews Vancouver" + "url": "https://event.vedge.infomaniak.com/livecast/ik:puissancetelevision/manifest.m3u8", + "label": "Puissance TV" }, { "type": "hls", - "url": "https://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-en/playlist.m3u8", - "label": "Ontario Parliamentary Network" + "url": "https://event.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8", + "label": "Generations TV" }, { "type": "hls", - "url": "https://932y483pdjv8-hls-live.5centscdn.com/stream/deb10bae362f810630ec3abedcae5894.sdp/playlist.m3u8", - "label": "TV Punjab" - } - ], - "Afghanistan": [ + "url": "https://live-antenne-reunion.zeop.tv/live/c3eds/antreunihd/hls_fta/antreunihd.m3u8?location=ZEOP01", + "label": "Antenne Reunion" + }, { "type": "hls", - "url": "https://tgn.bozztv.com/eshgtv-dvrfl05/gin-tolonews/index.m3u8", - "label": "TOLOnews" + "url": "https://live.creacast.com/littoralfm-ch1/stream/playlist.m3u8", + "label": "Littoral FM TV" }, { "type": "hls", - "url": "https://dunyanhls.wns.live/hls/stream.m3u8", - "label": "Dunya Naw TV" + "url": "https://channels.trace.plus/Traceprod/URBAN_AFRIC_FR_hd/index.m3u8", + "label": "Trace Urban" }, { "type": "hls", - "url": "https://hls.tamadon.live/hls/stream.m3u8", - "label": "Tamadon TV" + "url": "https://channels.trace.plus/Traceprod/TOCA_hd/index.m3u8", + "label": "Trace Toca" }, { "type": "hls", - "url": "https://tgn.bozztv.com/eshgtv-dvrfl05/gin-tolohd/tracks-v1a1/mono.m3u8", - "label": "Tolo TV" + "url": "https://channels.trace.plus/Traceprod/AFRICA_EN_hd/index.m3u8", + "label": "Trace Ngoma" }, { "type": "hls", - "url": "https://fflive-darya-educationtv.b-cdn.net/master.m3u8", - "label": "Shams TV (AF)" + "url": "https://channels.trace.plus/Traceprod/CARIBBEAN_hd/index.m3u8", + "label": "Trace Caribbean" }, { "type": "hls", - "url": "https://rta-tv.akamaized.net/live/SD/RTA-1/RTA/RTA-1.m3u8", - "label": "RTA" + "url": "https://tvf-tv5ch.otteravision.com/tvf/tv5ch/tv5ch.m3u8", + "label": "TV5MONDE Chefs" }, { "type": "hls", - "url": "https://tgn.bozztv.com/eshgtv-dvrfl05/gin-lemar/index.m3u8", - "label": "Lemar TV" + "url": "https://channels.trace.plus/Traceprod/MUZIKA_hd/index.m3u8", + "label": "Trace Muzika" }, { "type": "hls", - "url": "https://eslahtvhls.wns.live/hls/stream.m3u8", - "label": "Eslah TV" + "url": "https://channels.trace.plus/Traceprod/NAIJA_hd/index.m3u8", + "label": "Trace Naija" + }, + { + "type": "hls", + "url": "https://channels.trace.plus/Traceprod/MBOA_hd/index.m3u8", + "label": "Trace Mboa" + }, + { + "type": "hls", + "url": "https://channels.trace.plus/Traceprod/AFRICA_FR_hd/index.m3u8", + "label": "Trace Africa" } ], - "Bangladesh": [ + "India": [ { "type": "hls", - "url": "https://app.ncare.live/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI2/mytv-up-off.stream/live-orgin/mytv-up-off.stream/playlist.m3u8", - "label": "My TV" + "url": "https://raw.githubusercontent.com/amazeyourself/adaptive-streams/refs/heads/main/streams/in/YuppTV/NDTV24x7.m3u8", + "label": "NDTV 24x7" }, { "type": "hls", - "url": "https://app.ncare.live/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI2/gazibdz.stream/live-orgin/gazibdz.stream/playlist.m3u8", - "label": "Gazi TV" + "url": "https://sbnews.nexcdn.online/sbnews/live/index.m3u8", + "label": "Sach Bedhadak" }, { "type": "hls", - "url": "https://tvsen6.aynaott.com/Epm7WrFa/index.m3u8", - "label": "Nexus TV" + "url": "https://stream.ottlive.co.in/9plusnews/index.m3u8", + "label": "9 Plus News" }, { "type": "hls", - "url": "https://boishakhi.sonarbanglatv.com/boishakhi/boishakhitv/index.m3u8", - "label": "Boishakhi TV" + "url": "https://yupprestreamliveus.akamaized.net/vglive-sk-355289/majha/master.m3u8", + "label": "ABP Majha" }, { "type": "hls", - "url": "https://stream.shariarsuvo.com/hls5/rajdhanicable.m3u8", - "label": "Rajdhani TV" + "url": "https://livestream.jswk.online/mhonenews/live/index.m3u8", + "label": "Mh 1 News" }, { "type": "hls", - "url": "https://tvsen5.aynaott.com/banglavision/index.m3u8", - "label": "Bangla Vision" + "url": "https://segment.yuppcdn.net/110322/polimernews/playlist.m3u8", + "label": "Polimer News" }, { "type": "hls", - "url": "https://tvsen5.aynaott.com/atnbangla/index.m3u8", - "label": "ATN Bangla" + "url": "https://amg17783-amg17783c1-amgplt0173.playout.now3.amagi.tv/playlist/amg17783-amg17783c1-amgplt0173/playlist.m3u8", + "label": "Malai Murasu TV" }, { "type": "hls", - "url": "https://tvsen5.aynaott.com/xV4jEKf3D9zc/index.m3u8", - "label": "NTV (BD)" - } - ], - "Vietnam": [ + "url": "https://yuppmedtaorire.akamaized.net/v1/master/a0d007312bfd99c47f76b77ae26b1ccdaae76cb1/sakshi_nim_https/240122/sakshi/playlist.m3u8", + "label": "Sakshi TV" + }, { "type": "hls", - "url": "https://vtvgolive-ott3.vtvdigital.vn/live/dongnai1tv/chunklist_2.m3u8", - "label": "Dong Nai TV 1" + "url": "https://segment.yuppcdn.net/240122/news7/playlist.m3u8", + "label": "News 7 Tamil" }, { "type": "hls", - "url": "https://freem3u.xyz/api/live/play.m3u8?vid=91", - "label": "Tra Vinh TV" + "url": "https://segment.yuppcdn.net/050522/reporter/playlist.m3u8", + "label": "Reporter TV" }, { "type": "hls", - "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv12/master.m3u8", - "label": "SCTV12" + "url": "https://amg00644-amg00644c1-ondemandkorea-amesia-10266.playouts.now.amagi.tv/playlist/amg00644-tvtodaynetworkltdfast-indiatoday-ondemandkoreaamesia/playlist.m3u8", + "label": "India Today" }, { "type": "hls", - "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv13/master.m3u8", - "label": "SCTV13" + "url": "https://d2gvyg6lvauoko.cloudfront.net/230226/bigtvmalyalam/chunks.m3u8", + "label": "Big TV 24x7" }, { "type": "hls", - "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv14/master.m3u8", - "label": "SCTV14" + "url": "https://pl-indiatvnews.akamaized.net/out/v1/db79179b608641ceaa5a4d0dd0dca8da/index.m3u8", + "label": "India TV" }, { "type": "hls", - "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv6/master.m3u8", - "label": "SCTV6" + "url": "https://yuppparoriglin.akamaized.net/181224/smil:6tv.smil/playlist.m3u8?hdnts=st=1735898689~exp=1835898688~acl=*~hmac=f5fe24724fe05481e3841f9eb5ab8efdee0a3dd83645ae9dcf45703f525bab7b", + "label": "6 TV Telugu" }, { "type": "hls", - "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv11/master.m3u8", - "label": "SCTV11" + "url": "https://yuppmedtaorire.akamaized.net/v1/master/a0d007312bfd99c47f76b77ae26b1ccdaae76cb1/mathrubhuminews_nim_https/110322/mathrubhuminews/playlist.m3u8", + "label": "Mathrubhumi News" }, { "type": "hls", - "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv9/master.m3u8", - "label": "SCTV9" - } - ], - "China": [ + "url": "https://live.jswk.online/IK_RTPM/live/index.m3u8", + "label": "Janta TV" + }, { "type": "hls", - "url": "https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL2.smil/playlist.m3u8", - "label": "CCTV+ 2" + "url": "https://n18syndication.akamaized.net/bpk-tv/News18_JKLH_NW18_MOB/output01/master.m3u8", + "label": "News18 Delhi NCR JK" }, { "type": "hls", - "url": "https://amg00405-rakutentv-cgtn-rakuten-i9tar.amagi.tv/master.m3u8", - "label": "CGTN" + "url": "https://chardikalagurbanitv.gigabitcdn.net/in-chardikala/chardikala-timetv/playlist.m3u8", + "label": "Chardikla Time TV" }, { "type": "hls", - "url": "https://liveplus.lzr.com.cn/xwzh/HD/live.m3u8", - "label": "Lanzhou Comprehensive News Channel" + "url": "https://highmedia.livebox.co.in/HIGHNEWShls/LIVE.m3u8", + "label": "High News" }, { "type": "hls", - "url": "https://stream.hrbtv.net/xwzh/playlist.m3u8?_upt=ef41dd531755913594", - "label": "Harbin Comprehensive News Channel" + "url": "https://amg13737-amg13737c1-amgplt0016.playout.now3.amagi.tv/playlist/amg13737-amg13737c1-amgplt0016/playlist.m3u8", + "label": "Asianet News" }, { "type": "hls", - "url": "https://h5cul1yar48um3t.wcetv.com/hls/gdsatellite.m3u8", - "label": "Guangdong Satellite TV" + "url": "https://feeds.intoday.in/aajtak/api/aajtakhd/master.m3u8", + "label": "Aaj Tak" }, { "type": "hls", - "url": "https://fastlive.cctvplus.com/out/v1/8442c3bfd4c64a3984389328f6087879/index.m3u8", - "label": "Discovering China" + "url": "https://chardikalatimestv.gigabitcdn.net/in-chardikala/chardikala-gurbani-tv/playlist.m3u8", + "label": "Chardikla Gurbaani TV" }, { "type": "hls", - "url": "https://fastlive.cctvplus.com/out/v1/2b3d8a0c805d437f9dc85b764c2ac599/index.m3u8", - "label": "CGTN Global Biz" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/swarajexpresssmbc/playlist.m3u8", + "label": "Swaraj Express SMBC" }, { "type": "hls", - "url": "https://event.pull.hebtv.com/live/live101.m3u8", - "label": "Hebei TV" - } - ], - "Austria": [ + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/hindikhabar/playlist.m3u8", + "label": "Hindi Khabar" + }, { "type": "hls", - "url": "https://streaming14.huberwebmedia.at/LiveApp/streams/livestream.m3u8", - "label": "Tirol TV" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/khabreinabhitak/playlist.m3u8", + "label": "Khabrain Abhi Tak" }, { "type": "hls", - "url": "https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8", - "label": "W24" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/hornbilltv/playlist.m3u8", + "label": "Hornbill TV" }, { "type": "hls", - "url": "https://streaming10.huberwebmedia.at/LiveApp/streams/238985177034727564068269_adaptive.m3u8", - "label": "TV 1 Oberosterreich" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/inh24x7/playlist.m3u8", + "label": "INH 24x7" }, { "type": "hls", - "url": "https://h056.video-stream-hosting.de/easycast8-live/_definst_/mp4:livestreamhd4/playlist.m3u8?ref=", - "label": "Steiermark TV" + "url": "https://d3qs3d2rkhfqrt.cloudfront.net/out/v1/2e31d831f08640ff92f65003bdc89991/index.m3u8", + "label": "Republic TV" }, { "type": "hls", - "url": "https://ms01.w24.at/R9/smil:liveeventR9.smil/playlist.m3u8", - "label": "R9" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/news1india/playlist.m3u8", + "label": "News 1 India" }, { "type": "hls", - "url": "https://stream.fs1.tv/hls/webstream.m3u8", - "label": "FS1 Salzburg" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/indiavoice/playlist.m3u8", + "label": "India Voice" }, { "type": "hls", - "url": "https://streaming13.huberwebmedia.at/LiveApp/streams/985585225397790082777809.m3u8", - "label": "Landle TV" + "url": "https://d3qs3d2rkhfqrt.cloudfront.net/out/v1/6cd2f649739a45ca9de1daf81cc7d0f2/index.m3u8", + "label": "News Nation" }, { "type": "hls", - "url": "https://orf3.mdn.ors.at/orf/orf3/qxa/manifest.m3u8", - "label": "ORF III" - } - ], - "Cambodia": [ + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/News1st/playlist.m3u8", + "label": "News 1st" + }, { "type": "hls", - "url": "https://live.kh.malimarcdn.com/live/tvk.stream/playlist.m3u8", - "label": "TVK" + "url": "https://d1msejlow1t3l4.cloudfront.net/fta/jaimaharashtra/playlist.m3u8", + "label": "Jai Maharashtra" }, { "type": "hls", - "url": "https://seatv.netlinkbroadcaster.com/hls/test.m3u8", - "label": "SEA TV" + "url": "https://raw.githubusercontent.com/amazeyourself/adaptive-streams/refs/heads/main/streams/in/YuppTV/NDTVIndia.m3u8", + "label": "NDTV India" }, { "type": "hls", - "url": "https://ip.pdtvhd.com/Khmer/streams/CTV5.m3u8", - "label": "TV5 Cambodia" + "url": "https://legitpro.co.in/nsc9/index.m3u8", + "label": "NSC9 News" }, { "type": "hls", - "url": "https://live.sangkemtv.com/memfs/sangkem.m3u8", - "label": "Sangkem TV" - } - ], - "Taiwan": [ + "url": "https://live.legitpro.co.in/ctvnakdplus/index.m3u8", + "label": "CTVN AKD Plus" + }, { "type": "hls", - "url": "https://streamipcfapp.akamaized.net/live/_definst_/live_720/key_b1500.m3u8", - "label": "Taiwan Indigenous TV" + "url": "https://server.thelegitpro.in/northeastlive/northeastlive/index.fmp4.m3u8", + "label": "Northeast Live" }, { "type": "hls", - "url": "https://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8", - "label": "WXTV" + "url": "https://live1.ottlive.co.in/newsmarathi/newsmarathi/index.m3u8", + "label": "News Marathi 24x7" }, { "type": "hls", - "url": "https://live.streamingfast.net/osmflivech1.m3u8", - "label": "Good TV" + "url": "https://live1.ottlive.co.in/spokesman/spokesman/index.m3u8", + "label": "Rozana Spokesman" }, { "type": "hls", - "url": "https://5ddce30eb4b55.streamlock.net/bltvhd/bltv1/playlist.m3u8", - "label": "Beautiful Life TV" + "url": "https://server.playontv.in/nationnews/index.m3u8", + "label": "Nation News" } ], - "Belarus": [ + "Turkey": [ { "type": "hls", - "url": "https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8", - "label": "Belarus-24" + "url": "https://tv.ensonhaber.com/haberturk/haberturk.m3u8", + "label": "Haberturk TV" }, { "type": "hls", - "url": "https://ngtrk.dc.beltelecom.by/ngtrk/smil:informacionnyy.smil/playlist.m3u8", - "label": "Perviy Informationniy" + "url": "https://tv.ensonhaber.com/tv24/tv24.m3u8", + "label": "24 TV" }, { "type": "hls", - "url": "https://ctv.dc.beltelecom.by/ctv/ctv.stream/playlist.m3u8", - "label": "STV" + "url": "https://canli.tgrthaber.com/tgrt.m3u8", + "label": "TGRT Haber" }, { "type": "hls", - "url": "https://live.dc.beltelecom.by/vtv/vitebsk.stream/playlist.m3u8", - "label": "Vitebsk" + "url": "https://dash2.antik.sk/live/test_trt_world_atktv/playlist.m3u8", + "label": "TRT World" }, { "type": "hls", - "url": "https://stream1.dc.beltelecom.by/radiomir/studio.stream/playlist.m3u8", - "label": "Radio Mir" - } - ], - "Norway": [ + "url": "https://tv-trthaber.medya.trt.com.tr/master.m3u8", + "label": "TRT Haber" + }, { "type": "hls", - "url": "https://streamnorge.com:8088/hls/tvo.m3u8", - "label": "TV Ostfold" + "url": "https://tv-trtarabi.medya.trt.com.tr/master.m3u8", + "label": "TRT Arabi" }, { "type": "hls", - "url": "https://frikanalen.no/stream/index.m3u8", - "label": "Frikanalen" + "url": "https://yayin30.haber100.com/live/finansturk/playlist.m3u8", + "label": "Finans Turk TV" }, { "type": "hls", - "url": "https://cdn010.panaccess.com/5677_streams/TVMODUM/index.m3u8", - "label": "TVModum" + "url": "https://cdn-haber61tv.yayin.com.tr/haber61tv/smil:haber61tv.smil/index.m3u8", + "label": "Haber61 TV" }, { "type": "hls", - "url": "https://digicom.hls.iptvdc.com/canalmotor/index.m3u8", - "label": "Canal Motor" - } - ], - "Nepal": [ + "url": "https://tv.ensonhaber.com/haberglobal/haberglobal.m3u8", + "label": "Haber Global" + }, { "type": "hls", - "url": "https://tvtoday.rpmc.com.np/hls/bipashatech/1_2/index.m3u8", - "label": "TV Today Janakpur" + "url": "https://turkmedya-live.ercdn.net/tv360/tv360.m3u8", + "label": "360" }, { "type": "hls", - "url": "https://streaming.tvnepal.com:19360/raynewsdaily/720p.m3u8", - "label": "Ray TV HD" + "url": "https://halktv-live.daioncdn.net/halktv/halktv.m3u8", + "label": "Halk TV" }, { "type": "hls", - "url": "https://streaming.tvnepal.com:19360/capitaltv/720p.m3u8", - "label": "Capital TV HD" + "url": "https://603c568fccdf5.streamlock.net/live/dhaweb1_C5efC/playlist.m3u8", + "label": "DHA" }, { "type": "hls", - "url": "https://ktvhdsg.ekantipur.com:8443/high_quality_85840165/hd/kantipurtv/hd_1080/chunks.m3u8", - "label": "Kantipur TV" - } - ], - "Israel": [ + "url": "https://cdn.ekoturk.net/hls/master.m3u8", + "label": "Ekoturk" + }, { "type": "hls", - "url": "https://i24newsenglish-cdn.encoders.immergo.tv/master.m3u8", - "label": "i24NEWS English World" + "url": "https://rnttwmjcin.turknet.ercdn.net/lcpmvefbyo/ahaber/ahaber.m3u8", + "label": "A Haber" }, { "type": "hls", - "url": "https://contact.gostreaming.tv/Con-11/index.m3u8", - "label": "Channel 9" + "url": "https://edge1.socialsmart.tv/turkhaber/bant1/playlist.m3u8", + "label": "TurkHaber TV" }, { "type": "hls", - "url": "https://kancdn.medonecdn.net/livehls/oil/kancdn-live/live/makan/live.livx/playlist.m3u8", - "label": "Makan 33" + "url": "https://b01c02nl.mediatriple.net/videoonlylive/mtyycglqauzjhlive/broadcast_67c053c48829f.smil/playlist.m3u8", + "label": "Flash Haber TV" }, { "type": "hls", - "url": "https://stream.panet.com/edge/halaTV/playlist.m3u8", - "label": "Hala TV" + "url": "https://live.artidijitalmedya.com/artidijital_lifetv/lifetv/playlist.m3u8", + "label": "Life TV (TR)" }, { "type": "hls", - "url": "https://r.il.cdn-redge.media/livehls/oil/ch14/live/ch14/live.livx/playlist.m3u8", - "label": "Now 14" + "url": "https://edge1.socialsmart.tv/gtv/bant1/playlist.m3u8", + "label": "Guneydogu TV" }, { "type": "hls", - "url": "https://kancdn.medonecdn.net/livehls/oil/kancdn-live/live/kan11/live.livx/playlist.m3u8", - "label": "Kan 11" + "url": "https://live.artidijitalmedya.com/artidijital_astv/astv/playlist.m3u8", + "label": "AS TV" }, { "type": "hls", - "url": "https://1247634592.rsc.cdn77.org/1247634592/playlist.m3u8", - "label": "Shelanu.TV" + "url": "https://tvnet-live.lg.mncdn.com/tvnet/tvnet/playlist.m3u8", + "label": "TVNET (TR)" }, { "type": "hls", - "url": "https://edge3.uk.kab.tv/live/tv66-heb-high/playlist.m3u8", - "label": "Kabbalah for the People Israel" - } - ], - "New Zealand": [ + "url": "https://tv-e-okul01.medya.trt.com.tr/master.m3u8", + "label": "TRT EBA" + }, { "type": "hls", - "url": "https://ptvlive.kordia.net.nz/out/v1/daf20b9a9ec5449dadd734e50ce52b74/index.m3u8", - "label": "Parliament TV" + "url": "https://tv-trtkurdi.medya.trt.com.tr/master.m3u8", + "label": "TRT Kurdi" }, { "type": "hls", - "url": "https://stream.wairarapatv.co.nz/Broadband_High/playlist.m3u8", - "label": "Wairarapa TV" + "url": "https://turkmedya-live.ercdn.net/tv4/tv4.m3u8", + "label": "TV 4" }, { "type": "hls", - "url": "https://ptvlive.kordia.net.nz/out/v1/3fc2254c865a457c8d7fbbce227a2aae/index.m3u8", - "label": "Kordia TV" + "url": "https://tv-trtavaz.medya.trt.com.tr/master.m3u8", + "label": "TRT Avaz" }, { "type": "hls", - "url": "https://i.mjh.nz/.r/te-reo.m3u8", - "label": "Te Reo" + "url": "https://canli.sercemtv.com.tr/hls/0/stream.m3u8", + "label": "Sercem TV" }, { "type": "hls", - "url": "https://i.mjh.nz/.r/maori-tv.m3u8", - "label": "Whakaata Maori" + "url": "https://stream.ilketv.com.tr/hls/ilkecanli.m3u8", + "label": "Ilke TV" }, { "type": "hls", - "url": "https://uni01rtmp.tulix.tv/firstlight/firstlight.smil/playlist.m3u8", - "label": "Firstlight" - } - ], - "Serbia": [ + "url": "https://b01c02nl.mediatriple.net/videoonlylive/mtisvwurbfcyslive/broadcast_58d915bd40efc.smil/playlist.m3u8", + "label": "Semerkand TV" + }, { "type": "hls", - "url": "https://tv.rtvnp.rs/stream.m3u8", - "label": "RTV Novi Pazar" + "url": "https://tv.ensonhaber.com/benguturk/benguturk.m3u8", + "label": "Benguturk TV" }, { "type": "hls", - "url": "https://stream2.nmih.hu:4102/live.m3u8", - "label": "TV Panon" + "url": "https://edge.taksimbilisim.com/kocaelitv/bant1/playlist.m3u8", + "label": "Kocaeli TV" }, { "type": "hls", - "url": "https://webtvstream.bhtelecom.ba/rts2.m3u8", - "label": "RTS 2" + "url": "https://b01c02nl.mediatriple.net/videoonlylive/mtpayqrfkgirxelive/broadcast_5e91c5ac96898.smil/playlist.m3u8", + "label": "Luys TV" }, { "type": "hls", - "url": "https://vod1.laki.eu/live/hram/index.m3u8", - "label": "TV Hram" + "url": "https://cdn-kanal23.yayin.com.tr/kanal23/index.m3u8", + "label": "Kanal 23" }, { "type": "hls", - "url": "https://stream.nmih.hu:4102/live.m3u8", - "label": "Pannon TV" + "url": "https://edge1.socialsmart.tv/linetv/bant1/playlist.m3u8", + "label": "Line TV" }, { "type": "hls", - "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-live/j3a-n14-2pf-g3s/index.m3u8", - "label": "ZICO TV" + "url": "https://edge1.socialsmart.tv/muglaturk/bant1/playlist.m3u8", + "label": "MTurk TV" }, { "type": "hls", - "url": "https://peer2.tdiradio.com/static/streaming-playlists/hls/bab99862-ec1c-474f-9a02-4f8c8677d565/0.m3u8", - "label": "Radio Hit FM TV" + "url": "https://edge1.socialsmart.tv/iceltv/bant1/playlist.m3u8", + "label": "Icel TV" }, { "type": "hls", - "url": "https://peer2.tdiradio.com/static/streaming-playlists/hls/4207de1d-52e8-4591-ad9e-218069b864d1/0.m3u8", - "label": "Radio Karolina TV" - } + "url": "https://tv-trtturk.medya.trt.com.tr/master.m3u8", + "label": "TRT Turk" + }, + { + "type": "hls", + "url": "https://edge1.socialsmart.tv/naturaltv/bant1/playlist.m3u8", + "label": "Natural TV" + }, + { + "type": "hls", + "url": "https://live.artidijitalmedya.com/artidijital_tivi6/tivi6/playlist.m3u8", + "label": "Tivi 6" + }, + { + "type": "hls", + "url": "https://live.artidijitalmedya.com/artidijital_kaytv/kaytv/playlist.m3u8", + "label": "Kay TV" + }, + { + "type": "hls", + "url": "https://live.artidijitalmedya.com/artidijital_tempotv/tempotv/playlist.m3u8", + "label": "Tempo TV" + }, + { + "type": "hls", + "url": "https://edge1.socialsmart.tv/tv1/bant1/playlist.m3u8", + "label": "TV 1" + } + ], + "Myanmar": [ + { + "type": "hls", + "url": "https://live-stream.dvb.no/hls/stream_src/index.m3u8", + "label": "DVB TV" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MRTV-NEWS-HD/master.m3u8", + "label": "MRTV News" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MRTV-HLUTTAW/master.m3u8", + "label": "Hluttaw S & D" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MRTV-HD/master.m3u8", + "label": "MRTV" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MRTV-NRC-HD/master.m3u8", + "label": "MRTV NRC" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MITV/master.m3u8", + "label": "Myanmar International TV" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MRTV-Ent-HD/master.m3u8", + "label": "MRTV Entertainment" + }, + { + "type": "hls", + "url": "https://mrtvott.com/cache/MRTV-FARMER/master.m3u8", + "label": "MRTV Farmer" + } + ], + "Argentina": [ + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar/hls/mercuriotv/mercuriotv.m3u8", + "label": "Mercurio Noticias" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/canal7catamarca/ngrp:canal7catamarca_all/playlist.m3u8?DVR=", + "label": "Catamarca TV" + }, + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar:19360/quanticatv/quanticatv.m3u8", + "label": "Quantica TV" + }, + { + "type": "hls", + "url": "https://tdcserver.com:19360/tdconlione-2/tdconlione-2.m3u8", + "label": "Canal TDC" + }, + { + "type": "hls", + "url": "https://panel.host-live.com:19360/cn247tv/cn247tv.m3u8", + "label": "24/7 Canal de Noticias" + }, + { + "type": "hls", + "url": "https://stream-gtlc.telecentro.net.ar/hls/canal26hls/main.m3u8", + "label": "Canal 26" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-canal30tda/canal30tda/chunks.m3u8", + "label": "Senal U" + }, + { + "type": "hls", + "url": "https://vivo.solumedia.com:19360/uniteve/uniteve.m3u8", + "label": "Uniteve" + }, + { + "type": "hls", + "url": "https://vivo.solumedia.com:19360/cooperativa/cooperativa.m3u8", + "label": "Canal 7 Salta" + }, + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar:19360/canal5alfatvchepes/canal5alfatvchepes.m3u8", + "label": "Canal 5 TV Chepes" + }, + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar:19360/neotvdigital/neotvdigital.m3u8", + "label": "Neo TV" + }, + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar/hls/canaluniversidadmdp/canaluniversidadmdp.m3u8", + "label": "Canal Universidad" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/c5sf/c5sf/playlist.m3u8", + "label": "Canal 5 Santa Fe" + }, + { + "type": "hls", + "url": "https://vivo.solumedia.com:19360/bragadato/bragadato.m3u8", + "label": "Bragado TV" + }, + { + "type": "hls", + "url": "https://vivo.solumedia.com:19360/sicarditv/sicarditv.m3u8", + "label": "Sicardi TV" + }, + { + "type": "hls", + "url": "https://vivo.solumedia.com:19360/cardinal/cardinal.m3u8", + "label": "Canal 99 Miramar" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/ecotv/ngrp:ecotv_all/playlist.m3u8", + "label": "Eco TV" + }, + { + "type": "hls", + "url": "https://617c5175c970b.streamlock.net:4444/tvlink/live/playlist.m3u8", + "label": "NG Federal" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/somosentrerios/playlist.m3u8", + "label": "Somos Entre Rios" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/c3lapampa/ngrp:c3lapampa_all/playlist.m3u8", + "label": "Canal 3 La Pampa" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/litustv/index.m3u8", + "label": "Litus TV" + }, + { + "type": "hls", + "url": "https://stream.radiosmundiales.com/hls/sanluismas/sanluismas.m3u8", + "label": "San Luis +" + }, + { + "type": "hls", + "url": "https://stmv6.voxtvhd.com.br/solivetv/solivetv/playlist.m3u8", + "label": "Solive TV" + }, + { + "type": "hls", + "url": "https://617c5175c970b.streamlock.net:4444/chacodxdtv/livenew/playlist.m3u8", + "label": "Ciudad TV Resistencia" + }, + { + "type": "hls", + "url": "https://streamlov.alsolnet.com/canal4sanjuan/live/playlist.m3u8", + "label": "Canal 4 San Juan" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/canal4esquel/canal4esquel/playlist.m3u8", + "label": "Canal 4 Esquel" + }, + { + "type": "hls", + "url": "https://stream.arcast.net:4443/correadigital/canal12/playlist.m3u8", + "label": "Correa Radiovision" + }, + { + "type": "hls", + "url": "https://vivo.solumedia.com:19360/celta/celta.m3u8", + "label": "Celta TV" + }, + { + "type": "hls", + "url": "https://stream-gtlc.telecentro.net.ar/hls/telemaxhls/main.m3u8", + "label": "Telemax (AR)" + }, + { + "type": "hls", + "url": "https://videohd.live:19360/8008/8008.m3u8", + "label": "TIV Television" + }, + { + "type": "hls", + "url": "https://cloud.tvomix.com/URBANMIX/index.m3u8", + "label": "Urban Mix" + }, + { + "type": "hls", + "url": "https://unlimited1-us.dps.live/nettv/nettv.smil/playlist.m3u8", + "label": "NET TV" + }, + { + "type": "hls", + "url": "https://micanal.ovh/livestreams/515.AUTOOAAZ721F.m3u8", + "label": "Villa Mantero TV" + }, + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar/hls/abtvbariloche/abtvbariloche.m3u8", + "label": "ABTV Bariloche" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/giatv/giatv-teleposadastv/teleposadastv/playlist.m3u8", + "label": "Tele Posadas" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/canal3/canal3/playlist.m3u8", + "label": "Canal 3 Las Heras" + }, + { + "type": "hls", + "url": "https://canadaremar2.todostreaming.es/live/argentina-web.m3u8", + "label": "TV Solidaria" + }, + { + "type": "hls", + "url": "https://stream.arcast.com.ar/casse/casse/playlist.m3u8", + "label": "Cable Imagen Armstrong" + }, + { + "type": "hls", + "url": "https://live2.tensila.com/1-1-1.power-tv/hls/master.m3u8", + "label": "PowerHD" + }, + { + "type": "hls", + "url": "https://streamconex.com:19360/villamaza/villamaza.m3u8", + "label": "Canal 79 Villa Maza" + } + ], + "United States": [ + { + "type": "hls", + "url": "https://mdc.ott.alticeusa.net/live4.ott.optimum.net/live4-uploads/N12PLUS_H_CT_A1/index_new.m3u8", + "label": "News12+ Connecticut" + }, + { + "type": "hls", + "url": "https://mdc.ott.alticeusa.net/live4.ott.optimum.net/live4-uploads/N12JH_CENT_A1/index_new.m3u8?omap=https", + "label": "News12 New Jersey" + }, + { + "type": "hls", + "url": "https://mdc.ott.alticeusa.net/live4.ott.optimum.net/live4-uploads/N12WH_A1/index_new.m3u8?omap=https", + "label": "News12 Westchester" + }, + { + "type": "hls", + "url": "https://video.oct.dc.gov/out/u/15_12.m3u8", + "label": "DCC" + }, + { + "type": "hls", + "url": "https://edge-f.swagit.com/live/sanantoniotx/live-1-a/playlist.m3u8", + "label": "TVSA Government Channel" + }, + { + "type": "hls", + "url": "https://edge-f.swagit.com/live/chinohillsca/live-1-a/playlist.m3u8", + "label": "City TV Channel 3/41" + }, + { + "type": "hls", + "url": "https://edge-f.swagit.com/live/glendaleaz/live-1-a-1/playlist.m3u8", + "label": "Glendale 11 AZ" + }, + { + "type": "hls", + "url": "https://livestream-us-east-edge-2.granicusops.com/live/cypressca/live-1-a/playlist.m3u8", + "label": "Cypress Channel 36" + }, + { + "type": "hls", + "url": "https://edge-f.swagit.com/live/miamibeachfl/live-1-a/playlist.m3u8", + "label": "MBTV" + }, + { + "type": "hls", + "url": "https://stream.vocl.com/hls/lindelltv/index.m3u8", + "label": "Lindell TV" + }, + { + "type": "hls", + "url": "https://castus-vod-dev.s3.amazonaws.com/vod_clients/monroe/live/ch1/video.m3u8", + "label": "Monroe County TV" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/cmap1/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "CMAP Channel 17" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/derrynh1/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "DerryTV 17" + }, + { + "type": "hls", + "url": "https://video.oct.dc.gov/out/u/97_12.m3u8", + "label": "DC Council Hearing Room 120" + }, + { + "type": "hls", + "url": "https://lin10.isilive.ca/live/gainesville/live/index.m3u8", + "label": "Community 12TV" + }, + { + "type": "hls", + "url": "https://dlttx48mxf9m3.cloudfront.net/vod_clients/amp/live/ch5/video.m3u8", + "label": "The Peninsula Channel" + }, + { + "type": "hls", + "url": "https://video.oct.dc.gov/out/u/DCN.m3u8", + "label": "District of Columbia Network" + }, + { + "type": "hls", + "url": "https://edge-f.swagit.com/live/fernandinabeachfl/live-1-a/playlist.m3u8", + "label": "Fernandina Beach Channel" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/natickpegasus3/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "Natick Government Channel" + }, + { + "type": "hls", + "url": "https://edge-f.swagit.com/live/fortpiercefl/live-1-a/playlist.m3u8", + "label": "City of Fort Pierce" + }, + { + "type": "hls", + "url": "https://547f72e6652371c3.mediapackage.us-east-1.amazonaws.com/out/v1/e3e6e29095844c4ba7d887f01e44a5ef/index.m3u8", + "label": "Newsy" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/nashuanh3/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "Government TV 16" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/ctyphiladelphia1/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "PHLgovTV" + }, + { + "type": "hls", + "url": "https://thefirst-oando.amagi.tv/playlist.m3u8", + "label": "The First TV" + }, + { + "type": "hls", + "url": "https://voa-ingest.akamaized.net/hls/live/2033874/tvmc06/playlist.m3u8", + "label": "VoA TV" + }, + { + "type": "hls", + "url": "https://stream.swagit.com/live-edge/houstontx/smil:hd-16x9-2-a/playlist.m3u8", + "label": "HTV 1 Houston Television" + }, + { + "type": "hls", + "url": "https://2-fss-2.streamhoster.com/pl_118/204972-1954106-1/playlist.m3u8", + "label": "W14DK-D 14.2" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/lexmedia3/f7b44cfafd5c52223d5498196c8a2e7b.sdp/lexmedia3/stream1/playlist.m3u8", + "label": "LGTV" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/leominster3/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "Leominster TV Government" + }, + { + "type": "hls", + "url": "https://hls.livecdn.io/cheddar.com/cheddar/playlist.m3u8", + "label": "Cheddar News" + }, + { + "type": "hls", + "url": "https://dlttx48mxf9m3.cloudfront.net/vod_clients/amp/live/ch4/video.m3u8", + "label": "The City of Marina" + }, + { + "type": "hls", + "url": "https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8", + "label": "Top Stories by Newsy" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/accvision2/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "AccessVision Channel 17" + }, + { + "type": "hls", + "url": "https://reflect-communitytv.cablecast.tv/live-5/live/stream-3/live.m3u8", + "label": "SC Currents" + }, + { + "type": "hls", + "url": "https://na.linear.zype.com/f2f02a72-71d0-45f3-829f-4ae51f721102/86ef0177-697d-41c4-be57-c4d1a2b83cad-hls4/live.m3u8", + "label": "Free Speech TV" + }, + { + "type": "hls", + "url": "https://amg00327-coxmediagroup-wsocbreaking-plex-t51et.amagi.tv/playlist/amg00327-coxmediagroup-wsocbreaking-plex/playlist.m3u8", + "label": "WSOC Now" + }, + { + "type": "hls", + "url": "https://cdn3.wowza.com/5/RXJNMFI3VlVkOEFP/stpete/G0187_003/playlist.m3u8", + "label": "SPTV" + }, + { + "type": "hls", + "url": "https://cdnapi.kaltura.com/p/2503451/sp/250345100/playManifest/entryId/1_gb6tjmle/protocol/https/format/applehttp/a.m3u8", + "label": "UN Web TV" + }, + { + "type": "hls", + "url": "https://d2ferbiwcx1539.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-8zd06wicndthf-ssai-prd/WNNationalSamsung/WNNationalSamsung.m3u8", + "label": "WeatherNation" + }, + { + "type": "hls", + "url": "https://livestream.telvue.com/billerica3/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8", + "label": "BATV Government Channel" + } + ], + "Italy": [ + { + "type": "hls", + "url": "https://rtmp-live-ingest-us-east-1-universe-dacast-com.akamaized.net/transmuxv1/streams/2095a288-1384-ed2e-5da0-278ccbb72295.m3u8", + "label": "tv9 Telemaremma" + }, + { + "type": "hls", + "url": "https://d3k8wzt41aflvx.cloudfront.net/TGCOM24/Live.m3u8", + "label": "TGCom24" + }, + { + "type": "hls", + "url": "https://a928c0678d284da5b383f29ecc5dfeec.msvdn.net/live/S57315730/8kTBWibNteJA/playlist.m3u8", + "label": "Lira TV" + }, + { + "type": "hls", + "url": "https://52ee6512fee4427889eba89957975fa0.msvdn.net/live/S24350460/BEj8ZmQiQ9UG/playlist.m3u8", + "label": "L'altro Corriere TV" + }, + { + "type": "hls", + "url": "https://live.ipstream.it/etv/etv.stream/playlist.m3u8", + "label": "eTv Rete 7" + }, + { + "type": "hls", + "url": "https://live.ipstream.it/etvmarche/etvmarche.stream/playlist.m3u8", + "label": "eTv Marche" + }, + { + "type": "hls", + "url": "https://f5842579ff984c1c98d63b8d789673eb.msvdn.net/live/S27391994/HVvPMzy/playlist.m3u8", + "label": "LaC News 24" + }, + { + "type": "hls", + "url": "https://d3k8wzt41aflvx.cloudfront.net/RAINEWS24/Live.m3u8", + "label": "Rai News 24" + }, + { + "type": "hls", + "url": "https://64b16f23efbee.streamlock.net/telegela/telegela/playlist.m3u8", + "label": "Telegela 647" + }, + { + "type": "hls", + "url": "https://5db313b643fd8.streamlock.net/MinformoTV/MinformoTV/playlist.m3u8", + "label": "Minformo TV" + }, + { + "type": "hls", + "url": "https://5db313b643fd8.streamlock.net/Etnachannelponte/Etnachannelponte/playlist.m3u8", + "label": "Etna Espresso Channel" + }, + { + "type": "hls", + "url": "https://senato-live.morescreens.com/SENATO_1_001/playlist.m3u8", + "label": "Senato TV" + }, + { + "type": "hls", + "url": "https://video-ar.radioradicale.it/diretta/camera2/playlist.m3u8", + "label": "Camera dei Deputati" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/reteveneta/reteveneta/playlist.m3u8", + "label": "Reteveneta" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/telequattro/telequattro/playlist.m3u8", + "label": "Tele Quattro" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/telefoggia/telefoggia/playlist.m3u8", + "label": "Telefoggia" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/rs2/rs2/playlist.m3u8", + "label": "Teletricolore" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/icarotv/icarotv/playlist.m3u8", + "label": "Icaro TV" + }, + { + "type": "hls", + "url": "https://d3k8wzt41aflvx.cloudfront.net/Mediaset_AU/Live.m3u8", + "label": "Mediaset Italia" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/tvqui/tvqui/playlist.m3u8", + "label": "TV Qui Modena" + }, + { + "type": "hls", + "url": "https://5db313b643fd8.streamlock.net/PrimaTV/PrimaTV/playlist.m3u8", + "label": "Prima TV" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/telemajg/telemajg/playlist.m3u8", + "label": "TeleMajg" + }, + { + "type": "hls", + "url": "https://64b16f23efbee.streamlock.net/calabriatv/calabriatv/playlist.m3u8", + "label": "Calabria TV" + }, + { + "type": "hls", + "url": "https://64b16f23efbee.streamlock.net/rete8/rete8/playlist.m3u8", + "label": "Rete 8" + }, + { + "type": "hls", + "url": "https://59d7d6f47d7fc.streamlock.net/esperiatv/esperiatv/playlist.m3u8", + "label": "Esperia TV" + }, + { + "type": "hls", + "url": "https://5926fc9c7c5b2.streamlock.net/9094/9094/playlist.m3u8", + "label": "Rete Oro" + }, + { + "type": "hls", + "url": "https://64b16f23efbee.streamlock.net/telenova/telenova/playlist.m3u8", + "label": "Telenova" + }, + { + "type": "hls", + "url": "https://5db313b643fd8.streamlock.net/SUPERSIXLombardia/SUPERSIXLombardia/playlist.m3u8", + "label": "Super Six" + }, + { + "type": "hls", + "url": "https://5f22d76e220e1.streamlock.net/tltmolise/tltmolise/playlist.m3u8", + "label": "TLT Molise" + }, + { + "type": "hls", + "url": "https://5f22d76e220e1.streamlock.net/taurianovatv/taurianovatv/playlist.m3u8", + "label": "Taurianova TV" + }, + { + "type": "hls", + "url": "https://1aadf145546f475282c5b4e658c0ac4b.msvdn.net/live/324149/hlbAWtl/playlist.m3u8", + "label": "Telecolor Lombardia" + }, + { + "type": "hls", + "url": "https://5f22d76e220e1.streamlock.net/canale1/canale1/playlist.m3u8", + "label": "Value 24 TV" + }, + { + "type": "hls", + "url": "https://64b16f23efbee.streamlock.net/telecitylombardia/telecitylombardia/playlist.m3u8", + "label": "Telecity Lombardia" + }, + { + "type": "hls", + "url": "https://5db313b643fd8.streamlock.net/lmbiatv/lmbiatv/playlist.m3u8", + "label": "Lombardia TV" + }, + { + "type": "hls", + "url": "https://5f22d76e220e1.streamlock.net/pacicontemporarychannel/pacicontemporarychannel/playlist.m3u8", + "label": "Paci Contemporary Channel" + }, + { + "type": "hls", + "url": "https://5f204aff97bee.streamlock.net/RTTRlive/livestream/playlist.m3u8", + "label": "RTTR Trento" + }, + { + "type": "hls", + "url": "https://5f22d76e220e1.streamlock.net/primafree/primafree/playlist.m3u8", + "label": "Prima Free" + }, + { + "type": "hls", + "url": "https://w1.mediastreaming.it/calabriachannel/livestream/playlist.m3u8", + "label": "RTC Telecalabria" + }, + { + "type": "hls", + "url": "https://zkpywrbgdbeg-hls-live.mariatvcdn.it/teleradiopace2/254c9b5c52a73a94ef0f6169cbd05dc2.sdp/playlist.m3u8", + "label": "Telepace 2" + }, + { + "type": "hls", + "url": "https://5f22d76e220e1.streamlock.net/rtm/rtm/playlist.m3u8", + "label": "RTM TV" + } + ], + "Cote d": [ + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8042/8042/playlist.m3u8", + "label": "7 Info" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8336/8336/playlist.m3u8", + "label": "RTI 1" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8306/8306/playlist.m3u8", + "label": "Afro Magic Channel" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8250/8250/manifest.m3u8", + "label": "A12 TV" + }, + { + "type": "hls", + "url": "https://edge-a3.evrideo.tv/8f37c9f0-fe22-44f4-b64a-76ad11730daf_1000026630_HLS/manifest.m3u8", + "label": "Reflet TV" + }, + { + "type": "hls", + "url": "https://stream.berosat.live/hls/champion-tv/champion-tv.m3u8", + "label": "Champion TV" + }, + { + "type": "hls", + "url": "https://streamtv.cmediahosthosting.net:3836/live/myafroculturelive.m3u8", + "label": "Afroculture TV" + }, + { + "type": "hls", + "url": "https://strhlslb01.streamakaci.tv/str_ntv_ntv/str_ntv_ntv_multi/playlist.m3u8", + "label": "NTV (CI)" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8056/8056/playlist.m3u8", + "label": "Guide Love TV" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8244/8244/playlist.m3u8", + "label": "Ivoire Channel" + }, + { + "type": "hls", + "url": "https://tv.voozmedia.fun/benietv/index.m3u8", + "label": "Benie TV" + }, + { + "type": "hls", + "url": "https://cdn140m.panaccess.com/HLS/RTVC/index.m3u8", + "label": "RTVC" + }, + { + "type": "hls", + "url": "https://strhlslb01.streamakaci.tv/str_mtv_mtv/str_mtv_multi/playlist.m3u8", + "label": "Miracle TV+" + } + ], + "Pakistan": [ + { + "type": "hls", + "url": "https://sscsott.com/7news/live/index.m3u8", + "label": "7 News" + }, + { + "type": "hls", + "url": "https://imob.dunyanews.tv/livehd/ngrp:dunyalivehd_2_all/playlist.m3u8", + "label": "Dunya News" + }, + { + "type": "hls", + "url": "https://vcdn.dunyanews.tv/lahorelive/ngrp:lnews_1_all/playlist.m3u8", + "label": "Lahore News" + }, + { + "type": "hls", + "url": "https://cdn4.mjunoon.tv:8087/streamtest/111M/chunks.m3u8", + "label": "Capital TV" + }, + { + "type": "hls", + "url": "https://s2.ideationtec.live/Pnn/Pnn.m3u8?token=KsR3k27_sH3n-2", + "label": "Aik News" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/Neo-110/playlist.m3u8", + "label": "Neo News" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/NEWS1-128/playlist.m3u8", + "label": "News One" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/KTNNews-151/playlist.m3u8", + "label": "KTN News" + }, + { + "type": "hls", + "url": "https://video.primexsports.com/suchnews/live/playlist.m3u8", + "label": "Such TV" + }, + { + "type": "hls", + "url": "https://cdn.rabta.stream/M-News/index.m3u8", + "label": "M News" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/ABN-161/playlist.m3u8", + "label": "ABN News" + }, + { + "type": "hls", + "url": "https://cdn.live247stream.com/pmi/tv/playlist.m3u8", + "label": "PMI TV" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/bsfilm/playlist.m3u8", + "label": "BS Film" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/bstv/playlist.m3u8", + "label": "BSTV" + }, + { + "type": "hls", + "url": "https://cdn4.mjunoon.tv:8087/streamtest/107M/chunks.m3u8", + "label": "Paighan TV" + }, + { + "type": "hls", + "url": "https://5ad386ff92705.streamlock.net/live_transcoder/ngrp:zindagitv.stream_all/chunklist.m3u8", + "label": "Zindagi TV" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/SAMAA-173/playlist.m3u8", + "label": "Samaa TV" + }, + { + "type": "hls", + "url": "https://livecdn.live247stream.com/praise/tv/playlist.m3u8", + "label": "Praise TV" + }, + { + "type": "hls", + "url": "https://x.streamablecloud.com/stream/hls/jeremiahtv/index.m3u8", + "label": "Jeremiah TV" + }, + { + "type": "hls", + "url": "https://livecdn.live247stream.com/grace/tv/playlist.m3u8", + "label": "Grace Network" + }, + { + "type": "hls", + "url": "https://livecdn.live247stream.com/joomusic/tv/playlist.m3u8", + "label": "JooMusic" + }, + { + "type": "hls", + "url": "https://cdn4.mjunoon.tv:8087/streamtest/135M/chunks.m3u8", + "label": "8XM" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/JalwaTV-135/live/135M/chunks.m3u8", + "label": "Jalwa TV" + }, + { + "type": "hls", + "url": "https://cdn4.mjunoon.tv:8087/streamtest/81M/chunks.m3u8", + "label": "Masala TV" + }, + { + "type": "hls", + "url": "https://cdn4.mjunoon.tv:8087/streamtest/82M/chunks.m3u8", + "label": "Hum TV" + }, + { + "type": "hls", + "url": "https://cdn4.mjunoon.tv:8087/streamtest/118M/chunks.m3u8", + "label": "A-Plus TV" + }, + { + "type": "hls", + "url": "https://livecdn.live247stream.com/isaac/tv/playlist.m3u8", + "label": "Isaac TV" + }, + { + "type": "hls", + "url": "https://streaming.madanichannel.tv/static/streaming-playlists/hls/b9790f10-cb0d-4e30-82bf-84a756234e58/master.m3u8", + "label": "Madani Channel Urdu" + }, + { + "type": "hls", + "url": "https://livecdn.live247stream.com/discoverpakistan/web/playlist.m3u8", + "label": "Discover Pakistan" + }, + { + "type": "hls", + "url": "https://livecdn.live247stream.com/joshua/tv/playlist.m3u8", + "label": "Joshua TV" + }, + { + "type": "hls", + "url": "https://vodzong.mjunoon.tv:8087/streamtest/Channel5-159-4/playlist.m3u8", + "label": "Bol Entertainment" + }, + { + "type": "hls", + "url": "https://streamer12.vdn.dstreamone.net/kingtv/kingtv/playlist.m3u8", + "label": "King TV" + }, + { + "type": "hls", + "url": "https://streaming.madanichannel.tv/static/streaming-playlists/hls/c6a600b0-82cb-454a-8953-2bb2bb372edc/master.m3u8", + "label": "Madani Channel English" + } + ], + "Hungary": [ + { + "type": "hls", + "url": "https://budapest-cache-1.antik.sk/live/test_film_plus_2_hungary_1200_atk/playlist.m3u8", + "label": "RTL Gold (HU)" + }, + { + "type": "hls", + "url": "https://budapest-cache-1.antik.sk/live/test_galaxy_4_atk_1200/playlist.m3u8", + "label": "Galaxy4" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/freerelay/kanizsavtv.sdp/playlist.m3u8", + "label": "Kanizsa TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay03/livestream003.sdp/playlist.m3u8", + "label": "Hevizi TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay44_1/HDE043.sdp/playlist.m3u8", + "label": "Gyongyosi TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay44_1/HDE040.sdp/playlist.m3u8", + "label": "ESTV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay01/broadcast002.sdp/playlist.m3u8", + "label": "Oroszlanyi Varosi Televizio" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay01/HDE038.sdp/playlist.m3u8", + "label": "SIXO TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay02/livestream004.sdp/playlist.m3u8", + "label": "TelePaks" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay01/broadcast006.sdp/playlist.m3u8", + "label": "Tatai TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/freerelay/zegtv.sdp/playlist.m3u8", + "label": "Zalaegerszegi TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay01/HDE017.sdp/playlist.m3u8", + "label": "Komaromi Televizio" + }, + { + "type": "hls", + "url": "https://stream.y5.hu/stream/stream_bekescsaba/stream.m3u8", + "label": "7.TV" + }, + { + "type": "hls", + "url": "https://stream.moranettv.hu/live/index.m3u8", + "label": "Mora-Net TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay01/HDE051.sdp/playlist.m3u8", + "label": "XV TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/freerelay/keszthelyivtv.sdp/playlist.m3u8", + "label": "TV Keszthely" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/freerelay/bpetv.sdp/playlist.m3u8", + "label": "Budapest Europa Televizio" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/relay01/livestream004.sdp/playlist.m3u8", + "label": "Szolnok TV" + }, + { + "type": "hls", + "url": "https://stream.iptvservice.eu/hls/balatontv.m3u8", + "label": "Balaton TV" + }, + { + "type": "hls", + "url": "https://cloudfront44.lexanetwork.com:1344/freerelay/16tv.sdp/playlist.m3u8", + "label": "16tv Budapest" + }, + { + "type": "hls", + "url": "https://oxygenmusic.hu:2443/hls/oxygenmusic.m3u8", + "label": "Oxygen Music" + } + ], + "Mexico": [ + { + "type": "hls", + "url": "https://5e50264bd6766.streamlock.net/mexiquense2/videomexiquense2/playlist.m3u8", + "label": "AMX Noticias" + }, + { + "type": "hls", + "url": "https://live-scjn.ovp-vivaro.digital/ovp-origin/638a22b47746d/playlist.m3u8", + "label": "Justicia TV" + }, + { + "type": "hls", + "url": "https://5f2c1b0d880e5.streamlock.net/canal33tijuana/videocanal33tijuana/playlist.m3u8", + "label": "Canal 33 Tijuana" + }, + { + "type": "hls", + "url": "https://srspsn.live/live/livestream.m3u8", + "label": "PSN" + }, + { + "type": "hls", + "url": "https://srspsn2.live/live/livestream.m3u8", + "label": "PSN Canal 45.2" + }, + { + "type": "hls", + "url": "https://jukin-weatherspy-2-mx.samsung.wurl.tv/playlist.m3u8", + "label": "WeatherSpy (MX)" + }, + { + "type": "hls", + "url": "https://60417ddeaf0d9.streamlock.net/srtc/smil:srtc.smil/playlist.m3u8", + "label": "Canal Parlamento del Congreso de Jalisco" + }, + { + "type": "hls", + "url": "https://5fe2654d6127d.streamlock.net:443/uaa2/videouaa2/playlist.m3u8", + "label": "UAA TV" + }, + { + "type": "hls", + "url": "https://video0.rogohosting.com:19360/sisjalisciense/sisjalisciense.m3u8", + "label": "Jalisco TV" + }, + { + "type": "hls", + "url": "https://video0.rogohosting.com:19360/4982/4982.m3u8", + "label": "SQCS Canal 4" + }, + { + "type": "hls", + "url": "https://5ca9af4645e15.streamlock.net/teleradio/smil:teleradio.smil/playlist.m3u8", + "label": "Expresa TV" + }, + { + "type": "hls", + "url": "https://5e50264bd6766.streamlock.net/canal442/videocanal442/playlist.m3u8", + "label": "Canal 44" + }, + { + "type": "hls", + "url": "https://5fc584f3f19c9.streamlock.net/canal22/smil:canal22.smil/playlist.m3u8", + "label": "Canal 22 Nacional" + }, + { + "type": "hls", + "url": "https://video0.rogohosting.com:19360/tvcozumel/tvcozumel.m3u8", + "label": "Canal 5 TV Cozumel" + }, + { + "type": "hls", + "url": "https://5e50264bd6766.streamlock.net/mexiquense/videomexiquense/playlist.m3u8", + "label": "Mexiquense TV" + }, + { + "type": "hls", + "url": "https://5e50264bd6766.streamlock.net/canal10durango/videocanal10durango/playlist.m3u8", + "label": "Canal 10 Durango" + }, + { + "type": "hls", + "url": "https://vdo6.instainternet.com:3272/live/jobetalborezlive.m3u8", + "label": "Eclipse TV" + }, + { + "type": "hls", + "url": "https://live-ilce.ovp-vivaro.digital/ovp-origin-abr/ngrp:6359ef999f3fb_all/playlist.m3u8", + "label": "ILCE Canal 15 Summa Saberes" + }, + { + "type": "hls", + "url": "https://5ca3e84a76d30.streamlock.net/cbtv/videoc3b3t3v3/playlist.m3u8", + "label": "CB TV Michoacan" + }, + { + "type": "hls", + "url": "https://servilive.com:3380/live/v3n6thy7glive.m3u8", + "label": "15TV" + }, + { + "type": "hls", + "url": "https://60417ddeaf0d9.streamlock.net/ntv/videontv/playlist.m3u8", + "label": "8NTV" + }, + { + "type": "hls", + "url": "https://igd-it-runtime.otteravision.com/igd/it/it.m3u8", + "label": "Imagen TV" + }, + { + "type": "hls", + "url": "https://60417ddeaf0d9.streamlock.net/telemetrika/smil:telemetrika.smil/playlist.m3u8", + "label": "Presumiendo Mexico" + }, + { + "type": "hls", + "url": "https://webprod.sipse.com.mx:8080/show/tvcun.m3u8", + "label": "SIPSE TVCUN 8.1" + }, + { + "type": "hls", + "url": "https://s5.mexside.net:1936/lsac/lsac/playlist.m3u8", + "label": "B15 Fresnillo" + }, + { + "type": "hls", + "url": "https://5ca9af4645e15.streamlock.net/nuevetv/videonuevetv/.m3u8", + "label": "Nueve TV" + }, + { + "type": "hls", + "url": "https://webprod.sipse.com.mx:8080/show/merida.m3u8", + "label": "SIPSE TV 8.1" + }, + { + "type": "hls", + "url": "https://s5.mexside.net:1936/enlinea/enlinea/playlist.m3u8", + "label": "Sistema Michoacano de TV" + }, + { + "type": "hls", + "url": "https://live.iplanay.gob.mx/hls/nayarittv.m3u8", + "label": "Nayarit Comunica" + }, + { + "type": "hls", + "url": "https://s5.mexside.net:1936/envio2/envio2/playlist.m3u8", + "label": "B15 Zacatecas" + }, + { + "type": "hls", + "url": "https://5ca9af4645e15.streamlock.net/grd/videogrd/playlist.m3u8", + "label": "Antena TV" + }, + { + "type": "hls", + "url": "https://s5.mexside.net:1936/telemax/telemax/playlist.m3u8", + "label": "Telemax (MX)" + }, + { + "type": "hls", + "url": "https://servilive.com:3879/live/telesaltillolive.m3u8", + "label": "Tele Saltillo" + }, + { + "type": "hls", + "url": "https://vid26.mega00.com:5443/live/streams/qNmc7nulmq8zPYZE1582752735050.m3u8", + "label": "Tlaxcala TV" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/rytqrolive/rytqrolive/chunklist.m3u8", + "label": "RTQ Queretaro" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8172/8172/playlist.m3u8", + "label": "RCG TV" + }, + { + "type": "hls", + "url": "https://servilive.com:3263/live/channel12live.m3u8", + "label": "Super Channel 12" + }, + { + "type": "hls", + "url": "https://rpn.bozztv.com/gusa/gusa-goldentv/index.m3u8", + "label": "Golden" + }, + { + "type": "hls", + "url": "https://5ca3e84a76d30.streamlock.net/tv4gto/tv4gto.smil/.m3u8", + "label": "TV Cuatro 4.1" + }, + { + "type": "hls", + "url": "https://s5.mexside.net:1936/tvmigrante/tvmigrante/playlist.m3u8", + "label": "TV Migrante" + } + ], + "Chile": [ + { + "type": "hls", + "url": "https://pnt.janusmedia.tv/hls/pnt.m3u8", + "label": "Puranoticia TV" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/telecauquenestv/playlist.m3u8", + "label": "TeleCauquenes" + }, + { + "type": "hls", + "url": "https://v1.tustreaming.cl/diarioelcentrotv/index.m3u8", + "label": "El Centro TV" + }, + { + "type": "hls", + "url": "https://unlimited6-cl.dps.live/cm/cm.smil/playlist.m3u8", + "label": "Contivision" + }, + { + "type": "hls", + "url": "https://pantera1-100gb-cl-movistar.dps.live/nctv/nctv.smil/playlist.m3u8", + "label": "NCTV" + }, + { + "type": "hls", + "url": "https://v2.tustreaming.cl/atacamanoticias/index.m3u8", + "label": "Atacama Noticias" + }, + { + "type": "hls", + "url": "https://v4.tustreaming.cl/tendenciastv/index.m3u8", + "label": "Tendencias Prime" + }, + { + "type": "hls", + "url": "https://v4.tustreaming.cl/sannicolastv/index.m3u8", + "label": "San Nicolas TV" + }, + { + "type": "hls", + "url": "https://envivo.arica.tv/hls/Live2025AricaTV.m3u8", + "label": "Arica TV" + }, + { + "type": "hls", + "url": "https://unlimited1-cl-isp.dps.live/tvu/tvu.smil/playlist.m3u8", + "label": "TVU" + }, + { + "type": "hls", + "url": "https://5eaccbab48461.streamlock.net:1936/heqhvtgebg/heqhvtgebg/playlist.m3u8", + "label": "Primitivos TV" + }, + { + "type": "hls", + "url": "https://v2.tustreaming.cl/tevex/index.m3u8", + "label": "Tevex" + }, + { + "type": "hls", + "url": "https://5f700d5b2c46f.streamlock.net/zoomtec/zoomtec/playlist.m3u8", + "label": "Zoom Tecnologico Plus" + }, + { + "type": "hls", + "url": "https://5ff3d9babae13.streamlock.net/8014/8014/playlist.m3u8", + "label": "TVO San Vicente" + }, + { + "type": "hls", + "url": "https://v1.tustreaming.cl/tv5linares/index.m3u8", + "label": "TV5 Linares" + }, + { + "type": "hls", + "url": "https://v2.tustreaming.cl/utv/index.m3u8", + "label": "UTV (CL)" + }, + { + "type": "hls", + "url": "https://unlimited2-cl-isp.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8", + "label": "UCV TV" + }, + { + "type": "hls", + "url": "https://5ff3d9babae13.streamlock.net/ubyecbxnfd/ubyecbxnfd/playlist.m3u8", + "label": "Uniregion TV" + }, + { + "type": "hls", + "url": "https://5eaccbab48461.streamlock.net:1936/8264/8264/playlist.m3u8", + "label": "Vivo TV" + }, + { + "type": "hls", + "url": "https://5ff3d9babae13.streamlock.net/fzkqsdfray/fzkqsdfray/playlist.m3u8", + "label": "Sextavision" + }, + { + "type": "hls", + "url": "https://iptv.bitred.cl/tvn/index.m3u8", + "label": "TVN (CL)" + }, + { + "type": "hls", + "url": "https://tv.arkeo.cl:1936/canalrtv/canalrtv/playlist.m3u8", + "label": "RTV Nuble" + }, + { + "type": "hls", + "url": "https://s1.tvdatta.com:3384/live/canal20tvlive.m3u8", + "label": "Canal Survision Alerce" + }, + { + "type": "hls", + "url": "https://5ff3d9babae13.streamlock.net/wympnqeqts/wympnqeqts/playlist.m3u8", + "label": "Rocco TV" + }, + { + "type": "hls", + "url": "https://5ff3d9babae13.streamlock.net/8028/8028/playlist.m3u8", + "label": "Pichilemu TV" + }, + { + "type": "hls", + "url": "https://verso.coopcom.cl/live/SHf6GLCpn4hDSpWdzaDzgX0ciU82/index.m3u8", + "label": "Verso TV" + }, + { + "type": "hls", + "url": "https://tv.arkeo.cl:1936/enlacetv1/enlacetv1/playlist.m3u8", + "label": "La Popular TV" + }, + { + "type": "hls", + "url": "https://freya.mivideo.pro/centraltv/video.m3u8", + "label": "Central TV (CL)" + }, + { + "type": "hls", + "url": "https://5eaccbab48461.streamlock.net:1936/8242/ngrp:8242_all/playlist.m3u8", + "label": "Maray TV" + }, + { + "type": "hls", + "url": "https://v2.tustreaming.cl/lcomarcatv/index.m3u8", + "label": "La Comarca TV" + }, + { + "type": "hls", + "url": "https://vdochile.com:3134/stream/play.m3u8", + "label": "La Chilena TV" + }, + { + "type": "hls", + "url": "https://unlimited1-us.dps.live/vtv/vtv.smil/playlist.m3u8", + "label": "VTV Valle de Aconcagua" + }, + { + "type": "hls", + "url": "https://v4.tustreaming.cl/retroplaytv/index.m3u8", + "label": "Oli TV" + }, + { + "type": "hls", + "url": "https://jireh-8-hls-video-us-isp.dps.live/hls-video/ey6283je82983je9823je8jowowiekldk9838274/tvmas/tvmas.smil/playlist.m3u8", + "label": "TV+" + }, + { + "type": "hls", + "url": "https://unlimited1-us.dps.live/uatv/uatv.smil/playlist.m3u8", + "label": "UATV" + }, + { + "type": "hls", + "url": "https://v2.tustreaming.cl/odiseatv/index.m3u8", + "label": "Odisea TV" + }, + { + "type": "hls", + "url": "https://tls-cl.cdnz.cl/umag1/ngrp:live_all/playlist.m3u8", + "label": "UMAGTV" + }, + { + "type": "hls", + "url": "https://unlimited1-us.dps.live/campustv/campustv.smil/campustv/livestream1/chunks.m3u8", + "label": "UTalca TV" + }, + { + "type": "hls", + "url": "https://unlimited1-us.dps.live/inet2/inet2.smil/playlist.m3u8", + "label": "T-Vinet" + }, + { + "type": "hls", + "url": "https://v4.tustreaming.cl/edusauriotv/index.m3u8", + "label": "EPA! TV" + } + ], + "Kazakhstan": [ + { + "type": "hls", + "url": "https://fs.uplink.kz/24KZ/mono.m3u8?token=onlinetv", + "label": "24KZ" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/ntk/mono.m3u8?token=onlinetv", + "label": "NTK" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/turan_tv/mono.m3u8?token=onlinetv", + "label": "Turan TV" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/habar/mono.m3u8?token=onlinetv", + "label": "Khabar" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/almaty/mono.m3u8?token=onlinetv", + "label": "Almaty TV" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/perviy_kanal_evrasia/mono.m3u8?token=onlinetv", + "label": "Channel One Eurasia" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/astana/mono.m3u8?token=onlinetv", + "label": "Astana TV" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/7_kanal/mono.m3u8?token=onlinetv", + "label": "Channel 7 (KZ)" + }, + { + "type": "hls", + "url": "https://otv.wotom.net/alau/stream.m3u8", + "label": "Alau TV" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/atameken/mono.m3u8?token=onlinetv", + "label": "Atameken Business" + }, + { + "type": "hls", + "url": "https://abaitv-stream.qazcdn.com/abaitv/abaitv/playlist.m3u8", + "label": "Abai TV" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/ktk/mono.m3u8?token=onlinetv", + "label": "KTK" + }, + { + "type": "hls", + "url": "https://stream.qazcdn.net/ex6r514/jjtv/playlist.m3u8", + "label": "Jibek Joly" + }, + { + "type": "hls", + "url": "https://fs.uplink.kz/31kanal/mono.m3u8?token=onlinetv", + "label": "31 Kanal" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1431/tracks-v1a1/mono.m3u8", + "label": "Qazaqstan International" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/SILKWAY/SILKWAY/SILKWAY.m3u8", + "label": "Silk Way" + }, + { + "type": "hls", + "url": "https://tvcdn01.oktv.kz/tv/mtrk/playlist.m3u8", + "label": "MTRK" + }, + { + "type": "hls", + "url": "https://live.zhanafm.kz:8181/memfs/fd715789-382f-4ec6-b4ba-d8e2fde59c7b.m3u8", + "label": "Novoe televidenie" + }, + { + "type": "hls", + "url": "https://live-rikatv.cdnvideo.ru/rikatv/rikatv_tcode.sdp/playlist.m3u8", + "label": "Rika TV" + } + ], + "Peru": [ + { + "type": "hls", + "url": "https://stmv2.srvif.com/qtelevision/qtelevision/playlist.m3u8", + "label": "Qosqo Times" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/visionnoticias/visionnoticias.m3u8", + "label": "VNP" + }, + { + "type": "hls", + "url": "https://luna-4-video.mediaserver.digital/exitosatv_233b-4b49-a726-5a451262/index.m3u8", + "label": "Exitosa TV" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/jnetv/playlist.m3u8", + "label": "JNE TV" + }, + { + "type": "hls", + "url": "https://live.obslivestream.com/conecta2/index.m3u8", + "label": "Conecta2TV" + }, + { + "type": "hls", + "url": "https://live-evg11.tv360.bitel.com.pe/bitel/selvaticaSRT/playlist.m3u8", + "label": "RSelvaTV" + }, + { + "type": "hls", + "url": "https://redirector.rudo.video/hls-video/567ffde3fa319fadf3419efda25619456231dfea/rpptv/rpptv.smil/playlist.m3u8", + "label": "RPP TV" + }, + { + "type": "hls", + "url": "https://live-evg11.tv360.bitel.com.pe/bitel/pbo_abr/playlist.m3u8", + "label": "PBO" + }, + { + "type": "hls", + "url": "https://dai.google.com/linear/hls/event/oYQGDqEGTmGdHE_fz9oLlg/master.m3u8", + "label": "Latina Noticias 24/7" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/tvcosmos/tvcosmos.m3u8", + "label": "TV Cosmos" + }, + { + "type": "hls", + "url": "https://7.innovatestream.pe:19360/corporacionperiodistica/corporacionperiodistica.m3u8", + "label": "Solar Television" + }, + { + "type": "hls", + "url": "https://7.innovatestream.pe:19360/nativatv/nativatv.m3u8", + "label": "Nativa TV Satipo" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/rnyurimaguas/rnyurimaguas.m3u8", + "label": "RN Television" + }, + { + "type": "hls", + "url": "https://live.obslivestream.com/telecolormux/index.m3u8", + "label": "Telecolor Yurimaguas" + }, + { + "type": "hls", + "url": "https://7.innovatestream.pe:19360/megatvjaen/megatvjaen.m3u8", + "label": "Mega TV Jaen" + }, + { + "type": "hls", + "url": "https://mc.servidor.stream:19360/8244/8244.m3u8", + "label": "Primavera 15" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net:443/streamtv/streamtv/playlist.m3u8", + "label": "SolTV (PE)" + }, + { + "type": "hls", + "url": "https://7.innovatestream.pe:19360/tvnoticiassatipo/tvnoticiassatipo.m3u8", + "label": "Teleselva" + }, + { + "type": "hls", + "url": "https://tvdatta.com:3084/live/toptvaguaytialive.m3u8", + "label": "Top TV" + }, + { + "type": "hls", + "url": "https://live.obslivestream.com/tvoriente/index.m3u8", + "label": "RadioTV Oriente" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/cablerasvia/cablerasvia.m3u8", + "label": "Via Television" + }, + { + "type": "hls", + "url": "https://live.obslivestream.com/mastertv/index.m3u8", + "label": "Master TV" + }, + { + "type": "hls", + "url": "https://play.agenciastreaming.com:8081/nacionaltv/index.m3u8", + "label": "Nacional Tv Peru" + }, + { + "type": "hls", + "url": "https://s2.tvdatta.com:3687/hybrid/play.m3u8", + "label": "TV Bella Asuncion" + }, + { + "type": "hls", + "url": "https://tv.ondadigital.pe/ondadigital/index.m3u8", + "label": "ONDA DIGITAL" + }, + { + "type": "hls", + "url": "https://livestream.perucast.com/hls/stream.m3u8", + "label": "Senal Peru TV" + }, + { + "type": "hls", + "url": "https://tv.huachotv.com/stream.m3u8", + "label": "Huacho Peru TV" + }, + { + "type": "hls", + "url": "https://play.agenciastreaming.com:8081/uniteltv/index.m3u8", + "label": "Unitel" + }, + { + "type": "hls", + "url": "https://chankillo.agenciastreaming.com/lidertv/index.m3u8", + "label": "Lider TV" + }, + { + "type": "hls", + "url": "https://sc3.wasidata.com/Genios2_1902/video.m3u8", + "label": "Genios TV" + }, + { + "type": "hls", + "url": "https://servilive.com:3757/live/regiontvlive.m3u8", + "label": "Region TV Callao" + }, + { + "type": "hls", + "url": "https://live.obslivestream.com/viaaltomayomux/index.m3u8", + "label": "Via Altomayo" + }, + { + "type": "hls", + "url": "https://redirector.rudo.video/hls-video/567ffde3fa319fadf3419efda25619456231dfea/latina/latina.smil/playlist.m3u8", + "label": "Latina" + }, + { + "type": "hls", + "url": "https://redirector.rudo.video/hls-video/plus226/latina4/latina4.smil/playlist.m3u8", + "label": "Latina Podcast" + }, + { + "type": "hls", + "url": "https://live-evg11.tv360.bitel.com.pe/bitel/tvchincha/playlist.m3u8", + "label": "TV+ Chincha" + }, + { + "type": "hls", + "url": "https://oneplay.iptvperu.tv:1936/static/nativa1.stream/chunks.m3u8", + "label": "Nativa" + }, + { + "type": "hls", + "url": "https://7.innovatestream.pe:19360/cvntumbes/cvntumbes.m3u8", + "label": "CVN TV" + }, + { + "type": "hls", + "url": "https://vdo.oyotunserver.com/arpegio/video.m3u8", + "label": "Arpegio TV" + }, + { + "type": "hls", + "url": "https://mc.servidor.stream:19360/8274/8274.m3u8", + "label": "Foro TV" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-doblec1/doblec1/playlist.m3u8", + "label": "Doble C Television" + } + ], + "Iran": [ + { + "type": "hls", + "url": "https://iptv.mihantv.com/mihantv/playlist.m3u8", + "label": "Mihan TV" + }, + { + "type": "hls", + "url": "https://zedhls.wns.live/hls/stream.m3u8", + "label": "Zed TV" + }, + { + "type": "hls", + "url": "https://arkhls.wns.live/hls/stream.m3u8", + "label": "Arko TV" + }, + { + "type": "hls", + "url": "https://arvhls.wns.live/hls/stream.m3u8", + "label": "Arvan TV" + }, + { + "type": "hls", + "url": "https://rdejhls.wns.live/hls/stream.m3u8", + "label": "Dej TV" + }, + { + "type": "hls", + "url": "https://araxhls.wns.live/hls/stream.m3u8", + "label": "Arax TV" + }, + { + "type": "hls", + "url": "https://live.asil.tv/asiltv/index.m3u8", + "label": "Asil TV" + }, + { + "type": "hls", + "url": "https://live.yourtime.tv/hls/stream.m3u8", + "label": "YourTime TV" + }, + { + "type": "hls", + "url": "https://bozztv.com/1gbw5/tintv2/tintv2/playlist.m3u8", + "label": "AFN TV" + }, + { + "type": "hls", + "url": "https://hls.247box.live/hls/stream.m3u8", + "label": "247 Box TV" + }, + { + "type": "hls", + "url": "https://familyhls.avatv.live/hls/stream.m3u8", + "label": "AVA Family" + }, + { + "type": "hls", + "url": "https://hls.oxir.live/hls/stream.m3u8", + "label": "OXIR TV" + }, + { + "type": "hls", + "url": "https://clshls.wns.live/hls/stream.m3u8", + "label": "Classic TV" + }, + { + "type": "hls", + "url": "https://fxtvhls.wns.live/hls/stream.m3u8", + "label": "FX 1" + }, + { + "type": "hls", + "url": "https://avr.host247.net/live/rasoulallahtv/playlist.m3u8", + "label": "RasoulallahTv" + }, + { + "type": "hls", + "url": "https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8", + "label": "Payvand TV" + }, + { + "type": "hls", + "url": "https://itnhls.wns.live/hls/stream.m3u8", + "label": "TV ITN" + }, + { + "type": "hls", + "url": "https://avr.host247.net/live/WiseHumanTv/playlist.m3u8", + "label": "WiseHumanTv" + }, + { + "type": "hls", + "url": "https://t2hls.wns.live/hls/stream.m3u8", + "label": "T2 TV" + }, + { + "type": "hls", + "url": "https://softverse.b-cdn.net/Assirat/assiratobs/playlist.m3u8", + "label": "Assirat TV" + } + ], + "Costa Rica": [ + { + "type": "hls", + "url": "https://videohd.live:19360/8076/8076.m3u8", + "label": "Norte Informativo TV" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/gesfnvpamn/gesfnvpamn.m3u8", + "label": "Zurqui TV" + }, + { + "type": "hls", + "url": "https://k20.usastreams.com:8081/tvsur/index.m3u8", + "label": "TV Sur Canal 14" + }, + { + "type": "hls", + "url": "https://k20.usastreams.com:8081/telered/index.m3u8", + "label": "Telered Television" + }, + { + "type": "hls", + "url": "https://video0.rogohosting.com:19360/8006/8006.m3u8", + "label": "Costa Rica Channel" + }, + { + "type": "hls", + "url": "https://stream.lamegatv.com/hls/sanvitotelevision/index.m3u8", + "label": "San Vito Television" + }, + { + "type": "hls", + "url": "https://lstv.duckdns.org:449/hls/stv.m3u8", + "label": "Sarapiqui TV" + }, + { + "type": "hls", + "url": "https://d2n1wzrr0aogf5.cloudfront.net/ts:abr.m3u8", + "label": "Extra TV 42" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/nicoyatv/nicoyatv/playlist.m3u8", + "label": "NicoyaTV" + }, + { + "type": "hls", + "url": "https://cloudvideo.servers10.com:8081/8230/index.m3u8", + "label": "TDtv" + }, + { + "type": "hls", + "url": "https://5eac7b031d945.streamlock.net/TICAVISION/TICAVISION/playlist.m3u8", + "label": "TicaVision" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/telebrunca/telebrunca/playlist.m3u8", + "label": "TeleBrunca" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/garabitoTV/garabitotv/playlist.m3u8", + "label": "Garabito TV" + }, + { + "type": "hls", + "url": "https://5cf4a2c2512a2.streamlock.net/8176/8176/playlist.m3u8", + "label": "Guatuso TV" + }, + { + "type": "hls", + "url": "https://lstv.duckdns.org:449/hls/lstv.m3u8", + "label": "Los Santos TV" + }, + { + "type": "hls", + "url": "https://acceso.mediosdecostarica.com:3606/live/canal10costaricalive.m3u8", + "label": "Canal 10 (CR)" + }, + { + "type": "hls", + "url": "https://cloudvideo.servers10.com:8081/8030/index.m3u8", + "label": "Coto Brus TV" + }, + { + "type": "hls", + "url": "https://acceso.mediosdecostarica.com:3873/hybrid/play.m3u8", + "label": "BestClasicosTV" + }, + { + "type": "hls", + "url": "https://acceso.mediosdecostarica.com:3638/live/360rftvcrlive.m3u8", + "label": "360 RFTV" + }, + { + "type": "hls", + "url": "https://video1.azulstream.com:8081/antenaseistv/index.m3u8", + "label": "Antena Seis TV" + }, + { + "type": "hls", + "url": "https://wowza.ucr.ac.cr/quinceucr/_definst_/quinceucr.stream/playlist.m3u8", + "label": "Quince UCR" + }, + { + "type": "hls", + "url": "https://cloudvideo.servers10.com:8081/8198/index.m3u8", + "label": "VoiceOver Radio TV" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/vmtv/tvvintage/playlist.m3u8", + "label": "Vintage Music" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/tvurbano/tvurbano/playlist.m3u8", + "label": "Urbano TV" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/gextvaccess/playlist.m3u8", + "label": "Gex TV" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/videotour/videotour/playlist.m3u8", + "label": "Video Tour Channel" + }, + { + "type": "hls", + "url": "https://59ef525c24caa.streamlock.net/vmtv/soyplancha/playlist.m3u8", + "label": "SOY Plancha TV" + }, + { + "type": "hls", + "url": "https://latamvdo.com:3626/hybrid/play.m3u8", + "label": "La Potente Radio TV" + }, + { + "type": "hls", + "url": "https://3a310f6ec721e6b362fcd22772b57f36a2fe6bb2.tabeelcr.com:8080/cristovision31/iptv.m3u8", + "label": "Cristo Vision Canal 31" + }, + { + "type": "hls", + "url": "https://5fc584f3f19c9.streamlock.net/agrotendencia/videoagrotendencia_hls1/playlist.m3u8", + "label": "Agrotendencia TV" + }, + { + "type": "hls", + "url": "https://rtmp.info/iqtv/envivo/playlist.m3u8", + "label": "IQ Channel" + }, + { + "type": "hls", + "url": "https://5fc584f3f19c9.streamlock.net/genteopa/videogenteopa/playlist.m3u8", + "label": "¡OPA!" + }, + { + "type": "hls", + "url": "https://acceso.mediosdecostarica.com:3192/hybrid/play.m3u8", + "label": "TeleMas (CR)" + }, + { + "type": "hls", + "url": "https://rtmp.info/sanjosetv/envivo/playlist.m3u8", + "label": "San Jose TV" + }, + { + "type": "hls", + "url": "https://streeming.protoscr.com:3858/live/streeminglive.m3u8", + "label": "Luz Naciente TV" + }, + { + "type": "hls", + "url": "https://5eac7b031d945.streamlock.net/COLOSAL/COLOSAL/playlist.m3u8", + "label": "Colosal TV" + }, + { + "type": "hls", + "url": "https://5fe2654d6127d.streamlock.net/impactchannel/videoimpactchannel/playlist.m3u8", + "label": "Impact Channel" + }, + { + "type": "hls", + "url": "https://627bb251f23c7.streamlock.net:444/ExtremaTV/ExtremaTV/playlist.m3u8", + "label": "Extrema TV" + }, + { + "type": "hls", + "url": "https://tvstream.conexionpositivaradio.com/memfs/69239c4d-4116-4f4f-b065-bf17e81b1411.m3u8", + "label": "Conexion Positiva Television" + }, + { + "type": "hls", + "url": "https://livecdnusa.enlace.plus/ejtv/smil:ejtv-hd.smil/playlist.m3u8", + "label": "Enlace Juvenil" + } + ], + "Senegal": [ + { + "type": "hls", + "url": "https://vdo2.pro-fhi.net:3297/stream/play.m3u8", + "label": "Seneweb TV" + }, + { + "type": "hls", + "url": "https://vdo3.pro-fhi.net:3218/stream/play.m3u8", + "label": "Diaspora 24" + }, + { + "type": "hls", + "url": "https://stream.sen-gt.com/senjeunestv/myStream/playlist.m3u8", + "label": "SenJeunes TV" + }, + { + "type": "hls", + "url": "https://stream.sen-gt.com/Mbacke/myStream/playlist.m3u8", + "label": "Louga TV" + }, + { + "type": "hls", + "url": "https://acasmedia6.acangroup.org/gmstv/gmstv_output/playlist.m3u8", + "label": "GMS TV" + }, + { + "type": "hls", + "url": "https://stream.sen-gt.com/A2iReligion/myStream/playlist.m3u8", + "label": "A2i Religion" + } + ], + "Dominican Republic": [ + { + "type": "hls", + "url": "https://edge.essastream.com/televisiondeleste/tracks-v1a1/mono.m3u8", + "label": "Television del Este" + }, + { + "type": "hls", + "url": "https://soportedvb.click:3017/live/linierostvlive.m3u8", + "label": "Linieros TV" + }, + { + "type": "hls", + "url": "https://hilandofinotv.essastream.com:3480/live/telenewscanallive.m3u8", + "label": "Telenews TV" + }, + { + "type": "hls", + "url": "https://soportedvb.click:3620/live/deultimominutomedialive.m3u8", + "label": "De Ultimo Minuto TV" + }, + { + "type": "hls", + "url": "https://edge.essastream.com/rdntv/tracks-v1a1/mono.m3u8", + "label": "RDN" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/carivision/carivision/playlist.m3u8", + "label": "Carivision" + }, + { + "type": "hls", + "url": "https://edge.essastream.com/citricotv/playlist.m3u8", + "label": "Citrico TV" + }, + { + "type": "hls", + "url": "https://2-fss-2.streamhoster.com/pl_138/206532-6829912-1/playlist.m3u8", + "label": "RNN" + }, + { + "type": "hls", + "url": "https://fox.hostlagarto.com:8081/hmtv/index.m3u8", + "label": "Hermanas Mirabal TV" + }, + { + "type": "hls", + "url": "https://hls.tvabierta.net/hls/008.m3u8", + "label": "Telemedios Canal 8" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/cvmhbyrcat/cvmhbyrcat.m3u8", + "label": "Romana TV Canal 42" + }, + { + "type": "hls", + "url": "https://host.streamingnation.live/p/3345/hybrid/play.m3u8", + "label": "Santa Cruz TV" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/dajabon/dajabon/playlist.m3u8", + "label": "Tele Dajabon TV" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/gkemzxrrmr/gkemzxrrmr.m3u8", + "label": "TVO" + }, + { + "type": "hls", + "url": "https://hls.tvabierta.net/hls/029.m3u8", + "label": "Teleuniverso" + }, + { + "type": "hls", + "url": "https://hls.tvabierta.net/hls/007.m3u8", + "label": "Antena 7" + }, + { + "type": "hls", + "url": "https://host.streamingnation.live/p/3467/live/tvhigueylive.m3u8", + "label": "TV Higuey Digital" + }, + { + "type": "hls", + "url": "https://edge.essastream.com/informetv/tracks-v1a1/mono.m3u8", + "label": "Informe TV" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/peraviavision/peraviavision/playlist.m3u8", + "label": "Peravia Vision" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/puntotvdigital/puntotvdigital/playlist.m3u8", + "label": "Punto TV Digital 40" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/enteraterd/enteraterd/playlist.m3u8", + "label": "Enterate RD" + }, + { + "type": "hls", + "url": "https://edge.essastream.com/telecanal12/tracks-v1a1/mono.m3u8", + "label": "Telecanal 12" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/vision3000/vision3000/playlist.m3u8", + "label": "Vision 3000" + }, + { + "type": "hls", + "url": "https://cnn.hostlagarto.com/telesiglo/tracks-v1a1/mono.m3u8", + "label": "TELESIGLO" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/lenaratv/lenaratv/playlist.m3u8", + "label": "Lena TV" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/markatv/markatv/playlist.m3u8", + "label": "Marka TV" + }, + { + "type": "hls", + "url": "https://edge.essastream.com/telecibaotv/tracks-v1a1/mono.m3u8", + "label": "TeleCibaoHD" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/tvn/tvn/playlist.m3u8", + "label": "TVN (DO)" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/tvplata/tvplata/playlist.m3u8", + "label": "TV Plata" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/notisur/notisur/playlist.m3u8", + "label": "Notisur TV" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/Nexxo/Nexxo/playlist.m3u8", + "label": "Nexxo TV" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/latinatv/latinatv/chunklist.m3u8", + "label": "Latina TV Internacional" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/Teleproyecto/Teleproyecto/playlist.m3u8", + "label": "Tele Proyecto TV" + }, + { + "type": "hls", + "url": "https://edge.essastream.com/cntmas/tracks-v1a1/mono.m3u8", + "label": "CNT Mas TV" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/guaymatetv/playlist.m3u8", + "label": "Guaymate TV" + }, + { + "type": "hls", + "url": "https://fox.hostlagarto.com:8081/puntacanatv/index.m3u8", + "label": "Punta Cana TV" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/eradiofonicas/eradiofonicas/playlist.m3u8", + "label": "Sur TV" + }, + { + "type": "hls", + "url": "https://fox.hostlagarto.com:8081/ghtelevision/tracks-v1a1/mono.m3u8", + "label": "GH Television" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/expresooriental/expresooriental/playlist.m3u8", + "label": "San Isidro TV" + }, + { + "type": "hls", + "url": "https://ss2.tvrdomi.com:1936/supertv55/supertv55/playlist.m3u8", + "label": "Super TV 55" + } + ], + "Romania": [ + { + "type": "hls", + "url": "https://hls02ns.antenaplay.ro/hls/b1-tv-hd/index.m3u8", + "label": "B1" + }, + { + "type": "hls", + "url": "https://live.dottotv.ro/index.m3u8", + "label": "Dotto TV" + }, + { + "type": "hls", + "url": "https://hls02ns.antenaplay.ro/hls/prima-news-hd/index.m3u8", + "label": "Prima News" + }, + { + "type": "hls", + "url": "https://informatia.streamnet.ro/mobile_tv/informatiatv.m3u8", + "label": "Informatia TV" + }, + { + "type": "hls", + "url": "https://cmero-ott-live.ssl.cdn.cra.cz/channels/cme-ro-voyo-news/playlist.m3u8?offsetSeconds=0&url=0", + "label": "PROTV News" + }, + { + "type": "hls", + "url": "https://vdo.ssl-stream.com:3247/stream/play.m3u8", + "label": "TeleMoldova +" + }, + { + "type": "hls", + "url": "https://live77cdn2.antenaplay.ro/live_ObservatorNews/live_ObservatorNews.m3u8", + "label": "Observator News" + }, + { + "type": "hls", + "url": "https://stream-aleph.m.ro/Aleph/ngrp:Alephnewsmain.stream_all/playlist.m3u8", + "label": "Aleph News" + }, + { + "type": "hls", + "url": "https://tvr-info.lg.mncdn.com/tvrinfo/smil:tvrinfo.smil/playlist.m3u8", + "label": "TVR Info" + }, + { + "type": "hls", + "url": "https://hls02ns.antenaplay.ro/hls/etno-tv-sd/index.m3u8", + "label": "Etno TV" + }, + { + "type": "hls", + "url": "https://hls01ns.antenaplay.ro/hls/national-tv-sd/index.m3u8", + "label": "National TV" + }, + { + "type": "hls", + "url": "https://tvr-folclor.lg.mncdn.com/tvrfolclor/smil:tvrfolclor.smil/playlist.m3u8", + "label": "TVR Folclor" + }, + { + "type": "hls", + "url": "https://tvr-timisoara.lg.mncdn.com/tvrtimisoara/smil:tvrtimisoara.smil/playlist.m3u8", + "label": "TVR Timisoara" + }, + { + "type": "hls", + "url": "https://tvr-iasi.lg.mncdn.com/tvriasi/smil:tvriasi.smil/playlist.m3u8", + "label": "TVR Iasi" + }, + { + "type": "hls", + "url": "https://btutzctahuf0wjoq.cdn.streamingserver.io/hls/yjvam8hlp2g3u08z02tv0yz66rq3cy.m3u8", + "label": "Arges TV" + }, + { + "type": "hls", + "url": "https://s2.netstreaming.eu/hd365.m3u8", + "label": "HD365 TV" + }, + { + "type": "hls", + "url": "https://netstreaming.eu/hd1.m3u8", + "label": "Hunedoara 1" + }, + { + "type": "hls", + "url": "https://live.nasul.tv/live/stream.m3u8", + "label": "Nasul TV" + }, + { + "type": "hls", + "url": "https://dvb.tennet.ro/mobile_tv/telestar.m3u8", + "label": "Telestar1" + }, + { + "type": "hls", + "url": "https://streamw.m.ro/Aleph/ngrp:Alephbiz.stream_all/playlist.m3u8", + "label": "Aleph Business" + }, + { + "type": "hls", + "url": "https://cdn.streamnet.pro/musceltv/live/playlist.m3u8", + "label": "Muscel TV" + }, + { + "type": "hls", + "url": "https://tvr-cultural.lg.mncdn.com/tvrcultural/smil:tvrcultural.smil/playlist.m3u8", + "label": "TVR Cultural" + }, + { + "type": "hls", + "url": "https://live.tele7abc.ro/hls/stream/index.m3u8", + "label": "Tele7ABC HD" + }, + { + "type": "hls", + "url": "https://tvr-tgmures.lg.mncdn.com/tvrtgmures/smil:tvrtgmures.smil/playlist.m3u8", + "label": "TVR Targu-Mures" + }, + { + "type": "hls", + "url": "https://tvr-cluj.lg.mncdn.com/tvrcluj/smil:tvrcluj.smil/playlist.m3u8", + "label": "TVR Cluj" + }, + { + "type": "hls", + "url": "https://cdn.streamnet.pro/columnatv/live/playlist.m3u8", + "label": "Columna TV" + }, + { + "type": "hls", + "url": "https://tvr-craiova.lg.mncdn.com/tvrcraiova/smil:tvrcraiova.smil/playlist.m3u8", + "label": "TVR Craiova" + }, + { + "type": "hls", + "url": "https://live.ro24tv.ro/hls/stream.m3u8", + "label": "PROFI 24 TV" + }, + { + "type": "hls", + "url": "https://live.djemba.ro/memfs/474f9942-f72b-4130-817a-435cd54b2c36.m3u8", + "label": "Qub TV" + }, + { + "type": "hls", + "url": "https://stream1.kanald.ro/iphone/knd-live.m3u8", + "label": "Kanal D" + }, + { + "type": "hls", + "url": "https://jobtvserver.eu/hls/stream.m3u8", + "label": "JOB TV" + }, + { + "type": "hls", + "url": "https://a7tvlive.ro/A7TV/A7TV/playlist.m3u8", + "label": "A7TV" + }, + { + "type": "hls", + "url": "https://live4dai.antenaplay.ro/live2_sdi07/live2_sdi07_600k.m3u8", + "label": "Antena Stars" + }, + { + "type": "hls", + "url": "https://live4dai.antenaplay.ro/live2_aws4_sdi12/live2_aws4_sdi12_600k.m3u8", + "label": "Happy Channel" + }, + { + "type": "hls", + "url": "https://651c69fa2ff4e.streamlock.net/ctv/_definst_/livecredo/playlist.m3u8", + "label": "Credo TV" + }, + { + "type": "hls", + "url": "https://stream1.antenaplay.ro/live/AntenaMonden/playlist.m3u8", + "label": "Antena Monden" + }, + { + "type": "hls", + "url": "https://online.tvimpact.live/hls/impact_tv.m3u8", + "label": "Impact TV Manele" + }, + { + "type": "hls", + "url": "https://online.tvimpact.live/hls/dancetv.m3u8", + "label": "Impact TV Dance" + }, + { + "type": "hls", + "url": "https://streamlov.alsolnet.com/radiofxnet/live/playlist.m3u8", + "label": "Radio Fx Net" + }, + { + "type": "hls", + "url": "https://live.tvimpact.ro:8088/hevc/index.m3u8", + "label": "Impact TV" + } + ], + "Philippines": [ + { + "type": "hls", + "url": "https://amg19223-amg19223c12-amgplt0352.playout.now3.amagi.tv/playlist/amg19223-amg19223c12-amgplt0352/playlist.m3u8", + "label": "Abante TV" + }, + { + "type": "hls", + "url": "https://amg19223-amg19223c11-amgplt0352.playout.now3.amagi.tv/playlist/amg19223-amg19223c11-amgplt0352/playlist.m3u8", + "label": "Bilyonaryo News Channel" + }, + { + "type": "hls", + "url": "https://stream.kdlc.click/hls/0/stream.m3u8", + "label": "SMNI" + }, + { + "type": "hls", + "url": "https://cdn.vegasplus.us/vegas/mmn01/playlist.m3u8", + "label": "Mindanow Network TV" + }, + { + "type": "hls", + "url": "https://cdn.vegasplus.us/vegas/lac/playlist.m3u8", + "label": "Living Asia Channel" + }, + { + "type": "hls", + "url": "https://stream-243529.castr.net/6842a712b68c56f675d988f1/live_f5ac22b0566511f0805217b960326aaa/rewind-1800.m3u8", + "label": "INC TV" + }, + { + "type": "hls", + "url": "https://stream-243529.castr.net/6842a712b68c56f675d988f1/live_b60a96e056fc11f084c05f5d0649296b/rewind-1800.m3u8", + "label": "INC Radio" + } + ], + "Saudi Arabia": [ + { + "type": "hls", + "url": "https://live-news.asharq.com/asharq.m3u8", + "label": "Asharq News" + }, + { + "type": "hls", + "url": "https://av.alarabiya.net/alarabiapublish/alhadath.smil/playlist.m3u8", + "label": "Al Hadath" + }, + { + "type": "hls", + "url": "https://live.alarabiya.net/alarabiapublish/english/playlist_dvr.m3u8", + "label": "Al Arabiya English" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/al_ekhbariya/hls_roku/index.m3u8", + "label": "Al Ekhbariya" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/saudi_tv/hls_roku/index.m3u8", + "label": "Al Saudiya" + }, + { + "type": "hls", + "url": "https://stream.addresses-sat.com/Alwesam/index.m3u8", + "label": "Alwesam TV" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/sbrksasaudiaradiolive/srpksasaudiaradio/playlist.m3u8", + "label": "Saudia Radio" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/sbrksanedaradiolive/srpksanedaradio/playlist.m3u8", + "label": "Nidae AlIslam Radio" + }, + { + "type": "hls", + "url": "https://radio-loud-fm.mbc.net/radio-loud-fm_1.m3u8", + "label": "MBC Loud" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/sbrksakhuzamaradiolive/srpkhuzama/playlist.m3u8", + "label": "Alkhuzama Radio" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/saudi_quran/hls_roku/index.m3u8", + "label": "Al Quran Al Kareem TV" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/sbrksajeddahradiolive/srpksajeddahradio/chunks.m3u8", + "label": "Jeddah Radio" + }, + { + "type": "hls", + "url": "https://shd-amg-fast-btpls.shahid.net/tx002/playlist.m3u8", + "label": "Tarab" + }, + { + "type": "hls", + "url": "https://d6izdil55uftn.cloudfront.net/out/v1/0a06d1d6377c47edbd48721ed724bd08/index.m3u8", + "label": "Panorama FM" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/dlkqw1ftuvuuzkcb4pxdcg/Iqraafasttv2/playlist.m3u8", + "label": "Iqraa Quran" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/sbrksaquranradiolive/srpksaquranradio/playlist.m3u8", + "label": "Holy Quran Radio" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/dlkqw1ftuvuuzkcb4pxdcg/Iqraafasttv3/playlist.m3u8", + "label": "Iqraa Arabic" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/asharqradiovlive/asharqradiov/playlist.m3u8", + "label": "Asharq Radio" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/saudi_sunnah/hls_roku/index.m3u8", + "label": "Al Sunnah Al Nabawiyah TV" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/sbrksariyadhradiolive/srpksariyadhradio/playlist.m3u8", + "label": "Al Riyadh Radio" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/asharqdocumentarylive/asharqdocumentary.smil/playlist_dvr.m3u8", + "label": "Asharq Documentary" + }, + { + "type": "hls", + "url": "https://media2.streambrothers.com:1936/8122/8122/playlist.m3u8", + "label": "Makkah TV" + } + ], + "Venezuela": [ + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/untv-720/untv-720/playlist.m3u8", + "label": "UN24" + }, + { + "type": "hls", + "url": "https://mblenmain01.telesur.ultrabase.net/mblivev3/480p/playlist.m3u8", + "label": "Telesur" + }, + { + "type": "hls", + "url": "https://streaming.canal-i.com/canal-i/live/master.m3u8", + "label": "Canal I" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-watavision/watavision/chunks.m3u8", + "label": "Wata Vision" + }, + { + "type": "hls", + "url": "https://cloud.fastchannel.es/manifiest/hls/prog9/vepacotv.m3u8", + "label": "Vepaco TV" + }, + { + "type": "hls", + "url": "https://cloud.fastchannel.es/manifiest/hls/prog9/tvo.m3u8", + "label": "Televisora de Oriente" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/valetv_480/valetv_480/playlist.m3u8", + "label": "Vale TV" + }, + { + "type": "hls", + "url": "https://stmv2.voxtvhd.com.br/canal21/canal21/playlist.m3u8", + "label": "Canal 21 Tachira" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/islatv/islatv/playlist.m3u8", + "label": "Isla TV" + }, + { + "type": "hls", + "url": "https://streamtv.intervenhosting.net:3531/live/telecentrovelive.m3u8", + "label": "Telecentro" + }, + { + "type": "hls", + "url": "https://streamtv.intervenhosting.net:3789/live/portutvlive.m3u8", + "label": "Portuguesa Television" + }, + { + "type": "hls", + "url": "https://streamtv.intervenhosting.net:3529/live/tvmparatilive.m3u8", + "label": "TVM para ti" + }, + { + "type": "hls", + "url": "https://vod2live.univtec.com/manifest/4c41c0d8-e2e4-43cc-bd43-79afe715e1b3.m3u8", + "label": "Venevision Internacional" + }, + { + "type": "hls", + "url": "https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8", + "label": "Latina TV" + }, + { + "type": "hls", + "url": "https://cloud.fastchannel.es/manifiest/hls/prog9/catatumbotv.m3u8", + "label": "Catatumbo TV" + }, + { + "type": "hls", + "url": "https://master.myplaytv.com:2020/hls/canaldiplomatico/canaldiplomatico.m3u8", + "label": "Canal Diplomatico" + }, + { + "type": "hls", + "url": "https://servilive.com:3562/live/vav4c8z38live.m3u8", + "label": "TV Oasis Monay" + }, + { + "type": "hls", + "url": "https://us.streaminghd.cl/torococotelevision/video.m3u8", + "label": "Torococo TV" + }, + { + "type": "hls", + "url": "https://vcp6.myplaytv.com/unitv/unitv/playlist.m3u8", + "label": "UniTV" + }, + { + "type": "hls", + "url": "https://vcp10.myplaytv.com/tvs/tvs/playlist.m3u8", + "label": "TVS" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/grandetv2240/playlist.m3u8", + "label": "Grande TV" + }, + { + "type": "hls", + "url": "https://cloud2.streaminglivehd.com:1936/siembratv/siembratv/playlist.m3u8", + "label": "Siembra TV" + }, + { + "type": "hls", + "url": "https://vcp3.myplaytv.com/somostv/somostv/playlist.m3u8", + "label": "Somos TV" + }, + { + "type": "hls", + "url": "https://vcp.myplaytv.com/promar/promar/playlist.m3u8", + "label": "PromarTV" + }, + { + "type": "hls", + "url": "https://vcp12.myplaytv.com/trt/trt/playlist.m3u8", + "label": "TRT (VE)" + }, + { + "type": "hls", + "url": "https://calm-forest-3478.cristianbracho904.workers.dev/live/index.m3u8", + "label": "Canal C del Zulia" + }, + { + "type": "hls", + "url": "https://cdnbarinas.tvzamora.com/showven/index.m3u8", + "label": "ShowVen TV" + }, + { + "type": "hls", + "url": "https://vcp2.myplaytv.com/anzoateguitv/anzoateguitv/playlist.m3u8", + "label": "Anzoategui TV" + }, + { + "type": "hls", + "url": "https://astl-mainstr.qvixsolutions.com/asltvtu_ext/index.m3u8", + "label": "Tu TV" + }, + { + "type": "hls", + "url": "https://rtmp.tamtv.com.ve/tmp_hls/stream/index.m3u8", + "label": "TAM TV" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/tvfamilia_270p/tvfamilia_270p/playlist.m3u8", + "label": "TV Familia" + }, + { + "type": "hls", + "url": "https://vod2live.univtec.com/manifest/89290956-94ab-4950-accb-a54bbd7e176f.m3u8", + "label": "Mas Talk" + }, + { + "type": "hls", + "url": "https://maximatv.net/hls/stream.m3u8", + "label": "Maxima TV" + }, + { + "type": "hls", + "url": "https://streamtv.intervenhosting.net:3718/live/kandelamedioslive.m3u8", + "label": "KandelaTV" + }, + { + "type": "hls", + "url": "https://5bf8041cb3fed.streamlock.net/ReformaTV/ReformaTV/playlist.m3u8", + "label": "Reforma TV" + }, + { + "type": "hls", + "url": "https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8", + "label": "Inter TV" + }, + { + "type": "hls", + "url": "https://streamtv.intervenhosting.net:3040/hybrid/play.m3u8", + "label": "Aguacate TV" + }, + { + "type": "hls", + "url": "https://cloud.fastchannel.es/manifiest/hls/prog9/btatv.m3u8", + "label": "BTA TV" + }, + { + "type": "hls", + "url": "https://vcp.myplaytv.com/glowtv/glowtv/playlist.m3u8", + "label": "Plous TV" + }, + { + "type": "hls", + "url": "https://stream.guarotv.net:3592/hybrid/play.m3u8", + "label": "Guaro TV" + } + ], + "South Korea": [ + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_arirang/playlist.m3u8", + "label": "Arirang TV" + }, + { + "type": "hls", + "url": "https://hlive.ktv.go.kr/live/klive_h.stream/playlist.m3u8", + "label": "KTV (KR)" + }, + { + "type": "hls", + "url": "https://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8", + "label": "EBS Plus 1" + }, + { + "type": "hls", + "url": "https://ebsonair.ebs.co.kr/ebs2familypc/familypc1m/playlist.m3u8", + "label": "EBS 2TV" + }, + { + "type": "hls", + "url": "https://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8", + "label": "EBS 1TV" + }, + { + "type": "hls", + "url": "https://5c3639aa99149.streamlock.net/live_TV/tv/playlist.m3u8", + "label": "HLAT-DTV" + }, + { + "type": "hls", + "url": "https://ns1.tjmbc.co.kr/live/myStream.sdp/playlist.m3u8", + "label": "HLCQ-DTV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1448/playlist.m3u8", + "label": "KBS World" + }, + { + "type": "hls", + "url": "https://wowza.jejumbc.com/live/tv_jejumbc/playlist.m3u8", + "label": "HLAJ-DTV" + }, + { + "type": "hls", + "url": "https://live.knou.ac.kr/knou1/live1/playlist.m3u8", + "label": "OUN" + }, + { + "type": "hls", + "url": "https://cdntv.tbs.seoul.kr/tbs/tbs_tv_web.smil/playlist.m3u8", + "label": "TBS TV" + }, + { + "type": "hls", + "url": "https://media.joycorp.co.kr:4443/live/ngrp:live_all/playlist.m3u8", + "label": "NBS" + }, + { + "type": "hls", + "url": "https://stream.ubc.co.kr/hls/ubctvstream/index.m3u8", + "label": "HLDP-DTV" + }, + { + "type": "hls", + "url": "https://stream.chmbc.co.kr/TV/myStream/playlist.m3u8", + "label": "HLAN-DTV" + }, + { + "type": "hls", + "url": "https://vod.ikbc.co.kr/KBCTV/tv/playlist.m3u8", + "label": "HLDH-DTV" + }, + { + "type": "hls", + "url": "https://amdlive-ch02-ctnd-com.akamaized.net/arirang_3ch/smil:arirang_3ch.smil/playlist.m3u8", + "label": "Arirang Radio" + }, + { + "type": "hls", + "url": "https://xykt-fix.github.io/flv/KJ_W.m3u8", + "label": "KBS Joy" + }, + { + "type": "hls", + "url": "https://btn.nowcdn.co.kr/btn/btnlive2m/playlist.m3u8", + "label": "BTN TV (KR)" + }, + { + "type": "hls", + "url": "https://mgugaklive.nowcdn.co.kr/gugakvideo/gugakvideo.stream/playlist.m3u8", + "label": "Gugak TV" + }, + { + "type": "hls", + "url": "https://fgtvlive.fgtv.com/smil:fgtv.smil/playlist.m3u8", + "label": "FGTV" + } + ], + "Iraq": [ + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/RUDAW/HLS/RUDAW.m3u8", + "label": "Rudaw TV" + }, + { + "type": "hls", + "url": "https://stream.shams.tv/hls/stream.m3u8", + "label": "Shams TV (IQ)" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/PAYAM_TV/HLS/PAYAM_TV.m3u8", + "label": "Payam TV" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/K24/HLS/K24.m3u8", + "label": "Kurdistan 24" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/KURDSAT_NEWS/HLS/KURDSAT_NEWS.m3u8", + "label": "Kurdsat News" + }, + { + "type": "hls", + "url": "https://live.i-news.tv/hls/stream.m3u8", + "label": "I News" + }, + { + "type": "hls", + "url": "https://ghaasiflu.online/Dijlah/index.m3u8", + "label": "Dijlah TV" + }, + { + "type": "hls", + "url": "https://live.alissahost.net/hls/test.m3u8", + "label": "Al Janoub TV" + }, + { + "type": "hls", + "url": "https://live.channel8.com/Channel8-Kurdish/index.fmp4.m3u8", + "label": "Channel8" + }, + { + "type": "hls", + "url": "https://imn-live.esite-lab.com/hls/iraqia-news.m3u8", + "label": "Al Iraqia News" + }, + { + "type": "hls", + "url": "https://sd343444.vodu.store:3356/live/Alghadeer/index.m3u8", + "label": "Alghadeer TV" + }, + { + "type": "hls", + "url": "https://5d94523502c2d.streamlock.net/alsharqiyalive/mystream/playlist.m3u8", + "label": "Al Sharqiya News" + }, + { + "type": "hls", + "url": "https://imn-live.esite-lab.com/hls/iraqia-kurdish.m3u8", + "label": "Al Iraqia Kurdish" + }, + { + "type": "hls", + "url": "https://kurdchhls.wns.live/hls/stream.m3u8", + "label": "Kurd Channel" + }, + { + "type": "hls", + "url": "https://imn-live.esite-lab.com/hls/iraqia-general.m3u8", + "label": "Al Iraqia" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/WAAR_HD/HLS/WAAR_HD.m3u8", + "label": "Waar TV" + }, + { + "type": "hls", + "url": "https://vmi747311.contaboserver.net/hls/livetv.m3u8", + "label": "Manu Chat" + }, + { + "type": "hls", + "url": "https://avr.host247.net/live/AvarTv/playlist.m3u8", + "label": "Avar TV" + }, + { + "type": "hls", + "url": "https://live.alawla.tv/hls/stream.m3u8", + "label": "Alawla TV" + }, + { + "type": "hls", + "url": "https://5d94523502c2d.streamlock.net/home/mystream/playlist.m3u8", + "label": "Al Sharqiya" + }, + { + "type": "hls", + "url": "https://live.bradosti.net/live/samaraweb_playlist.m3u8", + "label": "Samarra TV" + }, + { + "type": "hls", + "url": "https://5a3ed7a72ed4b.streamlock.net/zagrostv/SMIL:myStream.smil/playlist.m3u8", + "label": "Zagros TV" + }, + { + "type": "hls", + "url": "https://stream.ishtartv.com/live/iShtarHD/playlist.m3u8", + "label": "Ishtar TV" + }, + { + "type": "hls", + "url": "https://media1.livaat.com/static/AL-RASHEED-HD/playlist.m3u8", + "label": "Al Rasheed TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_040/Stream/playlist.m3u8", + "label": "Iraq Future" + }, + { + "type": "hls", + "url": "https://mediaserver.abnvideos.com/streams/abnsat.m3u8", + "label": "ABNsat" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/KURDSAT_HD/HLS/KURDSAT_HD.m3u8", + "label": "Kurdsat" + }, + { + "type": "hls", + "url": "https://avr.host247.net/live/emantv/playlist.m3u8", + "label": "EmanTv" + }, + { + "type": "hls", + "url": "https://avr.host247.net/live/Mix-kurdy/playlist.m3u8", + "label": "Mixkurdy" + }, + { + "type": "hls", + "url": "https://avr.host247.net/live/FarmodaTV/playlist.m3u8", + "label": "FarmodaTV" + }, + { + "type": "hls", + "url": "https://ktvlive.online/stream/hls/ch1.m3u8", + "label": "Alquran" + }, + { + "type": "hls", + "url": "https://ktvlive.online/stream/hls/ch3.m3u8", + "label": "Karbala Documentary" + }, + { + "type": "hls", + "url": "https://app-live.org/live/3268334b/index.m3u8", + "label": "Amozhgary TV" + }, + { + "type": "hls", + "url": "https://live.aljawadain.org/live/aljawadaintv/playlist.m3u8", + "label": "Al-Jawadain TV" + }, + { + "type": "hls", + "url": "https://live.beitolabbas.tv/live/beitolabbastv.m3u8", + "label": "BeitolAbbas TV Channel" + }, + { + "type": "hls", + "url": "https://livefa.marjaeyattv.com/mtv_ar/playlist.m3u8", + "label": "Marjaeyat TV Arabic" + }, + { + "type": "hls", + "url": "https://stream.alabbassia.com/live/alabbassia/index.m3u8", + "label": "Alabbassia TV" + } + ], + "Greece": [ + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/eurotvlive/playlist.m3u8", + "label": "Euro TV" + }, + { + "type": "hls", + "url": "https://server.gointernet.gr/live/livestream.m3u8", + "label": "Astra TV" + }, + { + "type": "hls", + "url": "https://verginanews.gr:8443/hls_live/stream1.m3u8", + "label": "Vergina TV" + }, + { + "type": "hls", + "url": "https://telmaco-cdn.akamaized.net/starcgr/default/index.m3u8", + "label": "Star Kentrikis Elladas" + }, + { + "type": "hls", + "url": "https://ert-ucdn.broadpeak-aas.com/bpk-tv/VOULITV/default/index.m3u8", + "label": "Hellenic Parliament TV" + }, + { + "type": "hls", + "url": "https://telmaco.ascdn.broadpeak.io/nafteboriki/default/index.m3u8", + "label": "Naftemporiki TV" + }, + { + "type": "hls", + "url": "https://ert-ucdn.broadpeak-aas.com/bpk-tv/ERTNews/default/index.m3u8", + "label": "ERT News" + }, + { + "type": "hls", + "url": "https://itv.streams.ovh:1936/corfuchannel/corfuchannel/playlist.m3u8", + "label": "Corfu Channel" + }, + { + "type": "hls", + "url": "https://itv.streams.ovh/ALEERT/ALEERT/playlist.m3u8", + "label": "Alert TV" + }, + { + "type": "hls", + "url": "https://live.cast-control.eu/StartMedia/StartMedia/playlist.m3u8", + "label": "Start TV" + }, + { + "type": "hls", + "url": "https://video.streams.ovh:1936/egnatiatv/egnatiatv/index.m3u8", + "label": "Egnatia TV" + }, + { + "type": "hls", + "url": "https://av.hellasnet.tv/rst/trt/main_stream.m3u8", + "label": "TRT (GR)" + }, + { + "type": "hls", + "url": "https://video.streams.ovh:1936/pellatv/pellatv/master.m3u8", + "label": "Pella TV" + }, + { + "type": "hls", + "url": "https://fr.crystalweb.net:1936/lepantotv/lepantotv/playlist.m3u8", + "label": "Lepanto TV" + }, + { + "type": "hls", + "url": "https://acheloostv.streamings.gr/live/stream/index.m3u8", + "label": "Acheloos TV" + }, + { + "type": "hls", + "url": "https://ert-ucdn.broadpeak-aas.com/bpk-tv/ERTCosmos/default/index.m3u8", + "label": "ERT Cosmos" + }, + { + "type": "hls", + "url": "https://zouglacam-mdc-secure.akamaized.net/zouglalive/backup/playlist.m3u8", + "label": "Zougla TV" + }, + { + "type": "hls", + "url": "https://eu1.streams.gr:8081/kostv/index.m3u8", + "label": "Kos TV" + }, + { + "type": "hls", + "url": "https://live.streams.ovh:8081/gnomitv/index.m3u8", + "label": "Gnomi TV" + }, + { + "type": "hls", + "url": "https://onechannel.siliconweb.com/one/stream/chunks.m3u8", + "label": "One Channel" + }, + { + "type": "hls", + "url": "https://eu1.streams.gr:8081/centertv/index.m3u8", + "label": "Center TV" + }, + { + "type": "hls", + "url": "https://gra1.crystalweb.net:1936/epilogestv/epilogestv/playlist.m3u8", + "label": "Epiloges TV" + }, + { + "type": "hls", + "url": "https://liveopen.siliconweb.com/openTvLive/openEcclessia/playlist.m3u8", + "label": "Ecclesia TV" + }, + { + "type": "hls", + "url": "https://fr.crystalweb.net:1936/aigaiotv/aigaiotv/playlist.m3u8", + "label": "Aigaio TV" + }, + { + "type": "hls", + "url": "https://live.streams.ovh/tvcreta/tvcreta/chunklist.m3u8", + "label": "TV Creta" + }, + { + "type": "hls", + "url": "https://gwebstream.net/hls/master.m3u8", + "label": "TV 100" + }, + { + "type": "hls", + "url": "https://gra1.crystalweb.net:1936/channel8/channel8/playlist.m3u8", + "label": "Channel 8" + }, + { + "type": "hls", + "url": "https://live.neatv.gr:8888/hls/neatv.m3u8", + "label": "Nea TV" + }, + { + "type": "hls", + "url": "https://eco.streams.ovh:1936/syrostv1/syrostv1/playlist.m3u8", + "label": "Syros TV1" + }, + { + "type": "hls", + "url": "https://srv.streamserver.gr:3451/stream/play.m3u8", + "label": "Notioi TV" + }, + { + "type": "hls", + "url": "https://fr.crystalweb.net:1936/topchannel/topchannel/playlist.m3u8", + "label": "Top Channel" + }, + { + "type": "hls", + "url": "https://cretetvlive.siliconweb.com/cretetv/liveabr/playlist.m3u8", + "label": "Kriti TV" + }, + { + "type": "hls", + "url": "https://kontralive.siliconweb.com/live/kontratv/playlist.m3u8", + "label": "Kontra Channel" + }, + { + "type": "hls", + "url": "https://alphatvlive2.siliconweb.com/alphatvlive/live_abr/playlist.m3u8", + "label": "Alpha TV" + }, + { + "type": "hls", + "url": "https://stream.ioniantv.gr/ionian/live_abr/playlist.m3u8", + "label": "Ionian TV" + }, + { + "type": "hls", + "url": "https://rtmp.streams.ovh:8081/mtv/index.m3u8", + "label": "Messatida TV" + }, + { + "type": "hls", + "url": "https://rtmp.win:3603/live/ellinikosfmlive.m3u8", + "label": "Ellinikos FM" + }, + { + "type": "hls", + "url": "https://eco.streams.ovh:8081/barazatv/tracks-v1a1/mono.m3u8", + "label": "Baraza TV" + }, + { + "type": "hls", + "url": "https://es1.crystalweb.net:1936/netmaxtv/netmaxtv/playlist.m3u8", + "label": "Netmax TV" + }, + { + "type": "hls", + "url": "https://rtmp.streams.ovh:1936/barazarelax/barazazararelax/barazarelax/playlist.m3u8", + "label": "Baraza TV Deep House" + } + ], + "Nigeria": [ + { + "type": "hls", + "url": "https://wf.newscentral.ng:8443/hls/stream.m3u8", + "label": "News Central" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_029/Stream/playlist.m3u8", + "label": "Silverbird News 24" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8398/8398/playlist.m3u8", + "label": "Superscreen TV" + }, + { + "type": "hls", + "url": "https://stream-hls.castr-cdn.com/6a05a899db0ebd344a759542/live_9655bc604f8211f19e748901a3f596d0/index.m3u8", + "label": "Rapid TV" + }, + { + "type": "hls", + "url": "https://stream.fortistv.com/hls/fortis-news/index.m3u8", + "label": "Fortis TV" + }, + { + "type": "hls", + "url": "https://oqgdro3xd4rm-hls-live.5centscdn.com/tfmediacastlivestream24/60414fd886a863e5851f4559fb86e7f6.sdp/playlist.m3u8", + "label": "Yobe TV" + }, + { + "type": "hls", + "url": "https://tv-west.lg.mncdn.com/tv_west/tv_west.stream/playlist.m3u8", + "label": "TV-WEST (NG)" + }, + { + "type": "hls", + "url": "https://live.approvaltv.com/approvaltv/index.m3u8", + "label": "Approval TV" + }, + { + "type": "hls", + "url": "https://oqgdro3xd4rm-hls-live.5centscdn.com/waffiitvstreaminglivetfmediacast/e0885d428bea69e372309657f3bd895f.sdp/playlist.m3u8", + "label": "Waffi TV" + }, + { + "type": "hls", + "url": "https://oqgdro3xd4rm-hls-live.5centscdn.com/tfmediacastlivestreamUTV/8f263182c36c7e5c56a986bf770091e3.sdp/playlist.m3u8", + "label": "UTV Africa" + }, + { + "type": "hls", + "url": "https://streams.playtv.com.ng/Tele-Regency_TRTV/index.m3u8", + "label": "Tele Regency TV" + }, + { + "type": "hls", + "url": "https://acasmedia3.acangroup.org/qausaintv/qausaintv_output/playlist.m3u8", + "label": "Qausain TV" + }, + { + "type": "hls", + "url": "https://wazobia.live:8333/channel/wmax.m3u8", + "label": "Wazobia Max TV Nigeria" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_038/Stream/playlist.m3u8", + "label": "Synagogue TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_015/Stream/playlist.m3u8", + "label": "Sunna TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_017/Stream/playlist.m3u8", + "label": "Salvation TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_023/Stream/playlist.m3u8", + "label": "Nigbati" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_001/Stream/playlist.m3u8", + "label": "BCS StarCross TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_013/Stream/playlist.m3u8", + "label": "Bride TV" + }, + { + "type": "hls", + "url": "https://wazobia.live:8333/channel/wmaxph.m3u8", + "label": "Wazobia Max TV Port-Harcourt" + }, + { + "type": "hls", + "url": "https://cdnstack.internetmultimediaonline.org/lwsat/lwsat.stream/index.m3u8", + "label": "LoveworldSAT" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_027/Stream/playlist.m3u8", + "label": "New Vision TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_019/Stream/playlist.m3u8", + "label": "Coza TV" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_024/Stream/playlist.m3u8", + "label": "Chosen TV English" + }, + { + "type": "hls", + "url": "https://cdn3.wowza.com/5/aVJETlF0UFdmYTFu/LWPP/ngrp:persia.stream_all/playlist.m3u8", + "label": "LoveWorld Persia" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_021/Stream/playlist.m3u8", + "label": "AMusic Channel" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_014/Stream/playlist.m3u8", + "label": "ACNN" + }, + { + "type": "hls", + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_010/Stream/playlist.m3u8", + "label": "Flame TV" + } + ], + "Belgium": [ + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/STERK_TV/HLS/STERK_TV.m3u8", + "label": "Sterk TV" + }, + { + "type": "hls", + "url": "https://streams.prd.commavservices.eu/live/ebs/index.m3u8", + "label": "EbS" + }, + { + "type": "hls", + "url": "https://live.zendzend.com/mpegts/29375_107244/media_mpegts_0.m3u8", + "label": "ATV" + }, + { + "type": "hls", + "url": "https://live.matele.be/hls/live.m3u8", + "label": "Matele" + }, + { + "type": "hls", + "url": "https://59959724487e3.streamlock.net/stream/live/playlist.m3u8", + "label": "BX1" + }, + { + "type": "hls", + "url": "https://streaming01.divercom.be/notele_live/direct.stream/playlist.m3u8", + "label": "Notele" + }, + { + "type": "hls", + "url": "https://wtvlive.b-cdn.net/playlist.m3u8", + "label": "WTV" + }, + { + "type": "hls", + "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/4db788c7/index.m3u8", + "label": "ACTV" + }, + { + "type": "hls", + "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/764748cd/index.m3u8", + "label": "TV Lux (BE)" + }, + { + "type": "hls", + "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/e1ccc6aa/index.m3u8", + "label": "Bouke" + }, + { + "type": "hls", + "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/2f00284b/index.m3u8", + "label": "Telesambre" + }, + { + "type": "hls", + "url": "https://dlgt0tdl2hpq3.cloudfront.net/rtbf/clr-rtbf/d14f1e64/index.m3u8", + "label": "Tele MB" + }, + { + "type": "hls", + "url": "https://live.vrtcdn.be/groupb/live/9c429b62-e160-417a-b438-cdf985bcd352/live.isml/.m3u8", + "label": "Klara" + }, + { + "type": "hls", + "url": "https://live.vrtcdn.be/groupb/live/450aa9d1-7173-47f3-aaaa-9701426f8ddd/live.isml/.m3u8", + "label": "StuBru" + }, + { + "type": "hls", + "url": "https://live.vrtcdn.be/groupa/live/66a9668e-b37b-4de2-878e-0218563b2dd2/live.isml/.m3u8", + "label": "Radio 2" + }, + { + "type": "hls", + "url": "https://live.vrtcdn.be/groupa/live/1718328a-5c53-410d-87ec-d8db68124cfc/live.isml/.m3u8", + "label": "MNM" + }, + { + "type": "hls", + "url": "https://funradiovisionhd.vedge.infomaniak.com/livecast/ik:funradiovisionhd/manifest.m3u8", + "label": "Fun Vision" + } + ], + "Togo": [ + { + "type": "hls", + "url": "https://hls.newworldtv.com/nw-info/video/live.m3u8", + "label": "NW Info" + }, + { + "type": "hls", + "url": "https://hls.newworldtv.com/nw-economie/video/live.m3u8", + "label": "NW Economie" + }, + { + "type": "hls", + "url": "https://cdn140m.panaccess.com/HLS/Espoir47/index.m3u8", + "label": "Television Espoir 47" + }, + { + "type": "hls", + "url": "https://hls.newworldtv.com/nw-magazine/video/live.m3u8", + "label": "NW Magazine" + }, + { + "type": "hls", + "url": "https://kali.vdopanel.com:3660/live/vj6jlam1rlive.m3u8", + "label": "Chandel TV" + } + ], + "Uganda": [ + { + "type": "hls", + "url": "https://channels.ad-ug.com/live/ch03/index.m3u8", + "label": "KRC TV" + }, + { + "type": "hls", + "url": "https://stream.rwenzoritv.com:3232/live/rwenzoritvlive.m3u8", + "label": "Rwenzori TV" + }, + { + "type": "hls", + "url": "https://stream.hydeinnovations.com/tarari-west/index.m3u8", + "label": "Tayari West TV" + }, + { + "type": "hls", + "url": "https://stream.hydeinnovations.com/tvwest-flussonic/index.m3u8", + "label": "TV West (UG)" + }, + { + "type": "hls", + "url": "https://stream.hydeinnovations.com/bukedde2flussonic/index.m3u8", + "label": "Bukedde TV 2" + }, + { + "type": "hls", + "url": "https://stream.hydeinnovations.com/luotv-flussonic/index.m3u8", + "label": "Wan Luo TV" + }, + { + "type": "hls", + "url": "https://live.esteem.africa/kstv/hls/0/stream.m3u8", + "label": "KSTV Uganda" + }, + { + "type": "hls", + "url": "https://fort.co-works.org/memfs/87017643-274a-4bc0-a786-7767a0d159c2.m3u8", + "label": "FORT TV" + }, + { + "type": "hls", + "url": "https://streamfi-alphadgtl1.zettawiseroutes.com:8181/hls/stream.m3u8", + "label": "BTV" + }, + { + "type": "hls", + "url": "https://streamfi-dreamtv1.zettawiseroutes.com:8181/hls/stream.m3u8", + "label": "Dream TV" + }, + { + "type": "hls", + "url": "https://streamfi-alphatvdgtl1.zettawiseroutes.com:8181/hls/stream.m3u8", + "label": "Alpha Digital" + }, + { + "type": "hls", + "url": "https://stream.hydeinnovations.com/arktv-international/index.fmp4.m3u8", + "label": "Ark TV" + } + ], + "Cyprus": [ + { + "type": "hls", + "url": "https://yayin1.canlitv.fun/live/kibrisadatv.stream/playlist.m3u8", + "label": "Ada TV" + }, + { + "type": "hls", + "url": "https://l3.cloudskep.com/cybcsat/abr/playlist.m3u8", + "label": "RIK Sat" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist_dvr.m3u8", + "label": "Sat 7 Turk" + }, + { + "type": "hls", + "url": "https://sl2.sigmatv.com/hls/live.m3u8", + "label": "Sigma TV" + }, + { + "type": "hls", + "url": "https://sat7phls.wns.live/hls/stream.m3u8", + "label": "Sat 7 Pars" + }, + { + "type": "hls", + "url": "https://content.uplynk.com/channel/9d35b73c264946d5945db6cdff26336e.m3u8", + "label": "Middle East TV" + } + ], + "Portugal": [ + { + "type": "hls", + "url": "https://playout172.livextend.cloud/liveiframe/_definst_/liveartvabr/playlist.m3u8", + "label": "ARTV" + }, + { + "type": "hls", + "url": "https://pull-live-156-1.global.ssl.fastly.net/pc5865dc25400thmb-ea6bf03b14fa318f7133/smil:pc1-jhrgyuoqe5865db-68tkgb14fa318f7133f03.smil/playlist.m3u8", + "label": "Porto Canal" + }, + { + "type": "hls", + "url": "https://production-fast-sic.content.okast.tv/fa2e8c4385712f9aa54bbe52b1bd9b6b/channels/d9070446-8448-455e-8075-773b1ba12562/fc831b20-f252-4e7d-8cc5-2d05f4d43c1c/media_.m3u8", + "label": "SIC Alta Definicao" + }, + { + "type": "hls", + "url": "https://production-fast-sic.content.okast.tv/fa2e8c4385712f9a7dce4ff2dcebac2e/channels/d9070446-8448-455e-8075-773b1ba12562/d47eae0f-ad77-414a-9a1d-2a6628ba18c3/media_.m3u8", + "label": "SIC Replay" + }, + { + "type": "hls", + "url": "https://5ce9406b73c33.streamlock.net/ONFM/livestream/playlist.m3u8", + "label": "ON FM" + }, + { + "type": "hls", + "url": "https://video03.logicahost.com.br/rfptv/rfptv/playlist.m3u8", + "label": "RFPtv" + }, + { + "type": "hls", + "url": "https://live-tv.waytv.pt/adbtv/adbtv/playlist.m3u8", + "label": "ADB TV" + }, + { + "type": "hls", + "url": "https://w1.manasat.com/tvmana-1/smil:tvmana-1.smil/playlist.m3u8", + "label": "TV Mana 1" + }, + { + "type": "hls", + "url": "https://w1.manasat.com/tvmana-leste/smil:tvmana-leste.smil/playlist.m3u8", + "label": "TV Mana Russkiy" + }, + { + "type": "hls", + "url": "https://w1.manasat.com/tvmana-brasil/smil:tvmana-brasil.smil/playlist.m3u8", + "label": "TV Mana Brasil" + }, + { + "type": "hls", + "url": "https://w2.manasat.com/tserkov-online/smil:tserkov-online.smil/playlist.m3u8", + "label": "Mana Tserkov' Onlayn" + }, + { + "type": "hls", + "url": "https://w1.manasat.com/igrejaonline/smil:igrejaonline.smil/playlist.m3u8", + "label": "Mana Igreja Online" + }, + { + "type": "hls", + "url": "https://w2.manasat.com/iglesia-online/smil:iglesia-online.smil/playlist.m3u8", + "label": "Mana Iglesia Online" + }, + { + "type": "hls", + "url": "https://w2.manasat.com/eglise-online/smil:eglise-online.smil/playlist.m3u8", + "label": "Mana Eglise Online" + }, + { + "type": "hls", + "url": "https://w2.manasat.com/cirkev-online/smil:cirkev-online.smil/playlist.m3u8", + "label": "Mana Cirkev Online" + }, + { + "type": "hls", + "url": "https://w1.manasat.com/ktv/smil:ktv.smil/playlist.m3u8", + "label": "Kuriakos TV" + }, + { + "type": "hls", + "url": "https://w2.manasat.com/church-online/smil:church-online.smil/playlist.m3u8", + "label": "Mana Church Online" + }, + { + "type": "hls", + "url": "https://load-balancer.azotosolutions.com/cdnedge19/smil:live19.smil/playlist.m3u8", + "label": "Radio Sines" + } + ], + "Brazil": [ + { + "type": "hls", + "url": "https://stmv1.srvstm.com/piaui8071/piaui8071/playlist.m3u8", + "label": "TV Assembleia Piaui" + }, + { + "type": "hls", + "url": "https://stmv5.samcast.com.br/claudio8701/claudio8701/playlist.m3u8", + "label": "Canal Metropolitano de Noticias" + }, + { + "type": "hls", + "url": "https://rnw-rn.otteravision.com/rnw/rn/rnw_rn.m3u8", + "label": "Record News" + }, + { + "type": "hls", + "url": "https://5cf4a2c2512a2.streamlock.net/8236/8236/playlist.m3u8", + "label": "TV Sim Sao Mateus" + }, + { + "type": "hls", + "url": "https://5cf4a2c2512a2.streamlock.net/8104/8104/playlist.m3u8", + "label": "TV Sim Cachoeiro" + }, + { + "type": "hls", + "url": "https://cdn.live.br1.jmvstream.com/webtv/AVJ-12952/playlist/playlist.m3u8", + "label": "STZ TV" + }, + { + "type": "hls", + "url": "https://cdn.jmvstream.com/w/LVW-9730/LVW9730_LmUwslM8jt/playlist.m3u8", + "label": "TV Zoom" + }, + { + "type": "hls", + "url": "https://gpa-vja.otteravision.com/gpa/vja/vja.m3u8", + "label": "VEJA+ TV" + }, + { + "type": "hls", + "url": "https://cdn.live.br1.jmvstream.com/w/LVW-11668/ngrp:LVW11668_wiJpjbMrks_all/playlist.m3u8", + "label": "BR8 TV" + }, + { + "type": "hls", + "url": "https://cdn.live.br1.jmvstream.com/w/LVW-9359/LVW9359_XSyReL0QVf/playlist.m3u8", + "label": "Aratu On" + }, + { + "type": "hls", + "url": "https://cdn.jmvstream.com/w/LVW-8503/LVW8503_d0V5oduFlK/playlist.m3u8", + "label": "Canal 38" + }, + { + "type": "hls", + "url": "https://stream3.camara.gov.br/tv1/manifest.m3u8", + "label": "TV Camara" + }, + { + "type": "hls", + "url": "https://cdn.jmvstream.com/w/LVW-9591/LVW9591_PmXtgATnaS/playlist.m3u8", + "label": "Plena TV" + }, + { + "type": "hls", + "url": "https://live.tcm10.com.br/tcm10hd/stream.m3u8", + "label": "TCM 10 HD" + }, + { + "type": "hls", + "url": "https://dai.google.com/linear/hls/event/1XSOdtQ0SH2G8OEmEfGgjQ/master.m3u8", + "label": "SBT News" + }, + { + "type": "hls", + "url": "https://video01.logicahost.com.br/tvideonews/tvideonews/playlist.m3u8", + "label": "TVideoNews" + }, + { + "type": "hls", + "url": "https://app.tvufop.com.br/hls/tvufop.m3u8", + "label": "TV UFOP" + }, + { + "type": "hls", + "url": "https://5ad482a77183d.streamlock.net/rodrigotvbrusque.com.br/5d880199c902eb4a1e8df00d/playlist.m3u8", + "label": "TV Brusque" + }, + { + "type": "hls", + "url": "https://canalgov-stream.ebc.com.br/index.m3u8", + "label": "Canal Gov" + }, + { + "type": "hls", + "url": "https://video01.logicahost.com.br/tvafolha/tvafolha/playlist.m3u8", + "label": "TV A Folha" + }, + { + "type": "hls", + "url": "https://video01.brascast.com/d92ebb4f/d92ebb4f/playlist.m3u8", + "label": "J3NEWS TV" + }, + { + "type": "hls", + "url": "https://stream01.msolutionbrasil.com.br/hls/tvitape/live.m3u8", + "label": "TVitape" + }, + { + "type": "hls", + "url": "https://stream01.msolutionbrasil.com.br/hls/canal25/live.m3u8", + "label": "Canal 25 Jundiai" + }, + { + "type": "hls", + "url": "https://6836041ea1117.streamlock.net/cverde/cverde/playlist.m3u8", + "label": "SBT Nacional" + }, + { + "type": "hls", + "url": "https://5c483b9d1019c.streamlock.net/8186/8186/playlist.m3u8", + "label": "TV Clube" + }, + { + "type": "hls", + "url": "https://5a57bda70564a.streamlock.net/tvpasso/tvpasso.sdp/playlist.m3u8", + "label": "TV Passo Fundo" + }, + { + "type": "hls", + "url": "https://v-us-01.wisestream.io/memfs/e8740862-7a1f-45f3-acb2-4f357e144059.m3u8", + "label": "TV Cultura" + }, + { + "type": "hls", + "url": "https://5a2b083e9f360.streamlock.net/tvpantanal/tvpantanal.sdp/playlist.m3u8", + "label": "TV Pantanal MS" + }, + { + "type": "hls", + "url": "https://5cf4a2c2512a2.streamlock.net/tvmaismarica/tvmaismarica/playlist.m3u8", + "label": "TV Mais Marica" + }, + { + "type": "hls", + "url": "https://stmv1.voxtvhd.com.br/9030/9030/playlist.m3u8", + "label": "TV Sao Raimundo" + }, + { + "type": "hls", + "url": "https://5b7f3c45ab7c2.streamlock.net/8008/smil:8008.smil/playlist.m3u8?DVR=", + "label": "TV Comunitaria" + }, + { + "type": "hls", + "url": "https://stmv1.srvstm.com/sistema7933/sistema7933/playlist.m3u8", + "label": "ISTV (BR)" + }, + { + "type": "hls", + "url": "https://v-us-01.wisestream.io/memfs/e4ade538-7924-4359-81ef-b9d4dd229e91.m3u8", + "label": "Canal FDR" + }, + { + "type": "hls", + "url": "https://cdn.live.br1.jmvstream.com/w/LVW-15748/LVW15748_Yed7yzLuRC/playlist.m3u8", + "label": "RBATV" + }, + { + "type": "hls", + "url": "https://5c483b9d1019c.streamlock.net/falalitoraltv/falalitoraltv/playlist.m3u8", + "label": "Fala Litoral" + }, + { + "type": "hls", + "url": "https://cdn.live.br1.jmvstream.com/w/LVW-20715/LVW20715_50E3x2MCm2/playlist.m3u8", + "label": "TV A Critica" + }, + { + "type": "hls", + "url": "https://cdn.jmvstream.com/w/LVW-8410/LVW8410_uiZOVm6vz1/playlist.m3u8", + "label": "TVNBN" + }, + { + "type": "hls", + "url": "https://cdn.live.br1.jmvstream.com/webtv/AVJ-15235/playlist/playlist.m3u8", + "label": "Rede TV! Mais" + }, + { + "type": "hls", + "url": "https://cdn.jmvstream.com/w/LVW-8719/LVW8719_AcLVAxWy5J/playlist.m3u8", + "label": "EUTV" + }, + { + "type": "hls", + "url": "https://5ad482a77183d.streamlock.net/tvnordesteegmail.com/tvnordesteegmail.com/playlist.m3u8", + "label": "TV Litoral RN" + } + ], + "Ghana": [ + { + "type": "hls", + "url": "https://1681360479.rsc.cdn77.org/1681360479/index.m3u8", + "label": "Resurrection TV" + }, + { + "type": "hls", + "url": "https://59nyqg8elwap-hls-live.5centscdn.com/APTV/85c20905211659d143febd7c32592ee0.sdp/playlist.m3u8", + "label": "AP TV" + }, + { + "type": "hls", + "url": "https://playlist.dacast.com/live/a72117af-d78e-7ffe-7c12-1af6cd4a8483-live-42172a86-494b-a866-498f-dbaff4b5e3c0/master.m3u8", + "label": "Pent TV" + } + ], + "Indonesia": [ + { + "type": "hls", + "url": "https://lingkartv.my.id/hls/lingkartv.m3u8", + "label": "Lingkar TV" + }, + { + "type": "hls", + "url": "https://flv.intechmedia.net/live/ch112.m3u8", + "label": "BN Channel" + }, + { + "type": "hls", + "url": "https://e.siar.us/live/smtv.m3u8", + "label": "SMTV" + }, + { + "type": "hls", + "url": "https://v2.siar.us/tatv/live.sdp/playlist.m3u8", + "label": "TATV" + }, + { + "type": "hls", + "url": "https://e.siar.us/live/tvmu.m3u8", + "label": "TV Mu" + }, + { + "type": "hls", + "url": "https://gist.githubusercontent.com/iptvonlinetv/8a6b2f12e5e968537378f1245cea02c9/raw/78bf84476f8e24cc8ea9d5ac24855078c61b18db/udp305.575.530:3030.m3u8", + "label": "YOY International" + }, + { + "type": "hls", + "url": "https://flv.intechmedia.net/live/ch118.m3u8", + "label": "KTV (ID)" + }, + { + "type": "hls", + "url": "https://gist.githubusercontent.com/iptvonlinetv/02d209207082846012c15305f7471c55/raw/4439b54b986e696e6fcfba7a53380d85b27bbbc1/udp450.500.723:6050.m3u8", + "label": "Groovia Kanal" + }, + { + "type": "hls", + "url": "https://5bf7b725107e5.streamlock.net/brtv/brtv/playlist.m3u8", + "label": "BRTV" + }, + { + "type": "hls", + "url": "https://5bf7b725107e5.streamlock.net/kstv/kstv/playlist.m3u8", + "label": "Kilisuci TV" + }, + { + "type": "hls", + "url": "https://5bf7b725107e5.streamlock.net/tv9/tv9/playlist.m3u8", + "label": "TV 9 Nusantara" + }, + { + "type": "hls", + "url": "https://5bf7b725107e5.streamlock.net/tvtabalong/tvtabalong/playlist.m3u8", + "label": "TV Tabalong" + }, + { + "type": "hls", + "url": "https://hgmtv.com:19360/garudatvlivestreaming/garudatvlivestreaming.m3u8", + "label": "Garuda TV" + }, + { + "type": "hls", + "url": "https://dutatv.siar.us/dutatv/live/playlist.m3u8", + "label": "Duta TV" + }, + { + "type": "hls", + "url": "https://akativi.siar.us/live/akativi.m3u8", + "label": "AKTV" + }, + { + "type": "hls", + "url": "https://dhohotv.siar.us/dhohotv/live/playlist.m3u8", + "label": "Dhoho TV" + }, + { + "type": "hls", + "url": "https://e.siar.us/live/dtvi.m3u8", + "label": "dTVi" + }, + { + "type": "hls", + "url": "https://banjartv.siar.us/banjartv/live/playlist.m3u8", + "label": "Banjar TV" + }, + { + "type": "hls", + "url": "https://live.efarinatv.com/hls/bgtaufikganteng.m3u8", + "label": "Efarina TV" + }, + { + "type": "hls", + "url": "https://v2.siar.us/radartasikmalaya/live/playlist.m3u8", + "label": "Radar Tasikmalaya TV" + }, + { + "type": "hls", + "url": "https://jambitv.globaldigitalcore.com/hls/sah5tu7Eiveepohyieyie3OoteL2anga.m3u8", + "label": "Jambi TV" + }, + { + "type": "hls", + "url": "https://stream.carubantv.id/hls/0/stream.m3u8", + "label": "Caruban TV" + }, + { + "type": "hls", + "url": "https://rtvstream.rtv.co.id:4555/hls/rtv.m3u8", + "label": "Rajawali TV" + }, + { + "type": "hls", + "url": "https://streaming.id18.tunnel.my.id/hls/stream.m3u8", + "label": "PKTV" + }, + { + "type": "hls", + "url": "https://srs.u-channel.tv/live/uchannel-tv.m3u8", + "label": "U Channel" + }, + { + "type": "hls", + "url": "https://stream.matrixtv.id/hls/0/stream.m3u8", + "label": "Matrix TV Yogyakarta" + }, + { + "type": "hls", + "url": "https://edge.medcom.id/live-edge/smil:magna.smil/playlist.m3u8", + "label": "Magna Channel" + }, + { + "type": "hls", + "url": "https://gist.githubusercontent.com/iptvonlinetv/cf56ccf36d1c0827e4dc470db7b7912d/raw/066b1c9755b2496805575f16d413bd1207ca8117/udp315.520.789:8060.m3u8", + "label": "E International" + }, + { + "type": "hls", + "url": "https://re1.siar.us/madutv/hd720/playlist.m3u8", + "label": "Madu TV" + }, + { + "type": "hls", + "url": "https://rinjanitv.cloud/hls/tvkabel.m3u8", + "label": "Rinjani TV" + }, + { + "type": "hls", + "url": "https://v10.siar.us/rctv/live/playlist.m3u8", + "label": "RCTV" + }, + { + "type": "hls", + "url": "https://live.salamtelevisi.com/hls/0/stream.m3u8", + "label": "Salam TV" + }, + { + "type": "hls", + "url": "https://live.salira.tv/p/3870/hybrid/play.m3u8", + "label": "Salira TV" + }, + { + "type": "hls", + "url": "https://ott-balancer.tvri.go.id/live/eds/Aceh/hls/Aceh.m3u8", + "label": "TVRI" + }, + { + "type": "hls", + "url": "https://bandung.staratv.id/hls/0/stream.m3u8", + "label": "Stara TV" + }, + { + "type": "hls", + "url": "https://5bf7b725107e5.streamlock.net/abtv/abtv/playlist.m3u8", + "label": "Astro Blitar TV" + }, + { + "type": "hls", + "url": "https://5bf7b725107e5.streamlock.net/bmstv/bmstv/playlist.m3u8", + "label": "BMS TV" + }, + { + "type": "hls", + "url": "https://private-streaming.rri.go.id/memfs/6f77c7b5-feb2-4935-9f89-e7e9fca0a54a_output_0.m3u8", + "label": "RRI Net" + }, + { + "type": "hls", + "url": "https://www.streaming.radartv.co.id/hls/test.m3u8", + "label": "Radar Lampung TV" + }, + { + "type": "hls", + "url": "https://restreamer.indonusa.id:8443/d5f4ad43-1b5a-4b0f-8bef-5b37224ed221.m3u8", + "label": "The Indonesia Channel" + } + ], + "Guinea": [ + { + "type": "hls", + "url": "https://kali.vdopanel.com:3119/hybrid/play.m3u8", + "label": "Afrik Info TV" + }, + { + "type": "hls", + "url": "https://edge13.vedge.infomaniak.com/livecast/ik:kalactv/chunklist_w280736538.m3u8", + "label": "Kalac TV" + } + ], + "Cameroon": [ + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-pmtv/pmtv/playlist.m3u8", + "label": "Panafrican Media TV" + }, + { + "type": "hls", + "url": "https://stream.az-multimedia.com:3325/live/foryoutvlive.m3u8", + "label": "For You TV" + }, + { + "type": "hls", + "url": "https://live1.acangroup.org:1929/publiclive/crtv_news/playlist.m3u8", + "label": "CRTV News" + }, + { + "type": "hls", + "url": "https://kemettv.cm/memfs/b6d60ea7-18b4-4afb-b84f-bd082ed7f74f.m3u8", + "label": "Kemet TV" + }, + { + "type": "hls", + "url": "https://streaming.lauradavemedia.com/ldm/index.m3u8", + "label": "Laura Dave Media TV" + }, + { + "type": "hls", + "url": "https://stream.it-innov.com/cam10tv/index.m3u8", + "label": "CAM 10 TV" + }, + { + "type": "hls", + "url": "https://10gb1.acangroup.org:1929/crtv/crtv_all/playlist.m3u8", + "label": "CRTV" + }, + { + "type": "hls", + "url": "https://stream.it-innov.com/tr24/index.m3u8", + "label": "TR24 Television" + } + ], + "United Kingdom": [ + { + "type": "hls", + "url": "https://amg01076-lightningintern-gbnewsau-samsungau-et7fz.amagi.tv/playlist/amg01076-lightningintern-gbnewsau-samsungau/playlist.m3u8", + "label": "GB News" + }, + { + "type": "hls", + "url": "https://vs-hls-push-ww-live.akamaized.net/x=4/i=urn:bbc:pips:service:bbc_news_channel_hd/mobile_wifi_main_hd_abr_v2.m3u8", + "label": "BBC News" + }, + { + "type": "hls", + "url": "https://distro001-gb-hls1-prd.delivery.skycdp.com/easel_cdn/ngrp:weather_loop.stream_all/playlist.m3u8", + "label": "Sky News Weather" + }, + { + "type": "hls", + "url": "https://candlelightmedia-sparklightlove-4-us.roku.wurl.tv/playlist.m3u8", + "label": "Spark TV" + }, + { + "type": "hls", + "url": "https://5caf24a595d94.streamlock.net:1937/pvyugfkzkc/pvyugfkzkc/playlist.m3u8", + "label": "Canaf54 TV" + }, + { + "type": "hls", + "url": "https://488f4ce4.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/TEctZ2JfVGFsa19ITFM/playlist.m3u8", + "label": "TalkTV" + }, + { + "type": "hls", + "url": "https://amg01753-narrativeentert-popkids-lggb-xyy5k.amagi.tv/ts-eu-w1-n2/playlist/amg01753-narrativeentert-popkids-lggb/playlist.m3u8", + "label": "Pop" + }, + { + "type": "hls", + "url": "https://app.ncare.live/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/chsukoff.stream/playlist.m3u8", + "label": "Channel S" + }, + { + "type": "hls", + "url": "https://kjhls.wns.live/hls/stream.m3u8", + "label": "Kanal Jadid" + }, + { + "type": "hls", + "url": "https://hls.autopo.st/hls/britasiatv/index.m3u8", + "label": "Brit Asia TV" + }, + { + "type": "hls", + "url": "https://setarehhls.wns.live/hls/stream.m3u8", + "label": "Setareh TV" + }, + { + "type": "hls", + "url": "https://dash2.antik.sk/live/test_ectv_hd_1200/playlist.m3u8", + "label": "English Club TV" + }, + { + "type": "hls", + "url": "https://stream.berosat.live/hls/der-tv/der-tv.m3u8", + "label": "Der TV" + }, + { + "type": "hls", + "url": "https://l5.cloudskep.com/hellenictv/htv/playlist.m3u8", + "label": "Hellenic TV" + }, + { + "type": "hls", + "url": "https://mn-nl.mncdn.com/alhiwar_live/smil:alhiwar.smil/playlist.m3u8", + "label": "Al Hiwar TV" + }, + { + "type": "hls", + "url": "https://5a0e89631aa14.streamlock.net/live/LatestTelevision/playlist.m3u8", + "label": "Latest TV" + }, + { + "type": "hls", + "url": "https://halalondon-live.ercdn.net/halalondon/halalondon.m3u8", + "label": "Hala London" + }, + { + "type": "hls", + "url": "https://cd198.anystream.uk:9092/iqapp/t5kb86tv/playlist.m3u8", + "label": "Takbeer TV" + }, + { + "type": "hls", + "url": "https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg00426-littledotstudio-realwildnz-samsungnz/playlist.m3u8", + "label": "Real Wild" + }, + { + "type": "hls", + "url": "https://cd198.anystream.uk:9092/iqapp/d33ntv/playlist.m3u8", + "label": "Deen TV" + }, + { + "type": "hls", + "url": "https://mumt06.tangotv.in/qYyB8fXVSANGATTV/index.m3u8", + "label": "Sangat TV" + }, + { + "type": "hls", + "url": "https://live-anandtv.anandmedia.net/anandtvapp/anandtv/index.m3u8", + "label": "Anand TV" + }, + { + "type": "hls", + "url": "https://v2.uk.live.s4c-cdn.co.uk/out/v1/S4C/UK_TX/uk_live/uk-tx-hls.m3u8", + "label": "S4C" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/Totalmusic_80s/SA_LIVE_hls_enc/master.m3u8", + "label": "Totalmusic 80s" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/Totalmusic_Dance/SA_LIVE_hls_enc/master.m3u8", + "label": "Totalmusic Dance" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/Totalmusic_00s/SA_LIVE_hls_enc/master.m3u8", + "label": "Totalmusic 2000s" + }, + { + "type": "hls", + "url": "https://e85541db4ae943d9b5a09477d6b1d8ab.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/RakutenTV-eu_Jail/playlist.m3u8", + "label": "Jail" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/Totalmusic/SA_LIVE_hls_enc/master.m3u8", + "label": "Totalmusic" + }, + { + "type": "hls", + "url": "https://hnc-free-viewlift.amagi.tv/HNC_AUSTRALIA.m3u8", + "label": "Horse & Country TV" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/Totalmusic_Concerts/SA_LIVE_hls_enc/master.m3u8", + "label": "Totalmusic Concerts" + }, + { + "type": "hls", + "url": "https://s2.tvdatta.com:3307/hybrid/play.m3u8", + "label": "FMTV" + }, + { + "type": "hls", + "url": "https://lds-wonder-samsungau.amagi.tv/playlist.m3u8", + "label": "Wonder" + }, + { + "type": "hls", + "url": "https://7689426c.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/U2Ftc3VuZy1mcl9aZWVNYWdpY19ITFM/playlist.m3u8", + "label": "Zee One" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/ENT_Family/SA_LIVE_hls_enc/master.m3u8", + "label": "ENT Family" + }, + { + "type": "hls", + "url": "https://lightning-now70s-rakuten.amagi.tv/hls/amagi_hls_data_rakutenAA-lightning-now70s-rakuten/CDN/playlist.m3u8", + "label": "Now 70s" + }, + { + "type": "hls", + "url": "https://cdn.global.elektamedia.com/live/c7eds/ENT_Channel/SA_LIVE_hls_enc/master.m3u8", + "label": "ENT Channel" + }, + { + "type": "hls", + "url": "https://lightning-now80s-rakuten.amagi.tv/hls/amagi_hls_data_rakutenAA-lightning-now80s-rakuten/CDN/playlist.m3u8", + "label": "Now 80s" + }, + { + "type": "hls", + "url": "https://lightning-now90s-rakuten.amagi.tv/hls/amagi_hls_data_rakutenAA-lightning-now90s-rakuten/CDN/playlist.m3u8", + "label": "NOW Rock" + }, + { + "type": "hls", + "url": "https://chlivemta.akamaized.net/hls/live/2010555/mtaafrica2/playlist.m3u8", + "label": "MTA5 Africa" + }, + { + "type": "hls", + "url": "https://amg01076-amg01076c19-rakuten-gb-8653.playouts.now.amagi.tv/playlist/amg01076-lightning-now90s00s-rakutengb/playlist.m3u8", + "label": "Now 90s00s" + } + ], + "El Salvador": [ + { + "type": "hls", + "url": "https://stream.giostreaming.app/rtvcanal57/rtvcanal57.m3u8", + "label": "RTV Canal 57" + }, + { + "type": "hls", + "url": "https://videostream.shockmedia.com.ar/hls/canalsoltv/canalsoltv.m3u8", + "label": "SolTV (SV)" + }, + { + "type": "hls", + "url": "https://mgvchannel21-ioriver-cdn.encoders.immergo.tv/master.m3u8", + "label": "Megavision Canal 21" + }, + { + "type": "hls", + "url": "https://cloud2.streaminglivehd.com:2020/hls/8036/8036.m3u8", + "label": "Canal 3 Impresionante" + }, + { + "type": "hls", + "url": "https://stream.giostreaming.app/canal11/canal11.m3u8", + "label": "Canal 11 TuTV" + }, + { + "type": "hls", + "url": "https://5ca3e84a76d30.streamlock.net/tves/videotves/playlist.m3u8", + "label": "Canal 10 (SV)" + }, + { + "type": "hls", + "url": "https://stream.ontvmx.com/ontv/CNMLXR0Z6FPtGdjcI4/playlist.m3u8", + "label": "Canal TRV" + }, + { + "type": "hls", + "url": "https://videoserver.tmcreativos.com:19360/abbftuhxxs/abbftuhxxs.m3u8", + "label": "Josue TV" + }, + { + "type": "hls", + "url": "https://2nbyj587d53k-hls-live.5centscdn.com/09/25b94ec89b2aa708c3c4ad0014b09845.sdp/playlist.m3u8", + "label": "JFV TV" + }, + { + "type": "hls", + "url": "https://serversv.com:8080/hls/tvgetsemani.m3u8", + "label": "TV Getsemani" + }, + { + "type": "hls", + "url": "https://5d32e2b9b7eed.streamlock.net:4443/ectv/ectv/playlist.m3u8", + "label": "El Camino TV" + }, + { + "type": "hls", + "url": "https://5fc584f3f19c9.streamlock.net/agape/smil:agape.smil/playlist.m3u8", + "label": "Agape TV" + }, + { + "type": "hls", + "url": "https://6110f70ea8d0e.streamlock.net/1838/1838/playlist.m3u8", + "label": "TV Leon de Juda" + }, + { + "type": "hls", + "url": "https://radiocret.net:8082/hls/tvcret.m3u8", + "label": "TV CRET" + } + ], + "Lebanon": [ + { + "type": "hls", + "url": "https://cdn.catiacast.video/abr/9436b5ab3c1171ab04a59af11951292f/playlist.m3u8", + "label": "UNews" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/redtvlive/redtv.smil/playlist.m3u8", + "label": "Red TV Lebanon" + }, + { + "type": "hls", + "url": "https://mdnlv.cdn.octivid.com/almdn/smil:mpegts.stream.smil/playlist.m3u8", + "label": "Al Mayadeen TV" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/vdltvlive/vdltv.smil/playlist.m3u8", + "label": "Voice of Lebanon" + }, + { + "type": "hls", + "url": "https://edge.fastpublish.me/live/index.m3u8", + "label": "Al-Manar" + }, + { + "type": "hls", + "url": "https://cdn.streamlane.tv/hls/ltv/master.m3u8", + "label": "Lana TV" + }, + { + "type": "hls", + "url": "https://hms.pfs.gdn/hms/v1/broadcast/hlmvmp2hfriode891/playlist.m3u8", + "label": "mfm" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/nour4satlive/livestream/playlist.m3u8", + "label": "Noursat" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/nour8satlive/livestream/playlist.m3u8", + "label": "Nour Al Sharq" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/alimanlive/imantv.smil/playlist.m3u8", + "label": "Al-Iman TV" + }, + { + "type": "hls", + "url": "https://cdn.streamlane.tv/hls/aghanitv/index.m3u8", + "label": "Aghani Aghani TV" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/nour1satlive/livestream/playlist.m3u8", + "label": "Nour Al Koddass" + }, + { + "type": "hls", + "url": "https://652930de05533.streamlock.net/live/ngrp:livestream_all/playlist.m3u8", + "label": "Charity TV" + } + ], + "Egypt": [ + { + "type": "hls", + "url": "https://eazyvwqssi.erbvr.com/alghadtv/alghadtv.m3u8", + "label": "Al Ghad TV" + }, + { + "type": "hls", + "url": "https://rp.tactivemedia.com/watantv_source/live/playlist.m3u8", + "label": "Watan TV" + }, + { + "type": "hls", + "url": "https://nogoumtv.nrpstream.com/hls/stream.m3u8", + "label": "NogoumFMTV" + }, + { + "type": "hls", + "url": "https://ctv.icopts.app/CTV/index.fmp4.m3u8", + "label": "Coptic TV" + }, + { + "type": "hls", + "url": "https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8", + "label": "Aghapy TV" + }, + { + "type": "hls", + "url": "https://cdn.bestream.io:19360/elfaro1/elfaro1.m3u8", + "label": "Huda TV" + }, + { + "type": "hls", + "url": "https://9090video.mobtada.com/hls/stream.m3u8", + "label": "El Radio 9090 FM" + } + ], + "Bulgaria": [ + { + "type": "hls", + "url": "https://tv.tvsb.bg/112.m3u8", + "label": "TV Spravedliva Bulgariya" + }, + { + "type": "hls", + "url": "https://shift03.isp.bg/BNT1_HD/index.m3u8", + "label": "BNT 1" + }, + { + "type": "hls", + "url": "https://shift03.isp.bg/RodinaTV/index.m3u8", + "label": "TV Rodina" + }, + { + "type": "hls", + "url": "https://streamer103.neterra.tv/tiankov-orient/live.m3u8", + "label": "Tiankov Orient Folk" + }, + { + "type": "hls", + "url": "https://streamer103.neterra.tv/tiankov-folk/live.m3u8", + "label": "Tiankov Folk" + }, + { + "type": "hls", + "url": "https://streamer103.neterra.tv/travel/live.m3u8", + "label": "Travel TV" + }, + { + "type": "hls", + "url": "https://restr2.bgtv.bg/agro/hls/agro.m3u8", + "label": "Agro TV" + }, + { + "type": "hls", + "url": "https://bss1.neterra.tv/magictv/magictv.m3u8", + "label": "Magic TV" + }, + { + "type": "hls", + "url": "https://streamer103.neterra.tv/thisisbulgaria/live.m3u8", + "label": "This is Bulgaria HD" + }, + { + "type": "hls", + "url": "https://streamer1.streamhost.org/salive/GMIlcbgM/playlist.m3u8", + "label": "Light Channel" + }, + { + "type": "hls", + "url": "https://bss1.neterra.tv/thevoice/thevoice.m3u8", + "label": "The Voice" + }, + { + "type": "hls", + "url": "https://cdn2.invivo.bg/codehealth_test/index.m3u8", + "label": "Code Health TV" + }, + { + "type": "hls", + "url": "https://tv.city.bg/play/tshls/citytv/index.m3u8", + "label": "City TV" + } + ], + "United Arab Emirates": [ + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/ALYAUM_TV/HLS/ALYAUM_TV.m3u8", + "label": "Al Yaum TV" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/alwoustalive/alwoustatv.smil/playlist.m3u8", + "label": "Al Wousta TV" + }, + { + "type": "hls", + "url": "https://amg01480-alshallalfze-alshallal-ono-q0hfg.amagi.tv/playlist.m3u8", + "label": "Al Shallal TV" + }, + { + "type": "hls", + "url": "https://streamer3.premio.link/alqamar/playlist.m3u8", + "label": "Al Qamar TV" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/kablatvlive/kabtv1.smil/playlist.m3u8", + "label": "Al Sharqiya Min Kabla" + }, + { + "type": "hls", + "url": "https://cdn1.logichost.in/ajmantv/live/playlist.m3u8", + "label": "Ajman TV" + }, + { + "type": "hls", + "url": "https://cdn.bestream.io:19360/elfaro4/elfaro4.m3u8", + "label": "Nour TV" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/smcquranlive/quranradiolive/playlist.m3u8", + "label": "Sharjah Radio Quran" + }, + { + "type": "hls", + "url": "https://pmchls.wns.live/hls/stream.m3u8", + "label": "PMC" + }, + { + "type": "hls", + "url": "https://pmcrohls.wns.live/hls/stream.m3u8", + "label": "PMC Royale" + }, + { + "type": "hls", + "url": "https://dbbv9umqcd7cs.cloudfront.net/out/v1/db15b75c3cc0400c91961468d6a232ac/index.m3u8", + "label": "MBC FM" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/pulse95live/pulse96/playlist.m3u8", + "label": "Pulse95 Radio" + }, + { + "type": "hls", + "url": "https://hls.mbcpersia.live/hls/stream.m3u8", + "label": "MBC Persia" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/smc2live/smc2tv.smil/playlist.m3u8", + "label": "Sharjah 2" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/smcradiolive/smcradiolive/playlist.m3u8", + "label": "Sharjah Radio" + }, + { + "type": "hls", + "url": "https://svs.itworkscdn.net/smcwatarlive/smcwatar/playlist.m3u8", + "label": "Watar Radio" + }, + { + "type": "hls", + "url": "https://dzkyvlfyge.erbvr.com/PeaceTvEnglish/index.m3u8", + "label": "Peace TV English" + }, + { + "type": "hls", + "url": "https://dzkyvlfyge.erbvr.com/PeaceTvBangla/index.m3u8", + "label": "Peace TV Bangla" + } + ], + "Algeria": [ + { + "type": "hls", + "url": "https://cdn.live.easybroadcast.io/abr_corp/66_al24_u4yga6h/corp/66_al24_u4yga6h_240p/chunks.m3u8", + "label": "AL24 News" + } + ], + "Qatar": [ + { + "type": "hls", + "url": "https://live-hls-apps-aja-fa.getaj.net/AJA/01.m3u8", + "label": "Al Jazeera" + }, + { + "type": "hls", + "url": "https://live-hls-apps-ajm-fa.getaj.net/AJM/index.m3u8", + "label": "Al Jazeera Mubasher" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/alaraby1live/alaraby_abr/playlist.m3u8", + "label": "Al Araby TV" + }, + { + "type": "hls", + "url": "https://live-hls-apps-ajm2-fa.getaj.net/AJM2/index.m3u8", + "label": "Al Jazeera Mubasher Broadcast 2" + }, + { + "type": "hls", + "url": "https://googlecdn1.alkassdigital.net/livestream/qbc4/main.m3u8", + "label": "QBC" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/qtv2live/qtv2.smil/playlist.m3u8", + "label": "Qatar Television 2" + }, + { + "type": "hls", + "url": "https://alrayyancdn.vidgyor.com/pub-noalrayy3pwz0l/liveabr/playlist_dvr.m3u8", + "label": "Al Rayyan TV" + }, + { + "type": "hls", + "url": "https://alrayyancdn.vidgyor.com/pub-nooldraybinbdh/liveabr/playlist_dvr.m3u8", + "label": "Al Rayyan Old TV" + }, + { + "type": "hls", + "url": "https://bucharest.zeuscdn724.com/lb0/CH-AL-MA/index.m3u8", + "label": "Al Maaref TV" + }, + { + "type": "hls", + "url": "https://qatartv.akamaized.net/hls/live/20000612/qtvquran/master.m3u8", + "label": "Qatar TV The Holy Quran" + } + ], + "Albania": [ + { + "type": "hls", + "url": "https://live1.mediadesk.al/oranews.m3u8", + "label": "Ora News" + }, + { + "type": "hls", + "url": "https://stream.syritv.al/live/syritv/playlist.m3u8", + "label": "Syri" + }, + { + "type": "hls", + "url": "https://live1.mediadesk.al/cnatvlive.m3u8", + "label": "CNA (AL)" + }, + { + "type": "hls", + "url": "https://tv.balkanweb.com/news24/livestream/playlist.m3u8", + "label": "News 24" + }, + { + "type": "hls", + "url": "https://protokolldns.xyz/ntv.l.i.v.e5547892023/index.m3u8", + "label": "ntv (AL)" + }, + { + "type": "hls", + "url": "https://zjarr.future.al/hls/playlist.m3u8", + "label": "Zjarr TV" + }, + { + "type": "hls", + "url": "https://protokolldns.xyz/johaniterweb44547dsd/index.m3u8", + "label": "TV Johaniter" + }, + { + "type": "hls", + "url": "https://live.prostream.al/al/smil:tropojatv.smil/playlist.m3u8", + "label": "Tropoja Televizion" + } + ], + "Bolivia": [ + { + "type": "hls", + "url": "https://edge.enhdtv.com/8190/index.m3u8", + "label": "UMSA TVU LP" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/8192/index.m3u8", + "label": "Unifranz" + }, + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/ceacom/index.m3u8", + "label": "CEACOM TV" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/teleestrella/teleestrella/playlist.m3u8", + "label": "TL Estrella" + }, + { + "type": "hls", + "url": "https://tv.centaurychile.com/interactiva/streams/KIgB6QvZ0L8XaSLd3211668845221245.m3u8", + "label": "Red Uno" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/telefehd/telefehd/playlist.m3u8", + "label": "Tele Fe Bolivia" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/asiesmipueblo/asiesmipueblo/playlist.m3u8", + "label": "Red Rubi" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/vostv/vostv/playlist.m3u8", + "label": "Vos TV" + }, + { + "type": "hls", + "url": "https://ares.disfrutaenlared.com:1936/redcctv/redcctv/playlist.m3u8", + "label": "Red CCTV" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/8214/index.m3u8", + "label": "TVU Sucre" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/8026/index.m3u8", + "label": "UMSA TVU Internacional" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/8064/index.m3u8", + "label": "TransMedia" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/faptv/index.m3u8", + "label": "FAP TV" + }, + { + "type": "hls", + "url": "https://tv.centaurychile.com/imperial/streams/EnCyCiwNLsqEQ2kv2852222720686498.m3u8", + "label": "Imperial TV" + }, + { + "type": "hls", + "url": "https://tv2.bitstreaming.net:3235/multi_live/play.m3u8", + "label": "F10 HD" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/tele6/playlist.m3u8", + "label": "TELE 6" + }, + { + "type": "hls", + "url": "https://tv3.bitstreaming.net:3680/live/zuracatvlive.m3u8", + "label": "Zuraca TV" + }, + { + "type": "hls", + "url": "https://master.tucableip.com/eldebertv/index.m3u8", + "label": "EL DEBER" + }, + { + "type": "hls", + "url": "https://st.deltaboliviainstitucion.org:3778/hybrid/play.m3u8", + "label": "Delta TV" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/ok2026/playlist.m3u8", + "label": "Sucremanta TV" + }, + { + "type": "hls", + "url": "https://giatv.bozztv.com/giatv/giatv-PTVonLINE/PTVonLINE/playlist.m3u8", + "label": "PTV (BO)" + }, + { + "type": "hls", + "url": "https://tv.bitstreaming.net:3348/live/gigavisionlive.m3u8", + "label": "Gigavision" + }, + { + "type": "hls", + "url": "https://2-fss-2.streamhoster.com/pl_120/200226-1449024-1/playlist.m3u8", + "label": "RedADvenir TV" + }, + { + "type": "hls", + "url": "https://tv.mediacp.eu:8081/coraltv/index.m3u8", + "label": "Coral TV" + }, + { + "type": "hls", + "url": "https://castv10.plugstreaming.com:19360/redtv/redtv.m3u8", + "label": "TV Latina" + }, + { + "type": "hls", + "url": "https://master.tucableip.com/dmoda/index.m3u8", + "label": "Dmoda Channel" + }, + { + "type": "hls", + "url": "https://5fe2654d6127d.streamlock.net/cadenaa/videocadenaa/playlist.m3u8", + "label": "Cadena A" + }, + { + "type": "hls", + "url": "https://tvstream.upea.bo/hls/oSs0jSWumTFIIVY97559.m3u8", + "label": "UPEA TV" + }, + { + "type": "hls", + "url": "https://stv2.boliviaplay.com.bo/hls/stream.m3u8", + "label": "Amitel TV" + }, + { + "type": "hls", + "url": "https://rtp.noxun.net/hls720/stream3.m3u8", + "label": "RTP" + }, + { + "type": "hls", + "url": "https://video01.brascast.com/juan6318/juan6318/playlist.m3u8", + "label": "TDT Multimedia" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/tvoff/index.m3u8", + "label": "TV OFF" + }, + { + "type": "hls", + "url": "https://edge.enhdtv.com/8054/index.m3u8", + "label": "Radio Universitaria San Andres" + }, + { + "type": "hls", + "url": "https://s3.tvdatta.com:3846/live/poderdedioslive.m3u8", + "label": "Poder de Dios TV" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/confirmatv/playlist.m3u8", + "label": "Alegria TV" + }, + { + "type": "hls", + "url": "https://master.tucableip.com/audiokisstv/index.m3u8", + "label": "Audiokiss" + }, + { + "type": "hls", + "url": "https://ares.disfrutaenlared.com:1936/megatv/megatv/playlist.m3u8", + "label": "Radio Mega TV Amazonia" + }, + { + "type": "hls", + "url": "https://ares.disfrutaenlared.com:1936/clasica/clasica/playlist.m3u8", + "label": "Radio Clasica TV" + }, + { + "type": "hls", + "url": "https://azura2.bitstreaming.net/hls/kollasuyo3/live.m3u8", + "label": "Radio Kollasuyo" + }, + { + "type": "hls", + "url": "https://streamlov.alsolnet.com/grupocentrobo/live/playlist.m3u8", + "label": "Radio Centro" + } + ], + "Colombia": [ + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/pyctelevision/playlist.m3u8", + "label": "Canal PyC" + }, + { + "type": "hls", + "url": "https://backupmaxmedia.hvmultiplay.com/hls/stream2/momento24.m3u8", + "label": "Momento24" + }, + { + "type": "hls", + "url": "https://inforedvos.lcdn.claro.net.co/Content/HLS_HLS_DIR/Live/channel(REDMASHDWEB)/master.m3u8", + "label": "Red+" + }, + { + "type": "hls", + "url": "https://play.cdn.enetres.net/621B146D29C541AFB1507809F038F471021/021/playlist.m3u8", + "label": "Noticiero 90 Minutos" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/cncbuga.m3u8", + "label": "CNC Bugavision" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/cncvalledupar1/playlist.m3u8", + "label": "CNC Valledupar" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/telesangil/playlist.m3u8", + "label": "Telesangil" + }, + { + "type": "hls", + "url": "https://live.arnoproducciones.com/hls/norte.m3u8", + "label": "Mas Norte TV" + }, + { + "type": "hls", + "url": "https://vs20.live.opencaster.com/panche_3c70d368/index.m3u8", + "label": "Panche Television" + }, + { + "type": "hls", + "url": "https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8", + "label": "Senal Colombia" + }, + { + "type": "hls", + "url": "https://vs20.live.opencaster.com/soonatv_a1a564a9/index.m3u8", + "label": "Soona TV" + }, + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/Cosmovisión/playlist.m3u8", + "label": "Cosmovision" + }, + { + "type": "hls", + "url": "https://vs20.live.opencaster.com/nexotv_7576198a/index.m3u8", + "label": "Nexo TV" + }, + { + "type": "hls", + "url": "https://stmv1.voxtvhd.com.br/alpavision/alpavision/playlist.m3u8", + "label": "Canal 2 Alpavision Neiva" + }, + { + "type": "hls", + "url": "https://stmv3.voxtvhd.com.br/conex2/conex2/playlist.m3u8", + "label": "Eduvision" + }, + { + "type": "hls", + "url": "https://stmv2.voxtvhd.com.br/marsella/marsella/playlist.m3u8", + "label": "Marsella TV" + }, + { + "type": "hls", + "url": "https://5ab772334c39c.streamlock.net/live-teleislas/teleislas/playlist.m3u8", + "label": "Teleislas" + }, + { + "type": "hls", + "url": "https://live.amelbatv.co:81/telemocoalive/index.m3u8", + "label": "Tele Mocoa Canal 10" + }, + { + "type": "hls", + "url": "https://streaming.rtvc.gov.co/TV_CanalInstitucional_live/smil:live.smil/playlist.m3u8", + "label": "Canal Institucional" + }, + { + "type": "hls", + "url": "https://us.streaminghd.cl/suramtv/index.m3u8", + "label": "Suram TV" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/telequindio/playlist.m3u8", + "label": "TeleQuindio" + }, + { + "type": "hls", + "url": "https://vs20.live.opencaster.com/canalchd2025_8d99626c/index.m3u8", + "label": "Canal CHD" + }, + { + "type": "hls", + "url": "https://sistemastr.tropicalmoonmedia.com:443/live/9E495C5FDA503D7F71037F2D2C5D3FA3/16.m3u8", + "label": "StreamForce 360" + }, + { + "type": "hls", + "url": "https://sistemastr.tropicalmoonmedia.com/live/2C7CA6CECC9B8F8C3A07315FDA110936/21.m3u8", + "label": "NSTV" + }, + { + "type": "hls", + "url": "https://live.amelbatv.co:81/cnctulualive/index.fmp4.m3u8", + "label": "CNC Tulua" + }, + { + "type": "hls", + "url": "https://live.amelbatv.co:81/teleopita/index.fmp4.m3u8", + "label": "TV3 La Plata" + }, + { + "type": "hls", + "url": "https://play.cdn.enetres.net/6E5C615AA5FF4123ACAF0DAB57B7B8DC021/022/playlist.m3u8", + "label": "Telepacifico" + }, + { + "type": "hls", + "url": "https://canal.aupurtv.co/live/stream/index.m3u8", + "label": "Aupur Television" + }, + { + "type": "hls", + "url": "https://cloudvideo.servers10.com:8081/latinchaneltv/index.m3u8", + "label": "CNC Pereira" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/visiondorada.m3u8", + "label": "BUM Television" + }, + { + "type": "hls", + "url": "https://viewhn.com/amagatelevision/sdfUYWKegHKRPpSirG/playlist.m3u8", + "label": "Amaga Television" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/calimatv.m3u8", + "label": "Canal Calima TV" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/canal8tv.m3u8", + "label": "Canal 8 TV+" + }, + { + "type": "hls", + "url": "https://tv.kaludecolombia.com/memfs/d71c0104-4752-4690-bdbf-19aa849da6c4.m3u8", + "label": "Kalu TV" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/nets.m3u8", + "label": "Canal Nets" + }, + { + "type": "hls", + "url": "https://stmv4.voxtvhd.com.br/canicatv/canicatv/playlist.m3u8", + "label": "Canica TV" + }, + { + "type": "hls", + "url": "https://stmv2.voxtvhd.com.br/telefamilia/telefamilia/playlist.m3u8", + "label": "Canal Telefamilia" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/elmundodelcampo.m3u8", + "label": "El Mundo del Campo" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/masmusica.m3u8", + "label": "MasMusica FM" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/lamoradatv.m3u8", + "label": "La Morada Radio TV" + } + ], + "Honduras": [ + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/rcv/rcv/playlist.m3u8", + "label": "RCV TV" + }, + { + "type": "hls", + "url": "https://streaming.icndigital.com/live_output/icn_live_stream_1.m3u8", + "label": "ICN Digital" + }, + { + "type": "hls", + "url": "https://amixtv.com:8081/unetvhn/tracks-v1a1/mono.m3u8", + "label": "UNE TV" + }, + { + "type": "hls", + "url": "https://servilive.com:3508/stream/play.m3u8", + "label": "Buendia TV" + }, + { + "type": "hls", + "url": "https://live.streamhch.com/live/streams/hch1.m3u8", + "label": "HCH" + }, + { + "type": "hls", + "url": "https://lencatelevision.com/hls/stream.m3u8", + "label": "Lenca TV" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/atv/index.m3u8", + "label": "Alsacias Television" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/tvcopan/index.m3u8", + "label": "TV Copan" + }, + { + "type": "hls", + "url": "https://amixtv.com:8081/talangavision/index.m3u8", + "label": "Canal 7 Talanga Vision" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/telemas/index.m3u8", + "label": "Telemas (HN)" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-canal9/canal9/chunks.m3u8", + "label": "TeleDanli" + }, + { + "type": "hls", + "url": "https://media.streambrothers.com:19360/8308/8308.m3u8", + "label": "Waldivision Internacional" + }, + { + "type": "hls", + "url": "https://stream.radiosmundiales.com/hls/globotvhonduras/globotvhonduras.m3u8", + "label": "Globo TV" + }, + { + "type": "hls", + "url": "https://5e85d90130e77.streamlock.net/6052/6052/playlist.m3u8", + "label": "Campus TV" + }, + { + "type": "hls", + "url": "https://stmv2.srvif.com/puringla/puringla/playlist.m3u8", + "label": "Puringla TV" + }, + { + "type": "hls", + "url": "https://5e85d90130e77.streamlock.net/6028/6028/playlist.m3u8", + "label": "Television Metropolis 19.1" + }, + { + "type": "hls", + "url": "https://viewhn.com/canal30/live/playlist.m3u8", + "label": "Television Olanchana" + }, + { + "type": "hls", + "url": "https://tv.bitstreaming.net:8443/live/guayapetv.m3u8", + "label": "Guayape TV" + }, + { + "type": "hls", + "url": "https://viewhn.com/chtv/live/playlist.m3u8", + "label": "CHTV" + }, + { + "type": "hls", + "url": "https://cloud2.streaminglivehd.com:1936/8032/8032/playlist.m3u8", + "label": "TV Centro HD" + }, + { + "type": "hls", + "url": "https://tv.webmedialive.com/sulatv/live/playlist.m3u8", + "label": "Sula TV" + }, + { + "type": "hls", + "url": "https://teleceiba.com/stream/tlcb720.m3u8", + "label": "Teleceiba" + }, + { + "type": "hls", + "url": "https://cdn4.streamgato.us:3595/live/litoralhdlive.m3u8", + "label": "Litoral Atlantico HD" + }, + { + "type": "hls", + "url": "https://mdstrm.com/live-stream-playlist/65a1d2fd7e7f14355550d570.m3u8", + "label": "Azteca Honduras" + }, + { + "type": "hls", + "url": "https://streamingcws30.com/suyapa/videosuyapa/playlist.m3u8", + "label": "STVE Telebasica" + }, + { + "type": "hls", + "url": "https://tv.webmedialive.com/azatvhn/live/playlist.m3u8", + "label": "AZA TV HD" + }, + { + "type": "hls", + "url": "https://redirector.rudo.video/hls-video/c54ac2799874375c81c1672abb700870537c5223/canal11hn/canal11hn.smil/playlist.m3u8", + "label": "Canal 11" + }, + { + "type": "hls", + "url": "https://stmv2.srvif.com/rsvhonduras/rsvhonduras/playlist.m3u8", + "label": "RSV Honduras" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/tve/index.m3u8", + "label": "TV Estrella" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/metrotv/index.m3u8", + "label": "Metro TV" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/top102/top102/playlist.m3u8", + "label": "La Top 102.9" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/kerussotv/index.m3u8", + "label": "Kerusso TV" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/cholutecatv/index.m3u8", + "label": "Choluteca TV" + }, + { + "type": "hls", + "url": "https://tv.webmedialive.com/fiestatv/live/playlist.m3u8", + "label": "Radio Fiesta de Milagros TV" + }, + { + "type": "hls", + "url": "https://5e85d90130e77.streamlock.net/6010/ngrp:6010_all/playlist.m3u8", + "label": "Ebenezer TV" + }, + { + "type": "hls", + "url": "https://tv.webmedialive.com/unciontv/live/playlist.m3u8", + "label": "Dios Tv Talanga" + }, + { + "type": "hls", + "url": "https://www.idealfm104-7.com/hls/0/stream.m3u8", + "label": "Radio Ideal" + }, + { + "type": "hls", + "url": "https://tv.webmedialive.com/jbn_live/enlace/playlist.m3u8", + "label": "JBN TV" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/diostevetv/index.m3u8", + "label": "Dios Te Ve" + }, + { + "type": "hls", + "url": "https://streamingcws30.com/suyapa2/videosuyapa2/playlist.m3u8", + "label": "Suyapa TV" + } + ], + "Jordan": [ + { + "type": "hls", + "url": "https://jmc-live.ercdn.net/altaghier/altaghier.m3u8", + "label": "Altaghier TV" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Archive/playlist.m3u8", + "label": "Jordan Archive" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Tourism/playlist.m3u8", + "label": "Jordan Tourism" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Drama/playlist.m3u8", + "label": "Jordan Drama" + }, + { + "type": "hls", + "url": "https://jrtv-live.ercdn.net/jordanhd/jordanhd.m3u8", + "label": "Jordan TV" + }, + { + "type": "hls", + "url": "https://ammantv-live.ercdn.net/ammantvhd/ammantvhd.m3u8", + "label": "Amman TV" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/cooking/playlist.m3u8", + "label": "Jordan Kitchen" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Song/playlist.m3u8", + "label": "Jordan Songs" + }, + { + "type": "hls", + "url": "https://playlist.fasttvcdn.com/pl/cc0blorawy1ibohhrupraa/Comedy/playlist.m3u8", + "label": "Jordan Comedy" + } + ], + "Oman": [ + { + "type": "hls", + "url": "https://partwota.cdn.mgmlcdn.com/omlive/smil:omlive.stream.smil/chunklist.m3u8", + "label": "Oman TV Mubashir" + }, + { + "type": "hls", + "url": "https://partwota.cdn.mgmlcdn.com/omcultural/smil:omcultural.stream.smil/chunklist.m3u8", + "label": "Oman TV Cultural" + }, + { + "type": "hls", + "url": "https://partneta.cdn.mgmlcdn.com/omantv/smil:omantv.stream.smil/chunklist.m3u8", + "label": "Oman TV" + }, + { + "type": "hls", + "url": "https://jmc-live.ercdn.net/alistiqama/alistiqama.m3u8", + "label": "Alistiqama TV" + } + ], + "Palestine": [ + { + "type": "hls", + "url": "https://live.paltodaytv.com/paltv/live/playlist.m3u8", + "label": "Palestine Today" + }, + { + "type": "hls", + "url": "https://streaming.najah.edu:8443/hls/AlNajah.m3u8", + "label": "Al Najah News" + }, + { + "type": "hls", + "url": "https://htvmada.mada.ps:4443/maannews/index.m3u8", + "label": "Ma'an TV" + }, + { + "type": "hls", + "url": "https://43869de4e1a0d641.servers.dvcloud.tv/hls/al_aqsa_channel/6udfi7v8a3eof6nlps6e9ovfrs65c7l7.m3u8", + "label": "Seraj TV" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/palestinian_satellite_channel/hls_roku/palestinian_satellite_channel.m3u8", + "label": "Palestine Satellite Channel" + }, + { + "type": "hls", + "url": "https://htvmada.mada.ps:4443/wattan/index.m3u8", + "label": "Wattan TV" + }, + { + "type": "hls", + "url": "https://streaming.zaytonatube.com:8081/AlMadinatv/almadina21/index.m3u8", + "label": "Al Madina" + }, + { + "type": "hls", + "url": "https://htvint.mada.ps/orient/index.m3u8", + "label": "Watar TV" + }, + { + "type": "hls", + "url": "https://mn-nl.mncdn.com/palabroad/live/playlist.m3u8", + "label": "Rajeen TV" + }, + { + "type": "hls", + "url": "https://rp.tactivemedia.com/palestiniantv_source/live/playlist.m3u8", + "label": "Falastini TV" + }, + { + "type": "hls", + "url": "https://streaming.zaytonatube.com:8081/radioalbalad/radioalbalad/index.m3u8", + "label": "Radio Albalad TV" + }, + { + "type": "hls", + "url": "https://streaming.zaytonatube.com:8081/ShababFM/shabab/index.m3u8", + "label": "Shabab FM" + } + ], + "Libya": [ + { + "type": "hls", + "url": "https://starmenajo.com/hls/almasar/index.m3u8", + "label": "Al Masar TV" + }, + { + "type": "hls", + "url": "https://alwasattv.hibridcdn.net/alwasattv/alwasat_abr/playlist.m3u8", + "label": "Wasat TV" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/libya_al_watanya/hls_roku/index.m3u8", + "label": "Libya Al Wataniya" + }, + { + "type": "hls", + "url": "https://kilolink.pulsarstarsolutions.com/live/smil:tanasuhtv.smil/manifest.m3u8", + "label": "Tanasuh TV" + } + ], + "Yemen": [ + { + "type": "hls", + "url": "https://live2.cdnbridge.tv/AlmasirahMubasher/Mubasher_All/playlist.m3u8", + "label": "Al Masirah Mubacher" + }, + { + "type": "hls", + "url": "https://live.cdnbridge.tv/Almasirah/Almasirah_all/playlist.m3u8", + "label": "Al Masirah" + }, + { + "type": "hls", + "url": "https://video.yementdy.tv/hls/yementoday.m3u8", + "label": "Yemen Today TV" + }, + { + "type": "hls", + "url": "https://assahat.b-cdn.net/Assahat/assahatobs/index.m3u8", + "label": "Al-Sahat TV" + } + ], + "North Macedonia": [ + { + "type": "hls", + "url": "https://stream.nasatv.com.mk/hls/nasatv_live.m3u8", + "label": "Nasa TV" + }, + { + "type": "hls", + "url": "https://eu.live.skyfolk.mk/live.m3u8", + "label": "Sky Folk TV" + } + ], + "Syria": [ + { + "type": "hls", + "url": "https://live.kwikmotion.com/syriatvlive/syriatv.smil/playlist_dvr.m3u8", + "label": "Syria TV" + }, + { + "type": "hls", + "url": "https://halabtoday-live.lg.mncdn.com/halabtoday/livestream/playlist.m3u8", + "label": "Halab Today TV" + }, + { + "type": "hls", + "url": "https://stream.badinan.xyz/welat/tv/playlist.m3u8", + "label": "Welat TV" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/ROJAVA_HD/HLS/ROJAVA_HD.m3u8", + "label": "Rojava TV" + }, + { + "type": "hls", + "url": "https://live.kwikmotion.com/syriatv02live/syriatv02.smil/playlist.m3u8", + "label": "Althania" + }, + { + "type": "hls", + "url": "https://hlspackager.akamaized.net/live/DB/RONAHI_TV/HLS/RONAHI_TV.m3u8", + "label": "Ronahi TV" + } + ], + "Iceland": [ + { + "type": "hls", + "url": "https://live.visir.is/hls-live/visir.smil/playlist.m3u8", + "label": "Visir" + }, + { + "type": "hls", + "url": "https://ruv-web-live.akamaized.net/streymi/ruverl/ruverl.m3u8", + "label": "RUV" + }, + { + "type": "hls", + "url": "https://k100streymi.mbl.is/beint/k100/index.m3u8", + "label": "K100" + } + ], + "Azerbaijan": [ + { + "type": "hls", + "url": "https://rtmp.baku.tv/hls/bakutv.m3u8", + "label": "Baku.TV" + }, + { + "type": "hls", + "url": "https://nl.livekadeh.com/hls2/vilayet.m3u8", + "label": "Vilayet TV" + }, + { + "type": "hls", + "url": "https://cdn10-alvinchannel.yayin.com.tr/alvinchannel/alvinchannel/playlist.m3u8", + "label": "Alvin Channel TV" + }, + { + "type": "hls", + "url": "https://str2.yodacdn.net/ntv/video.m3u8", + "label": "Naxcivan TV" + }, + { + "type": "hls", + "url": "https://str.yodacdn.net/azertv/index.m3u8", + "label": "Az TV" + }, + { + "type": "hls", + "url": "https://str2.yodacdn.net/kanal35/index.m3u8", + "label": "Kanal 35" + }, + { + "type": "hls", + "url": "https://str.yodacdn.net/medeniyyettele/index.m3u8", + "label": "Medeniyyet TV" + }, + { + "type": "hls", + "url": "https://www.xezerxeber.az/stream/index.m3u8", + "label": "Xezer TV" + }, + { + "type": "hls", + "url": "https://lives.atv.az:5443/KANAL-S/streams/kanals.m3u8", + "label": "Kanal S" + }, + { + "type": "hls", + "url": "https://janya-ayaztv.vgcdn.net/ptnr-WebApp/title-Ayaz_TV/v1/vglive-sk-934820/main.m3u8", + "label": "Ayaz TV" + }, + { + "type": "hls", + "url": "https://cdn4.yayin.com.tr/kntv/tracks-v1a1/mono.m3u8", + "label": "KN Music TV" + } + ], + "Canada": [ + { + "type": "hls", + "url": "https://d2ny9lo79ujali.cloudfront.net/CBC_News_International.m3u8", + "label": "CBC News Network" + }, + { + "type": "hls", + "url": "https://rcavlive.akamaized.net/hls/live/704025/xcanrdi/master.m3u8", + "label": "Ici RDI" + }, + { + "type": "hls", + "url": "https://origin-http-delivery.isilive.ca/live/_definst_/ontla/house-en/playlist.m3u8", + "label": "Ontario Parliamentary Network" + }, + { + "type": "hls", + "url": "https://citynewsregional.akamaized.net/hls/live/1024054/Regional_Live_9/master.m3u8", + "label": "CityNews Vancouver" + }, + { + "type": "hls", + "url": "https://citynewsregional.akamaized.net/hls/live/1024052/Regional_Live_7/master.m3u8", + "label": "CityNews Toronto" + }, + { + "type": "hls", + "url": "https://932y483pdjv8-hls-live.5centscdn.com/stream/deb10bae362f810630ec3abedcae5894.sdp/playlist.m3u8", + "label": "TV Punjab" + }, + { + "type": "hls", + "url": "https://citynewsregional.akamaized.net/hls/live/1024053/Regional_Live_8/master.m3u8", + "label": "CityNews Calgary" + }, + { + "type": "hls", + "url": "https://citynewsregional.akamaized.net/hls/live/1024053/Regional_Live_8/Video-2Mbps.m3u8", + "label": "CityNews Edmonton" + }, + { + "type": "hls", + "url": "https://cdn12.henico.net:8443/live/ssct/index.m3u8", + "label": "Sikh Spiritual Centre Rexdale" + }, + { + "type": "hls", + "url": "https://dbcanada.sonarbanglatv.com/deshebideshe/dbtv/index.m3u8", + "label": "DesheBideshe TV" + }, + { + "type": "hls", + "url": "https://live.livestreamtv.ca/azstar/amlst:azstar/playlist.m3u8", + "label": "Az Star TV" + }, + { + "type": "hls", + "url": "https://amg17292-amg17292c1-distrotv-us-4170.playouts.now.amagi.tv/playlist/amg17292-tetonridgellc-tetonridgefast-distrotvus/playlist.m3u8", + "label": "The Cowboy Channel Canada" + }, + { + "type": "hls", + "url": "https://2-fss-1.streamhoster.com/pl_122/201748-1431018-1/chunklist.m3u8", + "label": "NTV+ (CA)" + }, + { + "type": "hls", + "url": "https://live.cmr24.fm/TVI/HD/chunks.m3u8", + "label": "TamilVision-TV" + }, + { + "type": "hls", + "url": "https://cdn.live247stream.com/hyder/tv/playlist.m3u8", + "label": "Hyder TV" + }, + { + "type": "hls", + "url": "https://deshitv.deshitv24.net/live/myStream/playlist.m3u8", + "label": "Deshi TV" + }, + { + "type": "hls", + "url": "https://streamer12.vdn.dstreamone.net/carishowtime/showtime/chunks.m3u8", + "label": "GTN Canada" + }, + { + "type": "hls", + "url": "https://3d46w.doyeltv.com/memfs/aa3aa6f7-ec12-41a2-8183-a891e157bbf8.m3u8", + "label": "Doyel TV" + }, + { + "type": "hls", + "url": "https://streamer12.vdn.dstreamone.net/saazoawaz/saazoawaz/playlist.m3u8", + "label": "Eawaz TV" + }, + { + "type": "hls", + "url": "https://2-fss-2.streamhoster.com/pl_120/206508-3261972-1/playlist.m3u8", + "label": "C Malayalam TV" + }, + { + "type": "hls", + "url": "https://amg00090-blueantcanada-amg00090c4-samsung-au-819.playouts.now.amagi.tv/playlist/amg00090-blueantfast-homefulworldwide-samsungau/playlist.m3u8", + "label": "Homeful" + }, + { + "type": "hls", + "url": "https://uni01rtmp.tulix.tv/kqsltv/kqsltv/playlist.m3u8", + "label": "TLN" + }, + { + "type": "hls", + "url": "https://stream2.pivotalelements.com/memfs/2d2e1038-9eb2-44df-a9b9-109de5752f3b_output_0.m3u8", + "label": "NACTV" + }, + { + "type": "hls", + "url": "https://hls.savoir.media/live/stream.m3u8", + "label": "Savoir media" + }, + { + "type": "hls", + "url": "https://iptv.sohailtv.com/sohail/playlist/index.m3u8", + "label": "Sohail TV" + }, + { + "type": "hls", + "url": "https://stream.ottlive.co.in/ptccanada/index.m3u8", + "label": "PTC Punjabi Canada" + }, + { + "type": "hls", + "url": "https://dfhsahpa45kk2.cloudfront.net/scheduler/scheduleMaster/476.m3u8", + "label": "Wild TV" + }, + { + "type": "hls", + "url": "https://dbcanada.sonarbanglatv.com/azantv/atv/index.m3u8", + "label": "Azan TV" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/8124/8124/chunklist.m3u8", + "label": "Radio Tele Evangile Sans Limite" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-108ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Hot Country" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/karaoke-kar000-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Karaoke" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-115ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Flashback 70's" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-128ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Everything '80s" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-155ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Holiday Hits" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-021ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Jukebox Oldies" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-317ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Today's K-Pop" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-142ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Nothin' But 90s" + }, + { + "type": "hls", + "url": "https://d39g1vxj2ef6in.cloudfront.net/v1/master/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/master.m3u8?ads.xumo_channelId=88883053", + "label": "Stingray Greatest Hits" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/ose-140ads-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Smooth Jazz" + }, + { + "type": "hls", + "url": "https://lotus.stingray.com/manifest/classica-cla008-montreal/samsungtvplus/master.m3u8", + "label": "Stingray Classica" + } + ], + "Afghanistan": [ + { + "type": "hls", + "url": "https://tgn.bozztv.com/eshgtv-dvrfl05/gin-tolonews/index.m3u8", + "label": "TOLOnews" + }, + { + "type": "hls", + "url": "https://tgn.bozztv.com/eshgtv-dvrfl05/gin-tolohd/tracks-v1a1/mono.m3u8", + "label": "Tolo TV" + }, + { + "type": "hls", + "url": "https://dunyanhls.wns.live/hls/stream.m3u8", + "label": "Dunya Naw TV" + }, + { + "type": "hls", + "url": "https://hls.tamadon.live/hls/stream.m3u8", + "label": "Tamadon TV" + }, + { + "type": "hls", + "url": "https://rta-tv.akamaized.net/live/SD/RTA-1/RTA/RTA-1.m3u8", + "label": "RTA" + }, + { + "type": "hls", + "url": "https://fflive-darya-educationtv.b-cdn.net/master.m3u8", + "label": "Shams TV (AF)" + }, + { + "type": "hls", + "url": "https://tgn.bozztv.com/eshgtv-dvrfl05/gin-lemar/index.m3u8", + "label": "Lemar TV" + }, + { + "type": "hls", + "url": "https://eslahtvhls.wns.live/hls/stream.m3u8", + "label": "Eslah TV" + }, + { + "type": "hls", + "url": "https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8", + "label": "Kayhan TV" + } + ], + "Guatemala": [ + { + "type": "hls", + "url": "https://mdstrm.com/live-stream-playlist/69f8df22a762c9b1ab3eabca.m3u8", + "label": "Guatevision" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-chinique100tvenvivo/chinique100tvenvivo/playlist.m3u8", + "label": "Canal 100 Chinique" + }, + { + "type": "hls", + "url": "https://tv91.hostingnuclear.com:19360/intercable/intercable.m3u8", + "label": "Canal 13 Esquipulas" + }, + { + "type": "hls", + "url": "https://live20.bozztv.com/giatv/giatv-SilTvOnline/SilTvOnline/playlist.m3u8", + "label": "SIL TV" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3549/live/barbetvlive.m3u8", + "label": "Barbe TV" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3011/live/mastvgtlive.m3u8", + "label": "MAS TV" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3076/live/visiontvlive.m3u8", + "label": "Vision TV" + }, + { + "type": "hls", + "url": "https://stream.digitalgt.com:3136/live/multivisionlive.m3u8", + "label": "Multivision Canal 3" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3210/live/nimtvgtlive.m3u8", + "label": "Nim TV" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3409/live/soltvlive.m3u8", + "label": "Sol TV" + }, + { + "type": "hls", + "url": "https://183.bozztv.com/giatv/giatv-worldtvgt/worldtvgt/playlist.m3u8", + "label": "World TV Guatemala" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3819/live/tvflorecialive.m3u8", + "label": "TV Florencia" + }, + { + "type": "hls", + "url": "https://5ca9af4645e15.streamlock.net/mayas/videomayas/playlist.m3u8", + "label": "TV Maya" + }, + { + "type": "hls", + "url": "https://live.tvcontrolcp.com:1936/tvnitelevision/tvnitelevision/playlist.m3u8", + "label": "Nuestra Imagen TV" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/penielkids/index.m3u8", + "label": "Peniel K&Y" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/penielmusical/index.m3u8", + "label": "Peniel Musical" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/radiomaya/index.m3u8", + "label": "Canal TV Radio Maya TGBA" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/penielbibliaabierta/index.m3u8", + "label": "Peniel TV Biblia Abierta" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3531/live/tvsretrogtlive.m3u8", + "label": "TVS Retro" + }, + { + "type": "hls", + "url": "https://s.emisoras.tv:8081/canal30tvbethel/index.m3u8", + "label": "Canal 30 TV Bethel" + }, + { + "type": "hls", + "url": "https://antmedia.cablevisionrobles.com:5443/LiveApp/streams/CqwAgRagMvBNYN8c1731608980342.m3u8", + "label": "Amigos TV Chiquimula" + }, + { + "type": "hls", + "url": "https://cdn.streamhispanatv.net:3390/live/sastvgtlive.m3u8", + "label": "SAS TV" + }, + { + "type": "hls", + "url": "https://s2.tvdatta.com:3112/hybrid/play.m3u8", + "label": "Radio Coatan Canal 21" + }, + { + "type": "hls", + "url": "https://cdn.oktvus.com/ConectadoConDios/tracks-v2a1/mono.ts.m3u8", + "label": "Conectados con Dios" + }, + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/8338/index.m3u8", + "label": "MCN Television" + }, + { + "type": "hls", + "url": "https://5e85d90130e77.streamlock.net/6006/6006/playlist.m3u8", + "label": "Rhema TV" + }, + { + "type": "hls", + "url": "https://video03.logicahost.com.br/maxivisiontv/maxivisiontv/playlist.m3u8", + "label": "Maxivision TV" + } + ], + "Bangladesh": [ + { + "type": "hls", + "url": "https://app24.jagobd.com.bd/c3VydmVyX8RpbEU9Mi8xNy8yMFDEEHGcfRgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcEdsEfeDeKiNkVN3PTOmdFseWRtaW51aiPhnPTI2/rtv-sg.stream/index.m3u8", + "label": "RTV (BD)" + }, + { + "type": "hls", + "url": "https://app.ncare.live/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI2/mytv-up-off.stream/live-orgin/mytv-up-off.stream/playlist.m3u8", + "label": "My TV" + }, + { + "type": "hls", + "url": "https://boishakhi.sonarbanglatv.com/boishakhi/boishakhitv/index.m3u8", + "label": "Boishakhi TV" + }, + { + "type": "hls", + "url": "https://stream.shariarsuvo.com/hls5/rajdhanicable.m3u8", + "label": "Rajdhani TV" + }, + { + "type": "hls", + "url": "https://tvsen5.aynaott.com/xV4jEKf3D9zc/index.m3u8", + "label": "NTV (BD)" + }, + { + "type": "hls", + "url": "https://tvsen6.aynaott.com/Epm7WrFa/index.m3u8", + "label": "Nexus TV" + }, + { + "type": "hls", + "url": "https://tvsen5.aynaott.com/banglavision/index.m3u8", + "label": "Bangla Vision" + }, + { + "type": "hls", + "url": "https://tvsen5.aynaott.com/atnbangla/index.m3u8", + "label": "ATN Bangla" + }, + { + "type": "hls", + "url": "https://app.ncare.live/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI/atnmusic.stream/playlist.m3u8", + "label": "ATN Music" + }, + { + "type": "hls", + "url": "https://app.ncare.live/c3VydmVyX8RpbEU9Mi8xNy8yMDE0GIDU6RgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcGVMZEJCTEFWeVN3PTOmdFsaWRtaW51aiPhnPTI2/anandatv.stream/live-orgin/anandatv.stream/playlist.m3u8", + "label": "Ananda TV" + }, + { + "type": "hls", + "url": "https://app24.jagobd.com.bd/c3VydmVyX8RpbEU9Mi8xNy8yMFDEEHGcfRgzQ6NTAgdEoaeFzbF92YWxIZTO0U0ezN1IzMyfvcEdsEfeDeKiNkVN3PTOmdFseWRtaW51aiPhnPTI2/ruposhibangla.stream/playlist.m3u8", + "label": "Rupashi Bangla TV" + }, + { + "type": "hls", + "url": "https://streaming.madanichannel.tv/static/streaming-playlists/hls/d3e49b76-ac06-4689-a641-9200445b647f/master.m3u8", + "label": "Madani Channel Bangla" + }, + { + "type": "hls", + "url": "https://tvsen5.aynaott.com/maasrangatv/index.m3u8", + "label": "Maasranga TV" + } + ], + "Andorra": [ + { + "type": "hls", + "url": "https://livesg1.rtva.hiway.media/11a6d6f4-ee13-47c7-9c27-7313cf5424e2/manifest.m3u8", + "label": "Andorra TV" + } + ], + "Vietnam": [ + { + "type": "hls", + "url": "https://vtvgolive-ott3.vtvdigital.vn/live/dongnai1tv/chunklist_2.m3u8", + "label": "Dong Nai TV 1" + }, + { + "type": "hls", + "url": "https://freem3u.xyz/api/live/play.m3u8?vid=91", + "label": "Tra Vinh TV" + }, + { + "type": "hls", + "url": "https://amg01868-amg01868c3-tvbanywhere-us-4491.playouts.now.amagi.tv/playlist/amg01868-tvbusa-tvbvietnam-tvbanywhereus/playlist.m3u8", + "label": "TVB Vietnam" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv19/master.m3u8", + "label": "SCTV19" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv20/master.m3u8", + "label": "SCTV20" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv18/master.m3u8", + "label": "SCTV18" + }, + { + "type": "hls", + "url": "https://amagi-live.ondemandkorea.com/amgplt0456.m3u8", + "label": "Vietnam Today" + }, + { + "type": "hls", + "url": "https://live-hq.evgcdn.net/live/2851dc2c9af68834814a89e61db0faee561/chunklist.m3u8", + "label": "Tay Ninh TV" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv13/master.m3u8", + "label": "SCTV13" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv14/master.m3u8", + "label": "SCTV14" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv16/master.m3u8", + "label": "SCTV16" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv12/master.m3u8", + "label": "SCTV12" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv2/master.m3u8", + "label": "SCTV2" + }, + { + "type": "hls", + "url": "https://streaming.thainguyentv.vn/hls/livestream.m3u8", + "label": "Thai Nguyen TV" + }, + { + "type": "hls", + "url": "https://cdnbaokhanhhoa.com/live/90405a889081.m3u8?vhost=video", + "label": "Ninh Thuan TV" + }, + { + "type": "hls", + "url": "https://618b88f69e53b.streamlock.net/THDT2/thdttv2/chunklist.m3u8", + "label": "Tien Giang TV" + }, + { + "type": "hls", + "url": "https://cdn.drt.vn/live/285a27750861b964c27af22091662a74f2f/chunklist.m3u8", + "label": "Dak Lak TV" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv6/master.m3u8", + "label": "SCTV6" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv11/master.m3u8", + "label": "SCTV11" + }, + { + "type": "hls", + "url": "https://cdnbaokhanhhoa.com/live/1332e3a79e27.m3u8?vhost=video", + "label": "Khanh Hoa TV" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv9/master.m3u8", + "label": "SCTV9" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv7/master.m3u8", + "label": "SCTV7" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/manifest/sctv4/master.m3u8", + "label": "SCTV4" + }, + { + "type": "hls", + "url": "https://vtvgolive-sctvdrm.vtvdigital.vn/bsod999cuteptgyoutuber/1234567890/manifest/sctv3/master.m3u8", + "label": "SCTV3" + }, + { + "type": "hls", + "url": "https://live.canthotv.vn/live/tv/chunklist.m3u8", + "label": "Can Tho TV" + }, + { + "type": "hls", + "url": "https://live.baolaocai.vn/channel2/stream.m3u8", + "label": "Lao Cai TV" + }, + { + "type": "hls", + "url": "https://cloudstreamhntv.tek4tv.vn/live/smil:HN2.smil/playlist.m3u8", + "label": "HanoiTV2" + }, + { + "type": "hls", + "url": "https://qpvn.vn/live/qpvn/master.m3u8", + "label": "QPVN" + }, + { + "type": "hls", + "url": "https://cloudstreamhntv.tek4tv.vn/capture/smil:HN1.smil/chunklist.m3u8", + "label": "HanoiTV1" + }, + { + "type": "hls", + "url": "https://stream.langsontv.vn/live/2855dfeccb7f49a41a2b0441b3bfeda413c/playlist.m3u8", + "label": "Dien Bien TV" + }, + { + "type": "hls", + "url": "https://stream.thingnet.vn/live/smil:CRTV.smil/chunklist.m3u8", + "label": "Cao Bang TV" + }, + { + "type": "hls", + "url": "https://freem3u.xyz/api/live/play.m3u8?vid=9", + "label": "HTV4" + }, + { + "type": "hls", + "url": "https://freem3u.xyz/api/live/play.m3u8?vid=188", + "label": "ON Life" + } + ], + "China": [ + { + "type": "hls", + "url": "https://cd-live-stream.news.cctvplus.com/live/smil:CHANNEL1.smil/playlist.m3u8", + "label": "CCTV+ 1" + }, + { + "type": "hls", + "url": "https://amg00405-rakutentv-cgtn-rakuten-i9tar.amagi.tv/master.m3u8", + "label": "CGTN" + }, + { + "type": "hls", + "url": "https://liveplus.lzr.com.cn/xwzh/HD/live.m3u8", + "label": "Lanzhou Comprehensive News Channel" + }, + { + "type": "hls", + "url": "https://stream.hrbtv.net/xwzh/playlist.m3u8?_upt=ef41dd531755913594", + "label": "Harbin Comprehensive News Channel" + }, + { + "type": "hls", + "url": "https://h5cul1yar48um3t.wcetv.com/hls/gdsatellite.m3u8", + "label": "Guangdong Satellite TV" + }, + { + "type": "hls", + "url": "https://fastlive.cctvplus.com/out/v1/8442c3bfd4c64a3984389328f6087879/index.m3u8", + "label": "Discovering China" + }, + { + "type": "hls", + "url": "https://fastlive.cctvplus.com/out/v1/ca6f9297b7314a63959435028af287fc/index.m3u8", + "label": "China Travel" + }, + { + "type": "hls", + "url": "https://event.pull.hebtv.com/live/live101.m3u8", + "label": "Hebei TV" + }, + { + "type": "hls", + "url": "https://fastlive.cctvplus.com/out/v1/2b3d8a0c805d437f9dc85b764c2ac599/index.m3u8", + "label": "CGTN Global Biz" + }, + { + "type": "hls", + "url": "https://tencentplaybusiness.gztv.com/live/zonghes.m3u8", + "label": "Guangzhou TV" + }, + { + "type": "hls", + "url": "https://jiangning-tv-playing-t.cm.jstv.com/jiangning-tv/jnxwzh.m3u8", + "label": "Jiangsu Public & News Channel" + }, + { + "type": "hls", + "url": "https://restream.pdtvhd.com/memfs/0b1b95c9-3543-4af9-9fdb-cf45f1602f17.m3u8", + "label": "Dragon TV International" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/NeigMGL/HLSv3-FTA/NeigMGL.m3u8", + "label": "Nei Monggol TV" + }, + { + "type": "hls", + "url": "https://hls-qhmh.lanzhousobey.cn/qhmh/mhds.m3u8", + "label": "Qinghai TV" + }, + { + "type": "hls", + "url": "https://stream2.jlntv.cn/baicheng1/sd/live.m3u8", + "label": "Baicheng TV" + }, + { + "type": "hls", + "url": "https://hls.quklive.com/live/play-sh-21.quklive.com/1777511615189085.m3u8?auth_key=2092871636-a39d8614688744d0b170b856b086ba80-0-33900446b83fa0b5befeb6bedbcd51a0", + "label": "Xinjiang TV 2" + }, + { + "type": "hls", + "url": "https://liveplus.lzr.com.cn/wlpd/HD/live.m3u8", + "label": "Lanzhou Culture & Tourism Channel" + }, + { + "type": "hls", + "url": "https://ali-m-l.cztv.com/channels/lantian/channel10/1080p.m3u8", + "label": "Zhejiang International Channel" + }, + { + "type": "hls", + "url": "https://chibrics.mediacdn.ru/cdn/brics/chinese/playlist.m3u8", + "label": "TV BRICS Chinese" + }, + { + "type": "hls", + "url": "https://restream.pdtvhd.com/memfs/c1cd2ed0-3b2b-4c25-af98-a7fb0b1eb130.m3u8", + "label": "Anhui TV" + }, + { + "type": "hls", + "url": "https://amg00405-rakutentv-cgtndocumentary-rakuten-0ql8j.amagi.tv/master.m3u8", + "label": "CGTN Documentary" + } + ], + "Ecuador": [ + { + "type": "hls", + "url": "https://ecoteltv.streamseguro.com:5443/LiveApp/streams/streaming.m3u8", + "label": "Ecotel TV" + }, + { + "type": "hls", + "url": "https://streamingav.asambleanacional.gob.ec/hls/stream.m3u8", + "label": "TV Legislativa" + }, + { + "type": "hls", + "url": "https://s2.tvdatta.com:3825/live/redtvelive.m3u8", + "label": "Red TVE Ventanas" + }, + { + "type": "hls", + "url": "https://vs20.live.opencaster.com/planetachannel_089eff6d/index.m3u8", + "label": "Planeta Channel" + }, + { + "type": "hls", + "url": "https://tv3ecuador.site/hls/stream/index.m3u8", + "label": "RTRTV" + }, + { + "type": "hls", + "url": "https://stream.oromar.tv/hls/camriva/index.m3u8", + "label": "Oromar TV+" + }, + { + "type": "hls", + "url": "https://loretotv.moxapps.shop/live/QFM7KYOlxWd47ybXB3Z1u2P13Py1/index.m3u8", + "label": "Loreto TV" + }, + { + "type": "hls", + "url": "https://online.hechosecuador.com:5443/WebRTCApp/streams/hechosecuador.m3u8", + "label": "Hechos Ecuador" + }, + { + "type": "hls", + "url": "https://play.once.net.ec/play/Ily2oYdd3E1fi9wK2zORoRovFU9P5xM0g3CNVK2MT0M/.m3u8", + "label": "Manavision" + }, + { + "type": "hls", + "url": "https://video.compuwebecuador.com:3783/live/caprichotvlive.m3u8", + "label": "Capricho TV" + }, + { + "type": "hls", + "url": "https://video.compuwebecuador.com:3067/live/tvcolorlive.m3u8", + "label": "TV Color Canal 36" + }, + { + "type": "hls", + "url": "https://video-eu1.streamerr.co/hls/s64029a8fdf/live.m3u8", + "label": "Ecuador TV" + }, + { + "type": "hls", + "url": "https://avm.ecuamedia.net/educatv/live/playlist.m3u8", + "label": "Educa TV" + }, + { + "type": "hls", + "url": "https://stmv3.voxtvhd.com.br/australtv/australtv/playlist.m3u8", + "label": "Austral TV" + }, + { + "type": "hls", + "url": "https://tvdatta.com:3578/live/antenaunolive.m3u8", + "label": "Antena Uno Radiovideo" + }, + { + "type": "hls", + "url": "https://video.compuwebecuador.com:3323/live/uniandeslive.m3u8", + "label": "UNIANDES TV" + }, + { + "type": "hls", + "url": "https://dai.google.com/linear/hls/event/GyPkTVDZSXGhpOvxPK7m2g/master.m3u8", + "label": "Ecuavisa" + }, + { + "type": "hls", + "url": "https://vd01.streaminghd.net.ar:3113/hybrid/play.m3u8", + "label": "Studio + TV" + }, + { + "type": "hls", + "url": "https://d2m7i0pvomh4vg.cloudfront.net/ts:abr.m3u8", + "label": "TVC" + }, + { + "type": "hls", + "url": "https://7.innovatestream.pe:19360/ecuadortest/ecuadortest.m3u8", + "label": "Wuan+" + }, + { + "type": "hls", + "url": "https://live.obslivestream.com/sonoondatv/index.m3u8", + "label": "Sono Onda TV" + }, + { + "type": "hls", + "url": "https://cloudvideo.servers10.com:8081/8118/index.m3u8", + "label": "Nuka TV" + }, + { + "type": "hls", + "url": "https://cloudpro.servidoresdestream.com:8081/8020/index.m3u8", + "label": "Telemar" + }, + { + "type": "hls", + "url": "https://sv72.ecuaradiotv.net/rtvhd/live/manifest.m3u8", + "label": "RTV (EC)" + }, + { + "type": "hls", + "url": "https://live.tvcontrolcp.com:1936/puruwatv/puruwatv/playlist.m3u8", + "label": "Puruwa TV" + }, + { + "type": "hls", + "url": "https://cdn.mycloudstream.io/hls/live/broadcast/uwcedjt2/index.m3u8", + "label": "TV Universal Ecuador" + }, + { + "type": "hls", + "url": "https://cloudvideo.servers10.com:8081/8154/index.m3u8", + "label": "Radio Bonita 106.7" + }, + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/8214/index.m3u8", + "label": "Metropoli Medios TV" + }, + { + "type": "hls", + "url": "https://stmv1.voxtvhd.com.br/latacungatv/latacungatv/playlist.m3u8", + "label": "LatacungaTV" + }, + { + "type": "hls", + "url": "https://stmv6.voxtvhd.com.br/vacantveo2/vacantveo2/playlist.m3u8", + "label": "Bacan Te Veo" + }, + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/8334/index.m3u8", + "label": "Mel Radio TV" + }, + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/8074/index.m3u8", + "label": "Radio Cuenca Estereo" + }, + { + "type": "hls", + "url": "https://s2.tvdatta.com:3753/hybrid/play.m3u8", + "label": "Infinita TV" + }, + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/8068/index.m3u8", + "label": "La Perla Radio TV" + }, + { + "type": "hls", + "url": "https://gaviotatv.streamseguro.com:3195/live/gaviotatvlive.m3u8", + "label": "Gaviota TV" + }, + { + "type": "hls", + "url": "https://makrodigitaltv.makrodigital.com/makrodigitaltelevision/iptv/playlist.m3u8", + "label": "MakroDigital Television" + }, + { + "type": "hls", + "url": "https://tv.wracanal10.com:3025/live/elsoltvlive.m3u8", + "label": "El Sol Network TV" + }, + { + "type": "hls", + "url": "https://video2.makrodigital.com/fmmundo/fmmundo/playlist.m3u8", + "label": "FM Mundo" + }, + { + "type": "hls", + "url": "https://asomatv.cloud-ip.cc/livestream/stream.m3u8", + "label": "Asomavision" + } + ], + "Austria": [ + { + "type": "hls", + "url": "https://streaming13.huberwebmedia.at/LiveApp/streams/985585225397790082777809.m3u8", + "label": "Landle TV" + }, + { + "type": "hls", + "url": "https://stream.fs1.tv/hls/webstream.m3u8", + "label": "FS1 Salzburg" + }, + { + "type": "hls", + "url": "https://streaming14.huberwebmedia.at/LiveApp/streams/livestream.m3u8", + "label": "Tirol TV" + }, + { + "type": "hls", + "url": "https://cdn3.wowza.com/1/MHFtazJReW5rOFhP/N2NWNDZ2/hls/live/playlist.m3u8", + "label": "Okto" + }, + { + "type": "hls", + "url": "https://h056.video-stream-hosting.de/easycast8-live/_definst_/mp4:livestreamhd4/playlist.m3u8?ref=", + "label": "Steiermark TV" + }, + { + "type": "hls", + "url": "https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8", + "label": "W24" + }, + { + "type": "hls", + "url": "https://streaming10.huberwebmedia.at/LiveApp/streams/238985177034727564068269_adaptive.m3u8", + "label": "TV 1 Oberosterreich" + }, + { + "type": "hls", + "url": "https://ms01.w24.at/R9/smil:liveeventR9.smil/playlist.m3u8", + "label": "R9" + }, + { + "type": "hls", + "url": "https://orf3.mdn.ors.at/orf/orf3/qxa/manifest.m3u8", + "label": "ORF III" + }, + { + "type": "hls", + "url": "https://stream.swamiji.tv/YogaIPTV/smil:YogaStreamAU.smil/playlist.m3u8", + "label": "Swamiji TV Australian" + }, + { + "type": "hls", + "url": "https://stream.swamiji.tv/YogaIPTV/smil:YogaStream.smil/playlist.m3u8", + "label": "Swamiji TV European" + }, + { + "type": "hls", + "url": "https://60efd7a2b4d02.streamlock.net/a_kaernten/ngrp:livestream_all/playlist.m3u8", + "label": "Antenne Kaernten" + }, + { + "type": "hls", + "url": "https://60efd7a2b4d02.streamlock.net/a_steiermark/ngrp:livestream_all/playlist.m3u8", + "label": "Antenne Steiermark" + }, + { + "type": "hls", + "url": "https://everest.pa-hosting.de:3591/live/joseflive.m3u8", + "label": "KIT-TV" + }, + { + "type": "hls", + "url": "https://stream.swamiji.tv/YogaIPTV/smil:YogaStreamUS.smil/playlist.m3u8", + "label": "Swamiji TV American" + }, + { + "type": "hls", + "url": "https://d1pz8zear993v8.cloudfront.net/hlsme/kathtv.m3u8", + "label": "K-TV" + }, + { + "type": "hls", + "url": "https://m317.video-stream-hosting.de/gzSoftware-live/_definst_/smil:livestream.smil/playlist.m3u8", + "label": "Schladming-Dachstein TV" + }, + { + "type": "hls", + "url": "https://bitcdn-kronehit.bitmovin.com/v2/hls/playlist.m3u8", + "label": "Kronehit" + }, + { + "type": "hls", + "url": "https://studiocam-oe3.mdn.ors.at/orf/studiocam_oe3/q6a/master.m3u8", + "label": "Hitradio O3" + } + ], + "Slovakia": [ + { + "type": "hls", + "url": "https://dash4.antik.sk/live/test_infokanal_tizen/playlist.m3u8", + "label": "Antik Info TV" + }, + { + "type": "hls", + "url": "https://n11.stv.livebox.sk/stv-tv/stv4.stream/playlist.m3u8", + "label": "TV NRSR" + }, + { + "type": "hls", + "url": "https://dash2.antik.sk/live/test_zapadoslovenska/playlist.m3u8", + "label": "Zapadoslovenska TV" + }, + { + "type": "hls", + "url": "https://dash4.antik.sk/live/test_nitricka/playlist.m3u8", + "label": "TV Nitricka" + }, + { + "type": "hls", + "url": "https://dash4.antik.sk/live/test_central/playlist.m3u8", + "label": "TV Central" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_mistral_atktv/playlist.m3u8", + "label": "TV Mistral" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_povazie/playlist.m3u8", + "label": "TV Povazie" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_locall/playlist.m3u8", + "label": "TV LocAll" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_osem/playlist.m3u8", + "label": "TV8 (SK)" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_vita/playlist.m3u8", + "label": "TV Vita" + }, + { + "type": "hls", + "url": "https://stream.tvlux.sk/luxtv/luxtv-livestream/chunklist_w617812057.m3u8", + "label": "TV Lux (SK)" + }, + { + "type": "hls", + "url": "https://dash4.antik.sk/live/test_tv9/playlist.m3u8", + "label": "TV9 (SK)" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/turbo_tv_avc_25p/playlist.m3u8", + "label": "Turbo TV" + }, + { + "type": "hls", + "url": "https://dash2.antik.sk/live/test_nove_zamky/playlist.m3u8", + "label": "NZTV" + }, + { + "type": "hls", + "url": "https://dash2.antik.sk/live/test_regio_tv/playlist.m3u8", + "label": "Regio TV" + }, + { + "type": "hls", + "url": "https://cdnsk003.panaccess.com/local/Ruzomberok/index.m3u8", + "label": "MTR" + }, + { + "type": "hls", + "url": "https://5ca49f2417d90.streamlock.net/live/turzovka/playlist.m3u8", + "label": "TVT" + }, + { + "type": "hls", + "url": "https://5ca49f2417d90.streamlock.net/live/dolnykubin1/playlist.m3u8", + "label": "TV DK" + }, + { + "type": "hls", + "url": "https://5ca49f2417d90.streamlock.net/mocenok/livestream/playlist.m3u8", + "label": "Televizia Mocenok" + }, + { + "type": "hls", + "url": "https://public.live.rebit.tv/live/20750f0b-e12d-4915-a4c3-47c5db9ccbf6/main.m3u8", + "label": "TV Panorama" + }, + { + "type": "hls", + "url": "https://dash3.antik.sk/live/test_haha_tv/playlist.m3u8", + "label": "HAHA TV" + }, + { + "type": "hls", + "url": "https://lifetv.mpks.sk/s.m3u8", + "label": "LifeTv" + } + ], + "Luxembourg": [ + { + "type": "hls", + "url": "https://streamer20.multimedia.blue/Eltrona/DudelangeTV/playlist.m3u8", + "label": "Dudelange TV" + }, + { + "type": "hls", + "url": "https://streamer20.multimedia.blue/Post/MerschTV_IPTV/playlist.m3u8", + "label": "MierschTV" + }, + { + "type": "hls", + "url": "https://2-fss-2.streamhoster.com/pl_124/206820-4338160-1/playlist.m3u8", + "label": "apart TV" + }, + { + "type": "hls", + "url": "https://live-edge.rtl.lu/channel2/smil:channel2/playlist.m3u8", + "label": "RTL Zwee" + }, + { + "type": "hls", + "url": "https://live-edge.rtl.lu/channel1/smil:channel1/playlist.m3u8", + "label": "RTL Tele Letzebuerg" + }, + { + "type": "hls", + "url": "https://stream.eldo.lu/data/live/tele/eldotv/1080p.m3u8", + "label": "eldo.TV" + }, + { + "type": "hls", + "url": "https://stream.rtl.lu/data/live/tele/rtltodayradio/playlist.m3u8", + "label": "Today Radio" + }, + { + "type": "hls", + "url": "https://stream.rtl.lu/data/live/tele/rtlgold/playlist.m3u8", + "label": "RTL Gold (LU)" + }, + { + "type": "hls", + "url": "https://rtlradio-streaming.rtl.lu/rtlradiowebtv/smil:rtlradiowebtv/playlist.m3u8", + "label": "RTL Web Radio TV" + } + ], + "Cambodia": [ + { + "type": "hls", + "url": "https://live.eac-news.com/LiveApp/streams/eacnews.m3u8", + "label": "EAC News TV" + }, + { + "type": "hls", + "url": "https://live.kh.malimarcdn.com/live/tvk.stream/playlist.m3u8", + "label": "TVK" + }, + { + "type": "hls", + "url": "https://seatv.netlinkbroadcaster.com/hls/test.m3u8", + "label": "SEA TV (KH)" + }, + { + "type": "hls", + "url": "https://ip.pdtvhd.com/Khmer/streams/CTV5.m3u8", + "label": "TV5 Cambodia" + }, + { + "type": "hls", + "url": "https://iptv.ebc.edu.kh/iptv/channel/1.m3u8", + "label": "EBC General Education" + }, + { + "type": "hls", + "url": "https://ardbtv.ardb.com.kh:8443/tv-live/tv-online.m3u8", + "label": "ARDB TV" + }, + { + "type": "hls", + "url": "https://live.sangkemtv.com/memfs/sangkem.m3u8", + "label": "Sangkem TV" + } + ], + "Somalia": [ + { + "type": "hls", + "url": "https://cd198.anystream.uk:9092/iqapp/s03btv/playlist.m3u8", + "label": "Saab TV" + } + ], + "Armenia": [ + { + "type": "hls", + "url": "https://amtvusdvr.tulix.tv/am3abr/index.m3u8", + "label": "First Channel News" + }, + { + "type": "hls", + "url": "https://amtvusdvr.tulix.tv/am4abr/index.m3u8", + "label": "Armenia 1" + } + ], + "Sweden": [ + { + "type": "hls", + "url": "https://cdn0-03837-liveedge0.dna.ip-only.net/03837-liveedge0/smil:03837-tx2/playlist.m3u8", + "label": "Expressen TV" + }, + { + "type": "hls", + "url": "https://cdn0-03837-liveedge0.dna.ip-only.net/03837-liveedge0/smil:03837-tx4/playlist.m3u8", + "label": "Di TV" + }, + { + "type": "hls", + "url": "https://komhls.wns.live/hls/stream.m3u8", + "label": "Komala TV" + } + ], + "Mongolia": [ + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/Parlament/HLSv3-FTA/Parlament.m3u8", + "label": "Parliament TV (MN)" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/Eagle/HLSv3-FTA/Eagle.m3u8", + "label": "Eagle News" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/ETV/HLSv3-FTA/ETV.m3u8", + "label": "ETV (MN)" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/MNCTV/HLSv3-FTA/MNCTV.m3u8", + "label": "Mongolian News Channel" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/UBSHD/HLSv3-FTA/UBSHD.m3u8", + "label": "UBS" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/TV8HD/HLSv3-FTA/TV8HD.m3u8", + "label": "TV8 (MN)" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/MN25/HLSv3-FTA/MN25.m3u8", + "label": "TV 25" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/TV9HD/HLSv3-FTA/TV9HD.m3u8", + "label": "TV9 (MN)" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/VTV/HLSv3-FTA/VTV.m3u8", + "label": "TenGer TV" + }, + { + "type": "hls", + "url": "https://live.mnb.mn/hls/mn2.stream.m3u8", + "label": "MNB Mongoliin Medee" + }, + { + "type": "hls", + "url": "https://live.mnb.mn/hls/mnb_world.stream.m3u8", + "label": "MNB World" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/TM/HLSv3-FTA/TM.m3u8", + "label": "TM TV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/SuldTV/HLSv3-FTA/SuldTV.m3u8", + "label": "Suld TV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/NTVHD/HLSv3-FTA/NTVHD.m3u8", + "label": "NTV (MN)" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/SBN/HLSv3-FTA/SBN.m3u8", + "label": "SBN" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/ONTV/HLSv3-FTA/ONTV.m3u8", + "label": "ONTV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/TV5HD/HLSv3-FTA/TV5HD.m3u8", + "label": "TV5" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/C1/HLSv3-FTA/C1.m3u8", + "label": "C1" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/SoyonGegeeruulegch/HLSv3-FTA/SoyonGegeeruulegch.m3u8", + "label": "Soyon Gegeeruulegch TV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/Malchin/HLSv3-FTA/Malchin.m3u8", + "label": "Malchin TV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/GTV/HLSv3-FTA/GTV.m3u8", + "label": "GTV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/Education/HLSv3-FTA/Education.m3u8", + "label": "Edutainment TV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/UlziiTV/HLSv3-FTA/UlziiTV.m3u8", + "label": "Ulzii TV" + }, + { + "type": "hls", + "url": "https://cdn1.skygo.mn/live/disk1/Ekh_Oron/HLS-FTA/Ekh_Oron.m3u8", + "label": "Central TV (MN)" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/GlobalTV/HLSv3-FTA/GlobalTV.m3u8", + "label": "Global TV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/Channel11/HLSv3-FTA/Channel11.m3u8", + "label": "Channel 11" + }, + { + "type": "hls", + "url": "https://xykt-fix.github.io/play/a02j/index.m3u8", + "label": "DreamTV" + }, + { + "type": "hls", + "url": "https://cdn4.skygo.mn/live/disk1/AsianBOX/HLSv3-FTA/AsianBOX.m3u8", + "label": "AsianBox" + } + ], + "Sri Lanka": [ + { + "type": "hls", + "url": "https://live20.bozztv.com/akamaissh101/ssh101/imaitv/playlist.m3u8", + "label": "Imai TV" + }, + { + "type": "hls", + "url": "https://live.jayatv.lk/hls/stream.m3u8", + "label": "Jaya TV" + } + ], + "Bahrain": [ + { + "type": "hls", + "url": "https://5c7b683162943.streamlock.net/live/ngrp:bahraininternational_all/playlist.m3u8", + "label": "Bahrain International" + }, + { + "type": "hls", + "url": "https://5c7b683162943.streamlock.net/live/ngrp:bahrainquran_all/playlist.m3u8", + "label": "Bahrain Quran" + } + ], + "DR Congo": [ + { + "type": "hls", + "url": "https://mistserver.evi-tv.com/hls/evi_tv_live/index.m3u8", + "label": "EVI TV" + } + ], + "Czechia": [ + { + "type": "hls", + "url": "https://dash2.antik.sk/live/ct24_avc_25p/playlist.m3u8", + "label": "CT24" + }, + { + "type": "hls", + "url": "https://rfe-ingest.akamaized.net/hls/live/2033043/tvmc05/master.m3u8", + "label": "Current Time TV" + }, + { + "type": "hls", + "url": "https://vysilani.zaktv.cz/broadcast/hls/ptv/index.m3u8", + "label": "Plzen TV" + }, + { + "type": "hls", + "url": "https://vysilani.zaktv.cz/broadcast/hls/utv/index.m3u8", + "label": "UTV (CZ)" + }, + { + "type": "hls", + "url": "https://stream.polar.cz/vctv/vctvlive-1/playlist.m3u8", + "label": "Vychodoceska TV" + }, + { + "type": "hls", + "url": "https://vysilani.zaktv.cz/broadcast/hls/jtv/index.m3u8", + "label": "Jihoceska televize" + }, + { + "type": "hls", + "url": "https://dash4.antik.sk/live/test_barrandov_plus_atk_1200/playlist.m3u8", + "label": "Barrandov Krimi" + }, + { + "type": "hls", + "url": "https://stream.jc1.cz/hls/jc1.m3u8", + "label": "JC1" + }, + { + "type": "hls", + "url": "https://dash.antik.sk/live/test_upnetwork/playlist.m3u8", + "label": "Up Network" + }, + { + "type": "hls", + "url": "https://5ca49f2417d90.streamlock.net/mnau/livestream/playlist.m3u8", + "label": "Mnau TV" + }, + { + "type": "hls", + "url": "https://stream.polar.cz/tvbrno1/tvbrno1live-1/playlist.m3u8", + "label": "TV Brno 1" + }, + { + "type": "hls", + "url": "https://rtmp.elektrika.cz/live/myStream.sdp/playlist.m3u8", + "label": "Elektrika TV" + }, + { + "type": "hls", + "url": "https://n105.quickmedia.tv/noetvplus/live/noetvplus/Shz3_1_1/chunks_dvr_timeshift-0-7200.m3u8", + "label": "TV Noe+" + }, + { + "type": "hls", + "url": "https://stream.polar.cz/polar/polarlive-1/playlist.m3u8", + "label": "Polar TV" + }, + { + "type": "hls", + "url": "https://antik.streaming.tivio.studio/channels/IxLi19VRasgu94bIaXbH/index.m3u8", + "label": "DVTV Extra" + }, + { + "type": "hls", + "url": "https://dash4.antik.sk/live/test_ocko_star/playlist.m3u8", + "label": "Ocko Star" + }, + { + "type": "hls", + "url": "https://dash2.antik.sk/live/test_ocko_black/playlist.m3u8", + "label": "Ocko Black" + }, + { + "type": "hls", + "url": "https://stream-23.mazana.tv/slagrmuzika.m3u8s", + "label": "Slager Muzika" + }, + { + "type": "hls", + "url": "https://stream-13.mazana.tv/slagroriginal.m3u8s", + "label": "Slager Original" + }, + { + "type": "hls", + "url": "https://ocko-live.ssl.cdn.cra.cz/channels/ocko_expres/playlist.m3u8", + "label": "Ocko Expres" + }, + { + "type": "hls", + "url": "https://ocko-live-dash.ssl.cdn.cra.cz/cra_live2/ocko.stream.1.smil/playlist.m3u8", + "label": "Ocko" + }, + { + "type": "hls", + "url": "https://streams2.sofast.tv/vglive-sk-461164/index.m3u8", + "label": "Yachting TV" + }, + { + "type": "hls", + "url": "https://ocko-live.ssl.cdn.cra.cz/channels/ocko_gold/playlist.m3u8", + "label": "Ocko Gold" + }, + { + "type": "hls", + "url": "https://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8", + "label": "Retro Music TV" + } + ], + "Taiwan": [ + { + "type": "hls", + "url": "https://streamipcfapp.akamaized.net/live/_definst_/live_720/key_b1500.m3u8", + "label": "Taiwan Indigenous TV" + }, + { + "type": "hls", + "url": "https://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/chunklist_w1177047531.m3u8", + "label": "WXTV" + }, + { + "type": "hls", + "url": "https://live.streamingfast.net/osmflivech1.m3u8", + "label": "Good TV" + }, + { + "type": "hls", + "url": "https://5ddce30eb4b55.streamlock.net/bltvhd/bltv1/playlist.m3u8", + "label": "Beautiful Life TV" + } + ], + "Congo": [ + { + "type": "hls", + "url": "https://stream.berosat.live/hls/esaie45-tv/esaie45-tv.m3u8", + "label": "Esaie 45 Tele" + } + ], + "Belarus": [ + { + "type": "hls", + "url": "https://ngtrk.dc.beltelecom.by/ngtrk/smil:informacionnyy.smil/playlist.m3u8", + "label": "Perviy Informationniy" + }, + { + "type": "hls", + "url": "https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8", + "label": "Belarus-24" + }, + { + "type": "hls", + "url": "https://live.dc.beltelecom.by/vtv/vitebsk.stream/playlist.m3u8", + "label": "Vitebsk" + }, + { + "type": "hls", + "url": "https://ctv.dc.beltelecom.by/ctv/ctv.stream/playlist.m3u8", + "label": "STV" + }, + { + "type": "hls", + "url": "https://stream1.dc.beltelecom.by/radiomir/studio.stream/playlist.m3u8", + "label": "Radio Mir" + } + ], + "Benin": [ + { + "type": "hls", + "url": "https://playtv4k.live/live/kassouatv/index.m3u8", + "label": "KassouaTV" + }, + { + "type": "hls", + "url": "https://live.tvcbenin.com/direct/729c37a1d3319ee21991227b1f84c687.sdp/playlist.m3u8", + "label": "TVC Benin" + }, + { + "type": "hls", + "url": "https://rtmp.edentv.bj/hls/stream.m3u8", + "label": "Eden TV" + }, + { + "type": "hls", + "url": "https://lnmlive.com/live/lnmtv.m3u8", + "label": "Le Nouveau Manager TV" + }, + { + "type": "hls", + "url": "https://cdn-us-east-prod-ingest-infra-dacast-com.akamaized.net/dbe59037-07a0-4f1c-82a2-7de94b4b62d2/index.m3u8", + "label": "Speedline TV" + } + ], + "Estonia": [ + { + "type": "hls", + "url": "https://router.euddn.net/862366dd346d6b6392d5231546f3d179/smil:rk_live_1.smil/playlist.m3u8?c=8005", + "label": "Riigikogu" + }, + { + "type": "hls", + "url": "https://sb.err.ee/live/etv.m3u8", + "label": "ETV (EE)" + }, + { + "type": "hls", + "url": "https://cdn-backup.lulzy.eu/vdance_stream/index.m3u8", + "label": "Vantage Dance" + }, + { + "type": "hls", + "url": "https://m1b2.worldcast.tv/dancetelevisiontwo/dancetelevisiontwo.m3u8", + "label": "DanceTV Deep House District" + }, + { + "type": "hls", + "url": "https://m2b2.worldcast.tv:7443/dancetelevisionthree/dancetelevisionthree.m3u8", + "label": "DanceTV Techno Warehouse" + }, + { + "type": "hls", + "url": "https://m2b2.worldcast.tv:7443/dancetelevisionfive/dancetelevisionfive.m3u8", + "label": "DanceTV House Floor" + }, + { + "type": "hls", + "url": "https://m1b2.worldcast.tv/dancetelevisionone/dancetelevisionone.m3u8", + "label": "Best of Dance TV" + }, + { + "type": "hls", + "url": "https://cdn-backup.lulzy.eu/vmusic_stream/index.m3u8", + "label": "Vantage Music" + }, + { + "type": "hls", + "url": "https://cdn-backup.lulzy.eu/vclassic_stream/index.m3u8", + "label": "Vantage Classic" + }, + { + "type": "hls", + "url": "https://m2b2.worldcast.tv:7443/dancetelevisionfour/dancetelevisionfour.m3u8", + "label": "DanceTV Algorhythm" + }, + { + "type": "hls", + "url": "https://lifetv.bitflip.ee/live/stream1.m3u8", + "label": "Life TV (EE)" + }, + { + "type": "hls", + "url": "https://hls.vantagetv.ee/vrock_stream/index.m3u8", + "label": "Vantage Rock" + } + ], + "Bosnia and Herzegovina": [ + { + "type": "hls", + "url": "https://live.tv-m.net/hls/stream.m3u8", + "label": "Televizija M" + }, + { + "type": "hls", + "url": "https://stream.rtvze.ba/live/123/123.m3u8", + "label": "RTV Zenica" + }, + { + "type": "hls", + "url": "https://balkanmedia.dynu.net/hls/tv5web.m3u8", + "label": "Televizija 5" + }, + { + "type": "hls", + "url": "https://prd-hometv-live-open.spectar.tv/ERO_1_083/playlist.m3u8", + "label": "RTV HB" + }, + { + "type": "hls", + "url": "https://pluslive.rtrs.tv/plus/plus/playlist.m3u8", + "label": "RTRS plus" + }, + { + "type": "hls", + "url": "https://1601580044.rsc.cdn77.org/live/_jcn_/amlst:Italiasette/playlist.m3u8", + "label": "Maria+Vision Medjugorje" + } + ], + "Uzbekistan": [ + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1015/tracks-v1a1/playlist.m3u8", + "label": "UzReport TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1011/tracks-v1a1/playlist.m3u8", + "label": "O'zbekiston 24" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1221/tracks-v1a1/playlist.m3u8", + "label": "Renessans TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1204/tracks-v1a1/mono.m3u8", + "label": "Taraqqiyot TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1003/tracks-v1a1/playlist.m3u8", + "label": "Toshkent" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1013/tracks-v1a1/playlist.m3u8", + "label": "Mahalla" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1220/tracks-v1a1/mono.m3u8", + "label": "Nurafshon TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1002/tracks-v1a1/playlist.m3u8", + "label": "Yoshlar" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1014/tracks-v1a1/playlist.m3u8", + "label": "Milliy" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1460/tracks-v1a1/mono.m3u8", + "label": "Navoiy MTRK" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1008/tracks-v1a1/playlist.m3u8", + "label": "Navo" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1467/playlist.m3u8", + "label": "Qaraqalpaqstan" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1005/tracks-v1a1/playlist.m3u8", + "label": "Madaniyat va ma'rifat" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1458/tracks-v1a1/mono.m3u8", + "label": "Farg'ona MTRK" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1006/tracks-v1a1/playlist.m3u8", + "label": "Dunyo bo'ylab" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1206/tracks-v1a1/playlist.m3u8", + "label": "Dasturxon TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1497/tracks-v1a1/mono.m3u8", + "label": "Makon TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1063/tracks-v1a1/mono.m3u8", + "label": "Muz TV Uzbekistan" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1217/tracks-v1a1/playlist.m3u8", + "label": "MY5" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1017/tracks-v1a1/playlist.m3u8", + "label": "Sevimli TV" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1209/tracks-v1a1/playlist.m3u8", + "label": "O'zbekiston Tarixi" + }, + { + "type": "hls", + "url": "https://fl.biztv.media/cheksiz_tv_480_unif7hujidth7f4du83jrhuid3k94j8hfj8d93eubych8eju93n4ubt/tracks-v1a1/mono.m3u8", + "label": "Cheksiz TV" + }, + { + "type": "hls", + "url": "https://fl.biztv.media/biz_tv_720_uni8jhub4h8fub4idejswh8dh3j94finbu4nidj39inwsj92in3d/index.m3u8", + "label": "BIZ TV" + }, + { + "type": "hls", + "url": "https://fl.biztv.media/music_720_QAKpGmVUjaPApCNjpsgBxrdqNihAkl/index.m3u8", + "label": "BIZ Music" + }, + { + "type": "hls", + "url": "https://stream8.cinerama.uz/1016/tracks-v1a1/mono.m3u8", + "label": "Zo'r TV" + } + ], + "Trinidad and Tobago": [ + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8322/8322/playlist.m3u8", + "label": "The Islamic Network" + }, + { + "type": "hls", + "url": "https://6zklxwavdw9b-hls-live.5centscdn.com/RIDDIMNHOPE/0954119dc19d9003dd5f4bb37b3f559e.sdp/playlist.m3u8", + "label": "Riddim & Hope TV" + }, + { + "type": "hls", + "url": "https://stream.bizzmedia.biz/bizz_tv/index.m3u8", + "label": "Bizz TV" + }, + { + "type": "hls", + "url": "https://w6oy7x7jlxrg-hls-live.5centscdn.com/MandETV/955ad3298db330b5ee880c2c9e6f23a0.sdp/playlist.m3u8", + "label": "Scorch TV" + }, + { + "type": "hls", + "url": "https://5c59fd5680a05.streamlock.net/live/_definst_/ngrp:SANKHYATV.stream_all/playlist.m3u8", + "label": "Sankhya TV" + } + ], + "Laos": [ + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/briantv.sdp/playlist.m3u8", + "label": "Brian TV" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/laonet.sdp/playlist.m3u8", + "label": "Lao Net TV" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/ichannel.sdp/playlist.m3u8", + "label": "ISTV (LA)" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/ohmuanglao.stream/playlist.m3u8", + "label": "Oh Muang Lao TV" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/khaomwungmai.sdp/playlist.m3u8", + "label": "Dao Lane Xang TV" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/lookthoongtv.sdp/playlist.m3u8", + "label": "Look Thoong TV" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/ningtv.sdp/playlist.m3u8", + "label": "Ning TV" + }, + { + "type": "hls", + "url": "https://livefta.malimarcdn.com/ftaedge00/vatilaotv.stream/playlist.m3u8", + "label": "Vati Lao" + } + ], + "Rwanda": [ + { + "type": "hls", + "url": "https://tv.btnrwanda.com:3973/live/btnv2live.m3u8", + "label": "BTN TV (RW)" + }, + { + "type": "hls", + "url": "https://5c46fa289c89f.streamlock.net/pub1live/mystream/playlist.m3u8", + "label": "TV10" + }, + { + "type": "hls", + "url": "https://5c46fa289c89f.streamlock.net/pub2live/myStream/playlist.m3u8", + "label": "Isibo TV" + }, + { + "type": "hls", + "url": "https://5c46fa289c89f.streamlock.net/rtv25/rtv/playlist.m3u8", + "label": "Rwanda TV" + }, + { + "type": "hls", + "url": "https://5c46fa289c89f.streamlock.net/kc2/kc2/chunklist.m3u8", + "label": "KC2" + } + ], + "Panama": [ + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/nextv.m3u8", + "label": "Nex TV Canal 21" + }, + { + "type": "hls", + "url": "https://1206618505.rsc.cdn77.org/LS-ATL-59020-1/playlist.m3u8", + "label": "Hosanna Vision" + }, + { + "type": "hls", + "url": "https://sistemastr.tropicalmoonmedia.com/live/7FFCFEC3978B68D1A2ED0A38DE96AF76/12.m3u8", + "label": "Corazon TV" + }, + { + "type": "hls", + "url": "https://streamlov.alsolnet.com/planet1009fm/live/playlist.m3u8", + "label": "Planet 100.9 FM" + }, + { + "type": "hls", + "url": "https://cdn-cloudfront.us-east-1.prod.ingest.aws-infra.dacast.com/live/64917431-2f51-0a46-d4d0-04d111b2393f/master.m3u8", + "label": "Vision Latina" + }, + { + "type": "hls", + "url": "https://sistemastr.tropicalmoonmedia.com/live/7C452409423F57ADC960F6405635267F/7.m3u8", + "label": "Pindin TV" + }, + { + "type": "hls", + "url": "https://vcp8.myplaytv.com:1936/superq/superq/playlist.m3u8", + "label": "Super Q Panama" + }, + { + "type": "hls", + "url": "https://www.streaming507.net:19360/videoradiohogar/videoradiohogar.m3u8", + "label": "Radio Hogar" + }, + { + "type": "hls", + "url": "https://www.streaming507.net:19360/anconvideo/anconvideo.m3u8", + "label": "Radio Ancon" + }, + { + "type": "hls", + "url": "https://www.streaming507.net:19360/videotropiq/videotropiq.m3u8", + "label": "Tropi Q 99.7 FM" + }, + { + "type": "hls", + "url": "https://movil.ejeserver.com/live/mas23tv.m3u8", + "label": "Mas23 TV" + }, + { + "type": "hls", + "url": "https://www.streaming507.net:19360/videofabulosa/videofabulosa.m3u8", + "label": "Fabulosa Estereo 100.5 FM" + } + ], + "Puerto Rico": [ + { + "type": "hls", + "url": "https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream2/master.m3u8", + "label": "WKAQ-TV 2.2" + }, + { + "type": "hls", + "url": "https://5bf8041cb3fed.streamlock.net/mastvpr/mastvpr/playlist.m3u8", + "label": "WXWZ-LD 23.1" + }, + { + "type": "hls", + "url": "https://video2.getstreamhosting.com:19360/8216/8216.m3u8", + "label": "CAtv" + }, + { + "type": "hls", + "url": "https://live.11-cdn.com/TeleOnce/3fc63fe00050c646635f16b071cd33e2.sdp/playlist.m3u8", + "label": "TeleOnce" + }, + { + "type": "hls", + "url": "https://amg01529-defiancetv-defiancemedia-glewed-tre8x.amagi.tv/playlist.m3u8", + "label": "DeFiance Media" + }, + { + "type": "hls", + "url": "https://59825a54e4454.streamlock.net:8443/william233/william233/playlist.m3u8", + "label": "Pura Palabra" + }, + { + "type": "hls", + "url": "https://627bb251f23c7.streamlock.net:444/TopRadioTV/TopRadioTV/playlist.m3u8", + "label": "Telenorte" + }, + { + "type": "hls", + "url": "https://video1.getstreamhosting.com:1936/8226/8226/playlist.m3u8", + "label": "WELU 8.1" + }, + { + "type": "hls", + "url": "https://59825a54e4454.streamlock.net:8443/pastorairisn394/pastorairisn394/chunklist_w239411719.m3u8", + "label": "WECN" + }, + { + "type": "hls", + "url": "https://stream.nuevavidafm.net:3937/live/nuevavidalive.m3u8", + "label": "Nueva Vida FM" + }, + { + "type": "hls", + "url": "https://59825a54e4454.streamlock.net:8443/william652/william652/playlist.m3u8", + "label": "Triunfo 96.9 FM" + }, + { + "type": "hls", + "url": "https://583ed2f226ac2.streamlock.net/theretrochannel/stream/playlist.m3u8", + "label": "The Retro Channel" + }, + { + "type": "hls", + "url": "https://stream.eleden.com/livelax/ngrp:livelax_all/playlist.m3u8", + "label": "La-X" + }, + { + "type": "hls", + "url": "https://stream.eleden.com/livesalvatv/ngrp:livesalvatv_all/playlist.m3u8", + "label": "Salvacion TV" + }, + { + "type": "hls", + "url": "https://stream.eleden.com/livewtpm/ngrp:livewtpm_all/playlist.m3u8", + "label": "Paraiso TV" + }, + { + "type": "hls", + "url": "https://5dbcd1053301e.streamlock.net:4443/farodesantidad/farodesantidad/playlist.m3u8", + "label": "Faro de Santidad TV" + }, + { + "type": "hls", + "url": "https://6110f70ea8d0e.streamlock.net/1689/1689/playlist.m3u8", + "label": "Candelita TV" + }, + { + "type": "hls", + "url": "https://59825a54e4454.streamlock.net:8443/papo351/papo351/playlist.m3u8", + "label": "Buena TV" + }, + { + "type": "hls", + "url": "https://584097344c1f0.streamlock.net/29/stream/playlist.m3u8", + "label": "Familia Vision HD" + }, + { + "type": "hls", + "url": "https://67acccf130420.streamlock.net/enlacepr1/enlacepr1/playlist.m3u8", + "label": "WDWL 58.1" + }, + { + "type": "hls", + "url": "https://627bb251f23c7.streamlock.net:444/CDMInternacional/CDMInternacional/playlist.m3u8", + "label": "CDM Internacional" + } + ], + "Moldova": [ + { + "type": "hls", + "url": "https://realitatealive.md/tv/rlive.m3u8", + "label": "Realitatea TV" + }, + { + "type": "hls", + "url": "https://cachestar.privesc.eu/liniar/moldova/playlist.m3u8", + "label": "Privesc.Eu TV" + }, + { + "type": "hls", + "url": "https://v0.trm.md/static/streaming-playlists/hls/d5fafab0-9c37-4746-9e7a-b2d6c0427015/master.m3u8", + "label": "Moldova 2" + }, + { + "type": "hls", + "url": "https://tvr-moldova.lg.mncdn.com/tvrmoldova/smil:tvrmoldova.smil/chunklist.m3u8", + "label": "TVR Moldova" + }, + { + "type": "hls", + "url": "https://tsv.md/stream/hls/tsv-online/index.m3u8", + "label": "TSV" + }, + { + "type": "hls", + "url": "https://radiolive.trm.md:8001/hls_rmm/muzical.m3u8", + "label": "Radio Moldova Muzical" + }, + { + "type": "hls", + "url": "https://radiolive.trm.md:8001/hls_rmt/tineret.m3u8", + "label": "Radio Moldova Tineret" + }, + { + "type": "hls", + "url": "https://hitfm.nfthost.net/hls/hitfm/live_all/playlist.m3u8", + "label": "Hit FM" + }, + { + "type": "hls", + "url": "https://tezaurtv.md/stream/index.m3u8", + "label": "Tezaur TV" + } + ], + "Burkina Faso": [ + { + "type": "hls", + "url": "https://d2iqjnqfr8pv3b.cloudfront.net/out/v1/d09d2fc718404cd8bccd3eba2444dd70/index.m3u8", + "label": "Filinfo TV" + }, + { + "type": "hls", + "url": "https://savane24.tv:5443/LiveApp/streams/Y4fyif69Q0ll6MeH2190896734859843.m3u8", + "label": "Savane TV" + } + ], + "Nicaragua": [ + { + "type": "hls", + "url": "https://cdn.vivamediosni.com/viva_720p/index.m3u8", + "label": "Viva Nicaragua Canal 13" + }, + { + "type": "hls", + "url": "https://streamingcws30.com/tn8/videotn8/playlist.m3u8", + "label": "TN8" + }, + { + "type": "hls", + "url": "https://cootv.cootel.com.ni:8095/Canal40_WTV/playlist.m3u8", + "label": "WTV Canal 20" + }, + { + "type": "hls", + "url": "https://stmv1.transmissaodigital.com/pedro9800/pedro9800/playlist.m3u8", + "label": "Escuchame Radio TV" + }, + { + "type": "hls", + "url": "https://netzerstreaming.com:4433/hls/olammetro/index.m3u8", + "label": "Olam Metro TV" + } + ], + "Switzerland": [ + { + "type": "hls", + "url": "https://amg00735-videosolutions-amg00735c15-wedotv-eu-1915.playouts.now.amagi.tv/playlist/amg00735-videosolutionsagfast-wedoamor-wedotveu/playlist.m3u8", + "label": "Wedo TV Amor" + }, + { + "type": "hls", + "url": "https://cdn.katapy.io/cache/stream/katapytv/dieu/playlist.m3u8", + "label": "Max TV" + }, + { + "type": "hls", + "url": "https://vstream-cdn.ch/hls/teleticino.m3u8", + "label": "TeleTicino" + }, + { + "type": "hls", + "url": "https://canalalpha.vedge.infomaniak.com/livecast/ik:canalalpha/playlist.m3u8", + "label": "Canal Alpha Neuchatel" + }, + { + "type": "hls", + "url": "https://canalalphaju.vedge.infomaniak.com/livecast/ik:canalalphaju/playlist.m3u8", + "label": "Canal Alpha Jura" + }, + { + "type": "hls", + "url": "https://livevideo.infomaniak.com/streaming/livecast/tvm3/playlist.m3u8", + "label": "TVM 3" + }, + { + "type": "hls", + "url": "https://edge13.vedge.infomaniak.com/livecast/ik:event/manifest.m3u8", + "label": "Carac 1" + }, + { + "type": "hls", + "url": "https://amg00735-videosolutionsa-wedobigdocs-ono-0urlz.amagi.tv/playlist/amg00735-videosolutionsa-wedobigdocs-ono/playlist.m3u8", + "label": "Wedo Big Stories" + }, + { + "type": "hls", + "url": "https://amg01415-waterbearnetwor-waterbear-samsunguk-1h0y8.amagi.tv/playlist/amg01415-waterbearnetwor-waterbear-samsunguk/playlist.m3u8", + "label": "WaterBear" + }, + { + "type": "hls", + "url": "https://vstream-cdn.ch/hls/radio3i.m3u8", + "label": "Radio 3i" + }, + { + "type": "hls", + "url": "https://bild-und-ton.stream/die-neue-zeit-tv-live/smil:dnz-de.smil/playlist.m3u8", + "label": "Die Neue Zeit TV" + }, + { + "type": "hls", + "url": "https://www.rtvpendimi.com:19360/tvpendimi/tvpendimi.m3u8", + "label": "RTV Pendimi" + }, + { + "type": "hls", + "url": "https://585b674743bbb.streamlock.net/9030/9030/playlist.m3u8", + "label": "RADIO DISCOunt TV" + }, + { + "type": "hls", + "url": "https://g5nl63z8lpq6-hls-live.5centscdn.com/tvistream/a5586d8ea3b7b021120a05c60dc59876.sdp/playlist.m3u8", + "label": "Immaculata TV" + } + ], + "Norway": [ + { + "type": "hls", + "url": "https://streamnorge.com:8088/hls/tvo.m3u8", + "label": "TV Ostfold" + }, + { + "type": "hls", + "url": "https://cdn010.panaccess.com/5677_streams/TVMODUM/index.m3u8", + "label": "TVModum" + }, + { + "type": "hls", + "url": "https://frikanalen.no/stream/index.m3u8", + "label": "Frikanalen" + }, + { + "type": "hls", + "url": "https://digicom.hls.iptvdc.com/canalmotor/index.m3u8", + "label": "Canal Motor" + } + ], + "Nepal": [ + { + "type": "hls", + "url": "https://streaming.tvnepal.com:19360/raynewsdaily/720p.m3u8", + "label": "Ray TV HD" + }, + { + "type": "hls", + "url": "https://streaming.tvnepal.com:19360/capitaltv/720p.m3u8", + "label": "Capital TV HD" + }, + { + "type": "hls", + "url": "https://ktvhdsg.ekantipur.com:8443/high_quality_85840165/hd/kantipurtv/hd_1080/chunks.m3u8", + "label": "Kantipur TV" + }, + { + "type": "hls", + "url": "https://live.divyadarshantv.com/hls/0/stream.m3u8", + "label": "Divya Darshan TV" + } + ], + "Jamaica": [ + { + "type": "hls", + "url": "https://vod2live.univtec.com/manifest/a99a1804-dc83-411f-8c1c-b62f08cdfa59.m3u8", + "label": "TVJ" + }, + { + "type": "hls", + "url": "https://25466019af9b7aed.servers.dvcloud.tv/hls/iptv_providers/fhvtgifbqbcjp0g19mdd76t18tpalu4k.m3u8", + "label": "Caribbean Gospel TV" + }, + { + "type": "hls", + "url": "https://na.linear.zype.com/bf94f9f4-383c-40e0-9d49-279a4f33ab8d/f29b8836-d990-4c8d-b421-192a8f43edc4-zype/live.m3u8", + "label": "GNN TV" + }, + { + "type": "hls", + "url": "https://angel.btbn.tv:5443/mtmtv/streams/live.m3u8", + "label": "Mercy and Truth Ministries Television" + } + ], + "Saint Lucia": [ + { + "type": "hls", + "url": "https://vids1.intacs.com/caribbeanhot7tv/ch7-1.stream/playlist.m3u8", + "label": "Caribbean Hot 7 TV" + }, + { + "type": "hls", + "url": "https://stream.dbstvstlucia.com/hls/dbstv_main.m3u8", + "label": "DBS TV" + } + ], + "Kuwait": [ + { + "type": "hls", + "url": "https://kwtkbta.cdn.mangomolo.com/kb/smil:kb.stream.smil/chunklist.m3u8", + "label": "KTV News" + }, + { + "type": "hls", + "url": "https://kwtktv2ta.cdn.mangomolo.com/ktv2/smil:ktv2.stream.smil/chunklist.m3u8", + "label": "KTV 2" + }, + { + "type": "hls", + "url": "https://kwtktvata.cdn.mangomolo.com/ktva/smil:tktva.stream.smil/chunklist.m3u8", + "label": "KTV Arabe" + }, + { + "type": "hls", + "url": "https://659605a54e9a6.streamlock.net:8443/live/livestream/playlist.m3u8", + "label": "Ritmu TV" + }, + { + "type": "hls", + "url": "https://ch14.tv/live/ch4teendoc/playlist.m3u8", + "label": "Ch4Teen Documentary" + }, + { + "type": "hls", + "url": "https://kwtethta.cdn.mangomolo.com/eth/smil:eth.stream.smil/chunklist.m3u8", + "label": "KTV Ethraa" + }, + { + "type": "hls", + "url": "https://kwtktvaqta.cdn.mangomolo.com/ktvaq/smil:tktvaq.stream.smil/chunklist.m3u8", + "label": "KTV Al Qurain" + } + ], + "Israel": [ + { + "type": "hls", + "url": "https://contact.gostreaming.tv/Con-11/index.m3u8", + "label": "Channel 9" + }, + { + "type": "hls", + "url": "https://i24newshebrew-cdn.encoders.immergo.tv/master.m3u8", + "label": "i24NEWS Hebrew" + }, + { + "type": "hls", + "url": "https://kancdn.medonecdn.net/livehls/oil/kancdn-live/live/makan/live.livx/playlist.m3u8", + "label": "Makan 33" + }, + { + "type": "hls", + "url": "https://stream.panet.com/edge/halaTV/playlist.m3u8", + "label": "Hala TV" + }, + { + "type": "hls", + "url": "https://r.il.cdn-redge.media/livehls/oil/ch14/live/ch14/live.livx/playlist.m3u8", + "label": "Now 14" + }, + { + "type": "hls", + "url": "https://1247634592.rsc.cdn77.org/1247634592/playlist.m3u8", + "label": "Shelanu.TV" + }, + { + "type": "hls", + "url": "https://edge3.uk.kab.tv/live/tv66-heb-high/playlist.m3u8", + "label": "Kabbalah for the People Israel" + }, + { + "type": "hls", + "url": "https://cdn.cybercdn.live/HidabrootIL/Live97/playlist.m3u8", + "label": "Hidabroot" + } + ], + "Maldives": [ + { + "type": "hls", + "url": "https://sunplay-cdn.bitratelabs.com/live/local-channel/vtv-7a0f24809c234ea78d972b1f336ac1b9/index.m3u8", + "label": "VTV" + }, + { + "type": "hls", + "url": "https://sunplay-cdn.bitratelabs.com/live/local-channel-fhd/ch13-28754fda0a7f338e8fccfe7206ab9be8_1080p/index.m3u8", + "label": "Channel 13" + }, + { + "type": "hls", + "url": "https://sunplay-cdn.bitratelabs.com/live/local-channel/ntv-e3d4300b49c8c901e9339174215d7580/index.m3u8", + "label": "NTV (MV)" + }, + { + "type": "hls", + "url": "https://sendlive.online/hls/mmtv.m3u8", + "label": "MMTV" + }, + { + "type": "hls", + "url": "https://lana.psm.mv/live/tvm.m3u8", + "label": "TV Maldives" + } + ], + "New Zealand": [ + { + "type": "hls", + "url": "https://ptvlive.kordia.net.nz/out/v1/daf20b9a9ec5449dadd734e50ce52b74/index.m3u8", + "label": "Parliament TV (NZ)" + }, + { + "type": "hls", + "url": "https://stream.wairarapatv.co.nz/Broadband_High/playlist.m3u8", + "label": "Wairarapa TV" + }, + { + "type": "hls", + "url": "https://ptvlive.kordia.net.nz/out/v1/3fc2254c865a457c8d7fbbce227a2aae/index.m3u8", + "label": "Kordia TV" + }, + { + "type": "hls", + "url": "https://i.mjh.nz/.r/maori-tv.m3u8", + "label": "Whakaata Maori" + }, + { + "type": "hls", + "url": "https://i.mjh.nz/.r/te-reo.m3u8", + "label": "Te Reo" + }, + { + "type": "hls", + "url": "https://uni01rtmp.tulix.tv/firstlight/firstlight.smil/playlist.m3u8", + "label": "Firstlight" + } + ], + "Croatia": [ + { + "type": "hls", + "url": "https://tvjadran.stream.agatin.hr:3412/live/tvjadranlive.m3u8", + "label": "TV Jadran" + }, + { + "type": "hls", + "url": "https://live.leveex.hr/hls/live.m3u8", + "label": "SBTV" + }, + { + "type": "hls", + "url": "https://stream.luci.xyz/hls/LTV.m3u8", + "label": "Libertas TV" + }, + { + "type": "hls", + "url": "https://diadoratv.stream/live/diadora/playlist.m3u8", + "label": "Diadora TV" + }, + { + "type": "hls", + "url": "https://stream.cmctv.hr:49998/kit/live.m3u8", + "label": "Klape i Tambure TV" + }, + { + "type": "hls", + "url": "https://stream.cmctv.hr:49998/cmc/live.m3u8", + "label": "CMC TV" + }, + { + "type": "hls", + "url": "https://stream.agatin.hr:3727/live/tvnovalive.m3u8", + "label": "TV Nova" + }, + { + "type": "hls", + "url": "https://hls.shift.tv/live/shifttv/playlist.m3u8", + "label": "Shift TV" + }, + { + "type": "hls", + "url": "https://pool.alter-media.hr:1936/live/myStream/playlist.m3u8?DVR=", + "label": "Radio Televizija Banovina" + } + ], + "Singapore": [ + { + "type": "hls", + "url": "https://d2e1asnsl7br7b.cloudfront.net/7782e205e72f43aeb4a48ec97f66ebbe/index.m3u8", + "label": "CNA (SG)" + }, + { + "type": "hls", + "url": "https://amg01082-cna-amg01082c1-rlaxx-us-11304.playouts.now.amagi.tv/playlist.m3u8", + "label": "CNA Originals" + } + ], + "Guyana": [ + { + "type": "hls", + "url": "https://cdn-us-east-prod-ingest-infra-dacast-com.akamaized.net/8424fb7f-99a9-87ae-3861-f0620849d11c/source/index.m3u8", + "label": "HGPTV" + }, + { + "type": "hls", + "url": "https://rpn.bozztv.com/ignitelive/ignitetv/ignitetv/tracks-v1a1/mono.m3u8", + "label": "Ignite Television" + } + ], + "Cuba": [ + { + "type": "hls", + "url": "https://eu1.servers10.com:8081/8192/index.m3u8", + "label": "Prensa Latina TV" + } + ], + "Mali": [ + { + "type": "hls", + "url": "https://lbgo.bozztv.com/ssh101/ssh101/d3tvnet/playlist.m3u8", + "label": "D3 TV" + } + ], + "Sudan": [ + { + "type": "hls", + "url": "https://hls.dabangasudan.org/hls/stream.m3u8", + "label": "Dabanga TV" + }, + { + "type": "hls", + "url": "https://cdn-globecast.akamaized.net/live/eds/sudan_tv/hls_roku/index.m3u8", + "label": "Sudan TV" + } + ], + "Lithuania": [ + { + "type": "hls", + "url": "https://stream-live.lrt.lt/radijas/master.m3u8", + "label": "LRT Radijas" + }, + { + "type": "hls", + "url": "https://stream-live.lrt.lt/lituanica/master.m3u8", + "label": "LRT Lituanica" + }, + { + "type": "hls", + "url": "https://stream-live.lrt.lt/opus/master.m3u8", + "label": "LRT Opus" + }, + { + "type": "hls", + "url": "https://stream-live.lrt.lt/klasika/master.m3u8", + "label": "LRT Klasika" + }, + { + "type": "hls", + "url": "https://m-1.data.lt/m-1/smil:m-1.smil/playlist.m3u8", + "label": "M-1" + }, + { + "type": "hls", + "url": "https://live.lietuvosryto.tv/live/hls/eteris.m3u8", + "label": "Lietuvos Rytas TV" + } + ], + "Serbia": [ + { + "type": "hls", + "url": "https://webtvstream.bhtelecom.ba/rts2.m3u8", + "label": "RTS 2" + }, + { + "type": "hls", + "url": "https://tv.rtvnp.rs/stream.m3u8", + "label": "RTV Novi Pazar" + }, + { + "type": "hls", + "url": "https://stream2.nmih.hu:4102/live.m3u8", + "label": "TV Panon" + }, + { + "type": "hls", + "url": "https://vod1.laki.eu/live/hram/index.m3u8", + "label": "TV Hram" + }, + { + "type": "hls", + "url": "https://stream.nmih.hu:4102/live.m3u8", + "label": "Pannon TV" + }, + { + "type": "hls", + "url": "https://peer2.tdiradio.com/static/streaming-playlists/hls/4207de1d-52e8-4591-ad9e-218069b864d1/0.m3u8", + "label": "Radio Karolina TV" + }, + { + "type": "hls", + "url": "https://peer2.tdiradio.com/static/streaming-playlists/hls/bab99862-ec1c-474f-9a02-4f8c8677d565/0.m3u8", + "label": "Radio Hit FM TV" + }, + { + "type": "hls", + "url": "https://peer2.tdiradio.com/static/streaming-playlists/hls/7c3ea8d3-49dc-4e1b-8b1e-dc6fab71f5cf/0.m3u8", + "label": "Radio Lola TV" + }, + { + "type": "hls", + "url": "https://peer2.tdiradio.com/static/streaming-playlists/hls/8f5d84ce-e8ac-4109-9975-9665f5605557/master.m3u8", + "label": "TDI Radio TV" + }, + { + "type": "hls", + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-live/j3a-n14-2pf-g3s/index.m3u8", + "label": "ZICO TV" + }, + { + "type": "hls", + "url": "https://shift03.isp.bg/DMSat/index.m3u8", + "label": "DM Sat" + } + ], + "Tanzania": [ + { + "type": "hls", + "url": "https://goliveafrica.media:9998/live/625965017ed69/index.m3u8", + "label": "Dodoma TV" + }, + { + "type": "hls", + "url": "https://stream-134630.castr.net/5fe35eae8c53540cab83659a/live_44ed95e05b6d11f18d5d85805abbdd6f/index.m3u8", + "label": "TBC2" + } + ], + "Niger": [ + { + "type": "hls", + "url": "https://mediaserver1.castpin.com/hls/telesahel/index.m3u8", + "label": "Tele Sahel" + }, + { + "type": "hls", + "url": "https://mediaserver1.castpin.com/hls/taltv/index.m3u8", + "label": "Tal TV" + } + ], + "Denmark": [ + { + "type": "hls", + "url": "https://cdnapi.kaltura.com/p/2158211/sp/327418300/playManifest/entryId/1_24gfa7qq/protocol/https/format/applehttp/a.m3u8", + "label": "TV from the Danish Parliament" + }, + { + "type": "hls", + "url": "https://drlivedrtvahls.akamaized.net/hls/live/2113613/drlivedrtva/master.m3u8", + "label": "DRTV" + }, + { + "type": "hls", + "url": "https://livecdn.euw1-0005.jwplive.com/live/sites/J42OBHtp/media/vvNWt4O9/live.isml/.m3u8", + "label": "TV 2/Bornholm" + } + ], + "Tunisia": [ + { + "type": "hls", + "url": "https://sw1.tanitweb.net/TunisiaTV/_definst_/watania1/chunklist.m3u8", + "label": "El Watania 1" + }, + { + "type": "hls", + "url": "https://webcam.mosaiquefm.net/mosatv/_definst_/studio/playlist.m3u8?DVR", + "label": "Mosaique FM" + } + ], + "Eritrea": [ + { + "type": "hls", + "url": "https://jmc-live.ercdn.net/eritreatv/eritreatv.m3u8", + "label": "ERi-TV 1" + } ], - "Haiti": [ + "Finland": [ { "type": "hls", - "url": "https://cdn.haititivi.com/website/haitinews/index.m3u8", - "label": "Haiti News Channel" + "url": "https://virta2.nopolanews.fi:8443/live/smil:Stream1.smil/playlist.m3u8", + "label": "Nopola News" }, { "type": "hls", - "url": "https://uni01rtmp.tulix.tv/4vehtv/4vehtv-firetv/playlist.m3u8", - "label": "Radio Tele 4VEH" + "url": "https://yletvworld.akamaized.net/hls/live/622541/yletv2w/index.m3u8", + "label": "Yle TV2" }, { "type": "hls", - "url": "https://5790d294af2dc.streamlock.net/8124/8124/playlist.m3u8", - "label": "Tele Louange" + "url": "https://live-fi.tvkaista.net/mtv3/live.m3u8", + "label": "MTV3" }, { "type": "hls", - "url": "https://59d39900ebfb8.streamlock.net/RadioTelehit/RadioTelehit/playlist.m3u8", - "label": "Radio Tele Hit" + "url": "https://live-fi.tvkaista.net/eveo/live.m3u8?hd=true", + "label": "Eveo" }, { "type": "hls", - "url": "https://f-tx-edge-87.christianworldmedia.com/EJCFG/mp4:EJCFG/playlist.m3u8", - "label": "Radio Tele Full Gospel" + "url": "https://live-fi.tvkaista.net/nelonen/live.m3u8", + "label": "Nelonen" }, { "type": "hls", - "url": "https://5dcab9aed5331.streamlock.net/mrcompas1/livestream/playlist.m3u8", - "label": "Radio Tele Planet Compas" + "url": "https://yletvworld.akamaized.net/hls/live/622540/yletv1w/index.m3u8", + "label": "Yle TV1" + }, + { + "type": "hls", + "url": "https://yletvworld.akamaized.net/hls/live/622547/yletvteemafemw/index.m3u8", + "label": "Yle Teema & Fem" + }, + { + "type": "hls", + "url": "https://live-fi.tvkaista.net/star-channel/live.m3u8", + "label": "STAR Channel" + }, + { + "type": "hls", + "url": "https://onnitv.digitacdn.net/live/ott/onnitv/playlist.m3u8", + "label": "Onni TV" + }, + { + "type": "hls", + "url": "https://streaming.nartv.fi/live/ngrp:NAR_TV.stream_all/playlist.m3u8", + "label": "Nar-TV" + }, + { + "type": "hls", + "url": "https://hls.navahang.live/hls/stream.m3u8", + "label": "Navahang TV" + }, + { + "type": "hls", + "url": "https://live-fi.tvkaista.net/jim/live.m3u8?hd=true", + "label": "Jim" + }, + { + "type": "hls", + "url": "https://live-fi.tvkaista.net/liv/live.m3u8?hd=true", + "label": "Liv" + }, + { + "type": "hls", + "url": "https://vod.tv7.fi/tv7-fi/smil:tv7-fi.smil/playlist.m3u8", + "label": "Taivas TV7" + }, + { + "type": "hls", + "url": "https://vod.tv7.fi/tv7-ee/smil:tv7-ee.smil/playlist.m3u8", + "label": "Taevas TV7" + }, + { + "type": "hls", + "url": "https://vod.tv7.fi/tv7-se/smil:tv7-se.smil/playlist.m3u8", + "label": "Himlen TV7" + }, + { + "type": "hls", + "url": "https://streamer.radiotaajuus.fi/memfs/47f113bf-04ea-493b-a9d4-52945fd9db31.m3u8", + "label": "JRTV Jarviradio" } ], - "Morocco": [ + "Slovenia": [ { "type": "hls", - "url": "https://cdn.live.easybroadcast.io/abr_corp/83_medi1tv-maghreb_jnbspmg/playlist.m3u8", - "label": "Medi1TV Maghreb" + "url": "https://dash2.antik.sk/live/test_slo2_tizen/playlist.m3u8", + "label": "TV SLO 2" }, { "type": "hls", - "url": "https://136044159.r.cdnsun.net/storychannel.m3u8", - "label": "StoryChannel TV" + "url": "https://radio.serv.si/VeseljakGolicaTV/tracks-v1a1/mono.m3u8", + "label": "TV Veseljak Golica HD" }, { "type": "hls", - "url": "https://d2qh3gh0k5vp3v.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-n6pess5lwbghr/2M_ES.m3u8", - "label": "2M Monde" + "url": "https://folxsloapp.b-cdn.net/1080p/index.m3u8", + "label": "Folx Slovenija" + }, + { + "type": "hls", + "url": "https://584943999.r.worldssl.net/584943999/_definst_/vzivo/playlist.m3u8", + "label": "Exodus TV" } ], - "Ghana": [ + "Belize": [ { "type": "hls", - "url": "https://1681360479.rsc.cdn77.org/1681360479/index.m3u8", - "label": "Resurrection TV" + "url": "https://streamer1.nexgen.bz/GUADALUPE_MEDIA/index.m3u8", + "label": "Guadalupe Media" + } + ], + "Latvia": [ + { + "type": "hls", + "url": "https://retv2132.cloudycdn.services/slive/_definst_/retv_retv_channel_5k7_42787_default_891_hls.smil/playlist.m3u8", + "label": "Re TV" }, { "type": "hls", - "url": "https://playlist.dacast.com/live/a72117af-d78e-7ffe-7c12-1af6cd4a8483-live-42172a86-494b-a866-498f-dbaff4b5e3c0/master.m3u8", - "label": "Pent TV" + "url": "https://iptv.prosto.tv/ch238/index.m3u8", + "label": "Sea TV (LV)" }, { "type": "hls", - "url": "https://59nyqg8elwap-hls-live.5centscdn.com/APTV/85c20905211659d143febd7c32592ee0.sdp/playlist.m3u8", - "label": "AP TV" + "url": "https://air.star.lv/TV_Jurmala_multistream/index.m3u8", + "label": "TV Jurmala" + }, + { + "type": "hls", + "url": "https://player.tvnet.lv/stream/amlst:61659/playlist.m3u8", + "label": "TVNET (LV)" + }, + { + "type": "hls", + "url": "https://straume.vdtv.lv/vdtv2/index.m3u8", + "label": "Vidusdaugavas Televizija" + }, + { + "type": "hls", + "url": "https://00ff00.latnet.media/edge/swh_tv.smil/playlist.m3u8", + "label": "Radio SWH TV" } ], - "Algeria": [ + "Bahamas": [ { "type": "hls", - "url": "https://cdn.live.easybroadcast.io/abr_corp/66_al24_u4yga6h/corp/66_al24_u4yga6h_240p/chunks.m3u8", - "label": "AL24 News" + "url": "https://cdn-edge1.streamcomedia.com/abr_tngr969fm/abr-tngr969fm_streams/playlist.m3u8", + "label": "Guardian Talk Radio" } ], - "Somalia": [ + "Haiti": [ { "type": "hls", - "url": "https://cd198.anystream.uk:9092/iqapp/s03btv/playlist.m3u8", - "label": "Saab TV" + "url": "https://cdn.haititivi.com/website/haitinews/index.m3u8", + "label": "Haiti News Channel" + }, + { + "type": "hls", + "url": "https://5790d294af2dc.streamlock.net/8124/8124/playlist.m3u8", + "label": "Tele Louange" + }, + { + "type": "hls", + "url": "https://59d39900ebfb8.streamlock.net/RadioTelehit/RadioTelehit/playlist.m3u8", + "label": "Radio Tele Hit" + }, + { + "type": "hls", + "url": "https://5dcab9aed5331.streamlock.net/mrcompas1/livestream/playlist.m3u8", + "label": "Radio Tele Planet Compas" + }, + { + "type": "hls", + "url": "https://f-tx-edge-87.christianworldmedia.com/EJCFG/mp4:EJCFG/playlist.m3u8", + "label": "Radio Tele Full Gospel" + }, + { + "type": "hls", + "url": "https://uni01rtmp.tulix.tv/4vehtv/4vehtv-firetv/playlist.m3u8", + "label": "Radio Tele 4VEH" } ], - "Armenia": [ + "Hong Kong": [ { "type": "hls", - "url": "https://amtvusdvr.tulix.tv/am3abr/index.m3u8", - "label": "First Channel News" + "url": "https://amg01076-lightning-amg01076c5-rakuten-us-1788.playouts.now.amagi.tv/playlist/amg01076-lightning-newsworld-rakutenus/playlist.m3u8", + "label": "NewsWorld" }, { "type": "hls", - "url": "https://amtvusdvr.tulix.tv/am4abr/index.m3u8", - "label": "Armenia 1" + "url": "https://rthktv31-live.akamaized.net/hls/live/2036818/RTHKTV31/master.m3u8", + "label": "RTHK TV 31" + }, + { + "type": "hls", + "url": "https://cdn-apse1-prod.tsv2.amagi.tv/linear/amg01076-lightningintern-petclub-samsungnz/playlist.m3u8", + "label": "Pet Club TV" } ], - "Sweden": [ + "Angola": [ { "type": "hls", - "url": "https://cdn0-03837-liveedge0.dna.ip-only.net/03837-liveedge0/smil:03837-tx2/playlist.m3u8", - "label": "Expressen TV" + "url": "https://sgn-cdn-video.vods2africa.com/Tv-Zimbo/index.fmp4.m3u8", + "label": "TV Zimbo" }, { "type": "hls", - "url": "https://cdn0-03837-liveedge0.dna.ip-only.net/03837-liveedge0/smil:03837-tx4/playlist.m3u8", - "label": "Di TV" + "url": "https://w1.manasat.com/ktv-angola/smil:ktv-angola.smil/playlist.m3u8", + "label": "KK TV" }, { "type": "hls", - "url": "https://komhls.wns.live/hls/stream.m3u8", - "label": "Komala TV" + "url": "https://5cf4a2c2512a2.streamlock.net/tvmuzangala/tvmuzangala/playlist.m3u8", + "label": "Muzangala TV" } ], - "DR Congo": [ + "Kosovo": [ { "type": "hls", - "url": "https://stream.berosat.live:19360/baraka-hd/baraka-hd.m3u8", - "label": "Baraka Television" + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-livestream/lj9-pxm-o53-rp0/tracks-v4a1/mono.m3u8", + "label": "Kohavision" }, { "type": "hls", - "url": "https://mistserver.evi-tv.com/hls/evi_tv_live/index.m3u8", - "label": "EVI TV" + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-live/mps-vgx-u9p-qv1/index.m3u8", + "label": "TV Arta" + }, + { + "type": "hls", + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-live/2cz-npl-jfn-9he/tracks-v2a1/mono.m3u8", + "label": "RTV21" + }, + { + "type": "hls", + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-livestream-specific/1z8-byc-4ee-lc9/index.m3u8", + "label": "T7" + }, + { + "type": "hls", + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-livestream/rtk3/index.m3u8", + "label": "RTK 3" }, { "type": "hls", - "url": "https://stream.berosat.live:19360/rlpro-tv/rlpro-tv.m3u8", - "label": "RL PRO TV" + "url": "https://gjirafa-video-live.gjirafa.net/gjvideo-live/xej-xnb-ba0-kup/index.m3u8", + "label": "TV Syri" } ], - "Cuba": [ + "North Korea": [ { "type": "hls", - "url": "https://eu1.servers10.com:8081/8192/index.m3u8", - "label": "Prensa Latina TV" + "url": "https://kctv.koryofront.org/stream/ryongnamsan/index.m3u8", + "label": "Ryongnamsan Television" + }, + { + "type": "hls", + "url": "https://kctv.koryofront.org/stream/index.m3u8", + "label": "Korean Central Television" } ], - "Mali": [ + "Sierra Leone": [ { "type": "hls", - "url": "https://lbgo.bozztv.com/ssh101/ssh101/d3tvnet/playlist.m3u8", - "label": "D3 TV" + "url": "https://cdn-cloudfront.eu-central-1.prod.ingest.aws-infra.dacast.com/live/bff8bd53-ee89-2c76-6a51-95a0003f7d96/master.m3u8", + "label": "Mercy TV" } ], - "Sudan": [ + "Mozambique": [ { "type": "hls", - "url": "https://hls.dabangasudan.org/hls/stream.m3u8", - "label": "Dabanga TV" + "url": "https://www.khuwemultimedia.com/hls/mntv/mntv.m3u8", + "label": "MNTV" }, { "type": "hls", - "url": "https://cdn-globecast.akamaized.net/live/eds/sudan_tv/hls_roku/index.m3u8", - "label": "Sudan TV" + "url": "https://stream.tvm.co.mz/hls/tvm/playlist.m3u8", + "label": "TVM" + }, + { + "type": "hls", + "url": "https://w2.manasat.com/tvmana-mz/smil:tvmana-mz.smil/playlist.m3u8", + "label": "TV Mana Mocambique" } ], - "Tunisia": [ + "Monaco": [ { "type": "hls", - "url": "https://sw1.tanitweb.net/TunisiaTV/_definst_/watania1/chunklist.m3u8", - "label": "El Watania 1" + "url": "https://webtv.monacoinfo.com/live/prod/index.m3u8", + "label": "Monaco Info" }, { "type": "hls", - "url": "https://webcam.mosaiquefm.net/mosatv/_definst_/studio/playlist.m3u8?DVR", - "label": "Mosaique FM" + "url": "https://production-fast-mcrtv.content.okast.tv/channels/2116dc08-1959-465d-857f-3619daefb66b/b702b2b9-aebd-436c-be69-2118f56f3d86/master.m3u8", + "label": "TV Monaco" + }, + { + "type": "hls", + "url": "https://sy.wns.live/hls/stream.m3u8", + "label": "Superyacht TV" } ], - "Japan": [ + "Namibia": [ { "type": "hls", - "url": "https://nhk.lls.pbs.org/index.m3u8", - "label": "NHK World-Japan" + "url": "https://hls-1zdhtxpm-livepush.akamaized.net/live_cdn/nsM12Xw0C1xXdJ/em0Wx71z-ec6EWJb/rewind-3600.m3u8", + "label": "Tjil TV" + } + ], + "Papua New Guinea": [ + { + "type": "hls", + "url": "https://205444.global.ssl.fastly.net/64ee8a084b935f9f8a6f8825/live_ab333a6093bc11eeb89fbd81423485b7/index.fmp4.m3u8", + "label": "NBC TV" + } + ], + "Malta": [ + { + "type": "hls", + "url": "https://2-fss-1.streamhoster.com/pl_148/201830-1293592-1/playlist.m3u8", + "label": "One" + } + ], + "Saint Kitts and Nevis": [ + { + "type": "hls", + "url": "https://media.slactech.com:1936/ZIZDirect/ZIZDirect/playlist.m3u8", + "label": "ZIZ TV" }, { "type": "hls", - "url": "https://rch01e-alive-hls.akamaized.net/38fb45b25cdb05a1/out/v1/4e907bfabc684a1dae10df8431a84d21/index.m3u8", - "label": "Weathernews" + "url": "https://media.slactech.com:1936/NTvDirect/ngrp:NTvDirect_all/playlist.m3u8", + "label": "Nevis Television" }, { "type": "hls", - "url": "https://media-tyo.hls.nhkworld.jp/hls/wp/live/master.m3u8", - "label": "NHK World Premium" + "url": "https://live.kingdom-tv.com:3545/stream/play.m3u8", + "label": "Television Caribbean" } ], - "Angola": [ + "Japan": [ { "type": "hls", - "url": "https://sgn-cdn-video.vods2africa.com/Tv-Zimbo/index.fmp4.m3u8", - "label": "TV Zimbo" + "url": "https://nhk.lls.pbs.org/index.m3u8", + "label": "NHK World-Japan" }, { "type": "hls", - "url": "https://5cf4a2c2512a2.streamlock.net/tvmuzangala/tvmuzangala/playlist.m3u8", - "label": "Muzangala TV" + "url": "https://rch01e-alive-hls.akamaized.net/38fb45b25cdb05a1/out/v1/4e907bfabc684a1dae10df8431a84d21/index.m3u8", + "label": "Weathernews" }, { "type": "hls", - "url": "https://w1.manasat.com/ktv-angola/smil:ktv-angola.smil/playlist.m3u8", - "label": "KK TV" + "url": "https://media-tyo.hls.nhkworld.jp/hls/wp/live/master.m3u8", + "label": "NHK World Premium" } ], "Ireland": [ @@ -2643,65 +11181,65 @@ "label": "TG4" } ], - "Zimbabwe": [ + "Gambia": [ { "type": "hls", - "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_018/Stream/playlist.m3u8", - "label": "Yadah TV" + "url": "https://player.qtv.gm/hls/live.stream.m3u8", + "label": "QTV Gambia" } ], - "South Korea": [ - { - "type": "hls", - "url": "https://dash3.antik.sk/live/test_arirang/playlist.m3u8", - "label": "Arirang TV" - }, - { - "type": "hls", - "url": "https://hlive.ktv.go.kr/live/klive_h.stream/playlist.m3u8", - "label": "KTV (KR)" - }, + "Montenegro": [ { "type": "hls", - "url": "https://vod2.abn.co.kr/IPHONE/abn.m3u8", - "label": "ABN" + "url": "https://tv.rtv-niksic.me/hls/stream.m3u8", + "label": "TV Niksic" }, { "type": "hls", - "url": "https://ebsonair.ebs.co.kr/plus1familypc/familypc1m/playlist.m3u8", - "label": "EBS Plus 1" - }, + "url": "https://rtcg-live-open.morescreens.com/RTCG_1_004/playlist.m3u8", + "label": "TVCG MNE" + } + ], + "Suriname": [ { "type": "hls", - "url": "https://ebsonair.ebs.co.kr/ebs1familypc/familypc1m/playlist.m3u8", - "label": "EBS 1TV" - }, + "url": "https://media.streambrothers.com:1936/8400/8400/playlist.m3u8", + "label": "Shalom TV" + } + ], + "Equatorial Guinea": [ { "type": "hls", - "url": "https://stream8.cinerama.uz/1448/playlist.m3u8", - "label": "KBS World" - }, + "url": "https://stream.solmediaeg.com/soltv/soltv.m3u8", + "label": "SolTV (GQ)" + } + ], + "Chad": [ { "type": "hls", - "url": "https://5c3639aa99149.streamlock.net/live_TV/tv/playlist.m3u8", - "label": "HLAT-DTV" - }, + "url": "https://strhlslb01.streamakaci.tv/str_tchad_tchad/str_tchad_multi/playlist.m3u8", + "label": "Tele Tchad" + } + ], + "Cape Verde": [ { "type": "hls", - "url": "https://ns1.tjmbc.co.kr/live/myStream.sdp/playlist.m3u8", - "label": "HLCQ-DTV" + "url": "https://stmv1.srvif.com/tvcidade/tvcidade/playlist.m3u8", + "label": "TV Cidade" } ], - "North Korea": [ + "Uruguay": [ { "type": "hls", - "url": "https://kctv.koryofront.org/stream/index.m3u8", - "label": "Korean Central Television" - }, + "url": "https://livedelta.cdn.antel.net.uy/out/u/url_canalu.m3u8", + "label": "UCL" + } + ], + "Zimbabwe": [ { "type": "hls", - "url": "https://kctv.koryofront.org/stream/ryongnamsan/index.m3u8", - "label": "Ryongnamsan Television" + "url": "https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_018/Stream/playlist.m3u8", + "label": "Yadah TV" } ] } diff --git a/scripts/streams/build-nations.js b/scripts/streams/build-nations.js new file mode 100644 index 0000000..9e09fe8 --- /dev/null +++ b/scripts/streams/build-nations.js @@ -0,0 +1,187 @@ +#!/usr/bin/env node +/** + * build-nations.js — grow the globe's `C` array from 82 nations to every nation + * on earth, and emit the ISO-keyed nation table the stream pipeline runs on. + * + * WHY + * Every source builder in scripts/ gates discovery on the `C` array: the iptv-org + * builder maps ISO-2 -> app country name by READING C (appCountries()), so a + * channel from a nation the globe does not place is dropped before it is ever + * probed. That means the stream pool cannot exceed C's nation count no matter how + * many catalogues we add. C had 82 entries; 111 UN members had nowhere to live. + * + * WHAT IT DOES + * 1. parse the existing C array out of void2-final.html and KEEP IT EXACTLY — + * those 82 entries carry hand-tuned lat/lon and subreddit mappings, and the + * globe's marker placement was eyeballed against them. New nations are + * appended, nothing existing is rewritten. + * 2. build the target list: 193 UN member states + the places this app clearly + * treats as nations already (Taiwan is in C today; the iptv-org builder has + * an explicit Palestine branch) + a few territories with their own feeds. + * 3. take centroids from a real dataset, not by hand. South Sudan is absent + * from that dataset (it predates 2011) and is supplied here. + * 4. write the new C array back into void2-final.html between markers, and + * write scripts/streams/nations.generated.json for the rest of the pipeline. + * + * `sr` (subreddit) is null for every new nation. Verified unused in the app today + * — nothing reads `.sr` — so it is a placeholder for later, not a gap. + * + * node scripts/streams/build-nations.js --dry # report only, write nothing + * node scripts/streams/build-nations.js + */ +'use strict'; +const fs = require('fs'); +const path = require('path'); + +const ROOT = path.resolve(__dirname, '..', '..'); +const SRC = path.join(ROOT, 'void2-final.html'); +const OUT = path.join(__dirname, 'nations.generated.json'); +const DRY = process.argv.includes('--dry'); + +const CENTROIDS = 'https://raw.githubusercontent.com/eesur/country-codes-lat-long/master/country-codes-lat-long-alpha3.json'; + +/** The 193 UN member states, ISO-3166-1 alpha-2. */ +const UN_MEMBERS = ('AF AL DZ AD AO AG AR AM AU AT AZ BS BH BD BB BY BE BZ BJ BT BO BA BW BR BN BG BF BI CV KH ' + + 'CM CA CF TD CL CN CO KM CG CD CR CI HR CU CY CZ DK DJ DM DO EC EG SV GQ ER EE SZ ET FJ FI FR GA GM GE DE GH ' + + 'GR GD GT GN GW GY HT HN HU IS IN ID IR IQ IE IL IT JM JP JO KZ KE KI KP KR KW KG LA LV LB LS LR LY LI LT LU ' + + 'MG MW MY MV ML MT MH MR MU MX FM MD MC MN ME MA MZ MM NA NR NP NL NZ NI NE NG MK NO OM PK PW PA PG PY PE PH ' + + 'PL PT QA RO RU RW KN LC VC WS SM ST SA SN RS SC SL SG SK SI SB SO ZA SS ES LK SD SR SE CH SY TJ TZ TH TL TG ' + + 'TO TT TN TR TM TV UG UA AE GB US UY UZ VU VE VN YE ZM ZW').split(/\s+/); + +/** + * Not UN members, but this app already treats them as places with their own feed: + * Taiwan is in C today, and build-iptv-sources.js has a dedicated Palestine branch. + */ +const ALSO = ['TW', 'PS', 'XK', 'HK', 'GL', 'PR']; + +/** Centroids the dataset lacks or places badly for a globe marker. */ +const CENTROID_FIX = { + SS: { lat: 7.9, lon: 29.7 }, // absent: dataset predates independence + XK: { lat: 42.6, lon: 20.9 }, // no ISO-3166 assignment + PS: { lat: 31.9, lon: 35.2 }, + FR: { lat: 46.2, lon: 2.2 }, // dataset centroid includes overseas départements + US: { lat: 37.1, lon: -95.7 }, // ... and Alaska/Hawaii + NL: { lat: 52.1, lon: 5.3 }, + NO: { lat: 60.5, lon: 8.5 }, + NZ: { lat: -40.9, lon: 174.9 }, + CL: { lat: -35.7, lon: -71.5 }, + EC: { lat: -1.8, lon: -78.2 }, + PT: { lat: 39.4, lon: -8.2 }, + ES: { lat: 40.5, lon: -3.7 }, +}; + +/** Friendly names. The dataset ships formal ISO names ("Moldova, Republic of"). */ +const NAME = { + BO: 'Bolivia', BN: 'Brunei', CV: 'Cape Verde', CD: 'DR Congo', CG: 'Congo', CI: "Cote d'Ivoire", + CZ: 'Czechia', SZ: 'Eswatini', FM: 'Micronesia', IR: 'Iran', KP: 'North Korea', KR: 'South Korea', + LA: 'Laos', MD: 'Moldova', MK: 'North Macedonia', PS: 'Palestine', RU: 'Russia', SS: 'South Sudan', SY: 'Syria', + TW: 'Taiwan', TZ: 'Tanzania', TL: 'Timor-Leste', GB: 'United Kingdom', US: 'United States', + VE: 'Venezuela', VN: 'Vietnam', XK: 'Kosovo', HK: 'Hong Kong', GL: 'Greenland', PR: 'Puerto Rico', + VA: 'Vatican City', AE: 'United Arab Emirates', GQ: 'Equatorial Guinea', CF: 'Central African Republic', + DO: 'Dominican Republic', GW: 'Guinea-Bissau', KN: 'Saint Kitts and Nevis', LC: 'Saint Lucia', + VC: 'Saint Vincent and the Grenadines', ST: 'Sao Tome and Principe', SB: 'Solomon Islands', + MH: 'Marshall Islands', BA: 'Bosnia and Herzegovina', TT: 'Trinidad and Tobago', AG: 'Antigua and Barbuda', +}; + +/** Parse the live C array. Keeps raw text per entry so existing ones round-trip byte-exact. */ +function readC(html) { + const i = html.search(/const C\s*=\s*\[/); + if (i < 0) throw new Error('could not find the C country array in void2-final.html'); + const open = html.indexOf('[', i); + let depth = 0, k = open; + for (; k < html.length; k++) { + if (html[k] === '[') depth++; + else if (html[k] === ']') { depth--; if (!depth) break; } + } + const body = html.slice(open + 1, k); + const entries = []; + for (const m of body.matchAll(/\{[^{}]*\}/g)) { + const raw = m[0]; + const n = /n:\s*"([^"]+)"/.exec(raw), iso = /iso:\s*"([^"]+)"/.exec(raw); + const lat = /lat:\s*(-?[\d.]+)/.exec(raw), lon = /lon:\s*(-?[\d.]+)/.exec(raw); + if (!n || !iso) throw new Error('unparsable C entry: ' + raw.slice(0, 80)); + entries.push({ raw, n: n[1], iso: iso[1].toUpperCase(), lat: +lat[1], lon: +lon[1] }); + } + return { entries, start: open, end: k, declStart: i }; +} + +const cleanName = s => String(s) + .replace(/\s*\(.*?\)\s*/g, ' ') + .replace(/^(.*?),\s*(Republic|Kingdom|State|Federation|Islamic Republic|Province).*$/i, '$1') + .replace(/\s+/g, ' ').trim(); + +(async () => { + const html = fs.readFileSync(SRC, 'utf8'); + const { entries, start, end } = readC(html); + const have = new Map(entries.map(e => [e.iso, e])); + console.log('C array today :', entries.length, 'nations'); + + const r = await fetch(CENTROIDS, { signal: AbortSignal.timeout(30000) }); + if (!r.ok) throw new Error('centroids HTTP ' + r.status); + const ds = (await r.json()).ref_country_codes; + const byIso = {}; + for (const c of ds) byIso[c.alpha2] = c; + console.log('centroid dataset :', ds.length, 'entries'); + + const want = [...UN_MEMBERS, ...ALSO]; + const dupes = want.filter((x, i) => want.indexOf(x) !== i); + if (dupes.length) throw new Error('duplicate ISO in target list: ' + dupes.join(',')); + + const added = [], skipped = []; + for (const iso of want) { + if (have.has(iso)) continue; + const fix = CENTROID_FIX[iso], d = byIso[iso]; + const lat = fix ? fix.lat : d ? +d.latitude : null; + const lon = fix ? fix.lon : d ? +d.longitude : null; + if (lat === null || lon === null || Number.isNaN(lat) || Number.isNaN(lon)) { + skipped.push(iso); continue; // never place a marker at 0,0 in the Atlantic + } + const name = NAME[iso] || (d ? cleanName(d.country) : null); + if (!name) { skipped.push(iso); continue; } + added.push({ iso, n: name, lat: +lat.toFixed(1), lon: +lon.toFixed(1) }); + } + + if (skipped.length) console.log('SKIPPED (no usable centroid) :', skipped.join(', ')); + console.log('nations to add :', added.length); + + // A name collision would break every pool, which is keyed by display name. + const names = new Map(); + for (const e of [...entries, ...added]) { + if (names.has(e.n)) throw new Error(`display-name collision: ${e.n} (${names.get(e.n)} and ${e.iso})`); + names.set(e.n, e.iso); + } + + const all = [...entries, ...added].sort((a, b) => a.n.localeCompare(b.n)); + const text = all.map(e => e.raw + ? e.raw + : `{n:"${e.n}",lat:${e.lat},lon:${e.lon},sr:null,iso:"${e.iso}"}`).join(','); + + const table = {}; + for (const e of all) table[e.iso] = { iso: e.iso, name: e.n, lat: e.lat, lon: e.lon }; + + if (DRY) { + console.log('\n--dry: nothing written. Would add:'); + console.log(added.map(a => `${a.iso} ${a.n}`).join(' | ')); + return; + } + + fs.writeFileSync(OUT, JSON.stringify({ + generated: new Date().toISOString(), + note: 'Canonical nation table for the stream pipeline. ISO-3166-1 alpha-2 is the key; ' + + '`name` is the app display name and the key the source pools use. ' + + 'Generated by scripts/streams/build-nations.js — do not hand-edit.', + count: all.length, nations: table, + }, null, 1)); + + fs.writeFileSync(SRC, html.slice(0, start + 1) + text + html.slice(end)); + console.log('\nWROTE', path.relative(ROOT, SRC), 'and', path.relative(ROOT, OUT)); + console.log(' C array now :', all.length, 'nations'); + + // Prove the page still parses — a broken C array black-screens the whole app. + const out = fs.readFileSync(SRC, 'utf8'); + const re = /]*src=)[^>]*>([\s\S]*?)<\/script>/g; + let m, n = 0, bad = 0; + while ((m = re.exec(out))) { n++; try { new Function(m[1]); } catch (e) { bad++; console.error('PARSE:', e.message); } } + console.log(` ${n} inline scripts, ${bad} errors`); + if (bad) process.exit(1); +})().catch(e => { console.error('FAILED:', e.message); process.exit(1); }); diff --git a/scripts/streams/build-review-site.js b/scripts/streams/build-review-site.js new file mode 100644 index 0000000..029b5cd --- /dev/null +++ b/scripts/streams/build-review-site.js @@ -0,0 +1,153 @@ +#!/usr/bin/env node +/** + * build-review-site.js — stage the "stream patches" review site. + * + * WHY + * Stream-department work lands as a series of patches on the `stream-patches` + * branch, to be merged into main only after review. A diff is a poor review + * surface for this particular work: the interesting change is not the text of + * void2-final.html (the C array is ONE line, so the globe going from 82 nations + * to 199 shows up as `1 insertion, 1 deletion`) — it is whether the globe still + * looks right and the new nations actually carry streams. So the review site + * ships the PATCHED BUILD ITSELF alongside the numbers behind each patch. + * + * WHAT IT STAGES (into ./public, which Pages deploys) + * index.html what changed, why, and the measurements behind it + * void2-final.html the patched build, playable — spin the globe and count + * diff.txt the real diff against main, for anyone who wants it + * + * Run from a checkout of the stream-patches branch (the worktree on D: is one): + * node scripts/streams/build-review-site.js + * node scripts/streams/build-review-site.js --out public --base main + */ +'use strict'; +const fs = require('fs'); +const path = require('path'); +const { execFileSync } = require('child_process'); + +const ROOT = path.resolve(__dirname, '..', '..'); +const arg = (k, d) => { const i = process.argv.indexOf('--' + k); return i > -1 && process.argv[i + 1] ? process.argv[i + 1] : d; }; +const OUT = path.resolve(ROOT, arg('out', 'public')); +const BASE = arg('base', 'main'); + +const git = (...a) => { try { return execFileSync('git', a, { cwd: ROOT, encoding: 'utf8', maxBuffer: 64 * 1024 * 1024 }); } catch { return ''; } }; +const esc = s => String(s).replace(/[&<>"]/g, c => ({ '&': '&', '<': '<', '>': '>', '"': '"' }[c])); + +const nationsFile = path.join(__dirname, 'nations.generated.json'); +const nations = fs.existsSync(nationsFile) ? JSON.parse(fs.readFileSync(nationsFile, 'utf8')) : { count: 0, nations: {} }; + +/** Which nations this branch ADDED — base's C array vs the branch's table. */ +function addedNations() { + const baseHtml = git('show', `${BASE}:void2-final.html`); + const have = new Set(); + const m = /const C\s*=\s*\[/.exec(baseHtml); + if (m) { + const from = baseHtml.indexOf('[', m.index); + let depth = 0, k = from; + for (; k < baseHtml.length; k++) { if (baseHtml[k] === '[') depth++; else if (baseHtml[k] === ']') { depth--; if (!depth) break; } } + for (const e of baseHtml.slice(from, k).matchAll(/iso:\s*"([A-Za-z]{2})"/g)) have.add(e[1].toUpperCase()); + } + return { before: have.size, added: Object.values(nations.nations).filter(n => !have.has(n.iso)) }; +} + +// %b spans lines, so records are terminated by  and fields split on . +// Splitting this on newlines counts every line of a commit BODY as its own commit. +const commits = git('log', '--no-merges', '--format=%h%s%b%ad', '--date=short', `${BASE}..HEAD`) + .split('').map(r => r.replace(/^\s+/, '')).filter(Boolean) + .map(r => { const [h, s, b, d] = r.split(''); return { h, s, b, d }; }); + +const diff = git('diff', `${BASE}...HEAD`); +const stat = git('diff', '--stat', `${BASE}...HEAD`).trim().split('\n').filter(Boolean); + +const { before, added } = addedNations(); + +/* Coverage is READ FROM THE COMMITTED POOL rather than typed out, so the page + can never claim a number the pool does not actually contain. */ +const poolFile = path.join(ROOT, 'scripts', 'iptv-sources.generated.json'); +const pool = fs.existsSync(poolFile) ? JSON.parse(fs.readFileSync(poolFile, 'utf8')) : { sources: {} }; +const src = pool.sources || {}; +let basePool = {}; +try { basePool = JSON.parse(git('show', `${BASE}:scripts/iptv-sources.generated.json`) || '{}').sources || {}; } catch { basePool = {}; } +const count = o => Object.values(o).reduce((a, v) => a + v.length, 0); +const depth = Object.values(nations.nations).map(n => (src[n.name] || []).length); +const atLeast = v => depth.filter(d => d >= v).length; + +const FACTS = [ + [`${count(basePool).toLocaleString()} → ${count(src).toLocaleString()}`, 'live streams in the pool'], + [`${Object.keys(basePool).length} → ${Object.keys(src).length}`, 'nations carrying at least one stream'], + [`${atLeast(30)} of ${depth.length}`, 'nations at 30+ streams — the target is 30–40 everywhere, so this is what is left to move'], + [`${depth.filter(d => !d).length}`, 'nations still at zero, which no amount of iptv-org will fix'], + ['68%', 'of probed channels were playable (https + #EXTM3U + CORS, following master → variant)'], +]; + +const page = ` + + +Stream Patches + +
+

Stream patches

+

Branch stream-patches · ${commits.length} commit${commits.length === 1 ? '' : 's'} not yet in ${esc(BASE)} · staged ${new Date().toISOString().slice(0, 10)}

+ + Open the patched buildspin the globe — count the markers + Read the raw diff${stat.length ? esc(stat[stat.length - 1].trim()) : 'diff'} + +

The globe

+

${before} → ${nations.count}

+

Discovery is gated on the globe: build-iptv-sources.js maps ISO‑2 to a country name by reading the C array, so a channel from a nation the globe does not place is dropped before it is ever probed. These ${added.length} nations had nowhere to live.

+
${added.map(n => `${esc(n.name)}`).join('')}
+ +

What the numbers said

+ ${FACTS.map(([n, t]) => ``).join('')}
${esc(n)}${esc(t)}
+ +

Commits

+ ${commits.map(c => `

${esc(c.s)}

${esc(c.h)} · ${esc(c.d)}

${c.b && c.b.trim() ? `
${esc(c.b.trim())}
` : ''}
`).join('')} + +

Files

+
${esc(stat.join('\n'))}
+ +

What to check

+ + + + + +
1Spin the globe. Markers should sit on land, in the right places — new nations take their centroid from a dataset, not by hand.
2Search a new nation (Moldova, Tuvalu, Kosovo). It should open a nation panel, not fail.
3The wall should look and feel unchanged — the 7 news / 3 life mix is untouched.
4Existing nations should be byte-identical: their hand-tuned lat/lon and subreddits are kept as raw text, never regenerated.
+ +
Nothing here is on ${esc(BASE)}. Merge stream-patches when it looks right.
+
+`; + +fs.mkdirSync(OUT, { recursive: true }); +fs.writeFileSync(path.join(OUT, 'index.html'), page); +fs.writeFileSync(path.join(OUT, 'diff.txt'), diff || '(no diff)'); +fs.copyFileSync(path.join(ROOT, 'void2-final.html'), path.join(OUT, 'void2-final.html')); + +console.log('staged', path.relative(ROOT, OUT)); +console.log(' commits ahead of', BASE, ':', commits.length); +console.log(' nations :', before, '->', nations.count, `(+${added.length})`); +console.log(' diff :', (diff.length / 1024).toFixed(1), 'KB'); diff --git a/scripts/streams/nations.generated.json b/scripts/streams/nations.generated.json new file mode 100644 index 0000000..63e0d6d --- /dev/null +++ b/scripts/streams/nations.generated.json @@ -0,0 +1,1201 @@ +{ + "generated": "2026-09-17T22:27:40.980Z", + "note": "Canonical nation table for the stream pipeline. ISO-3166-1 alpha-2 is the key; `name` is the app display name and the key the source pools use. Generated by scripts/streams/build-nations.js — do not hand-edit.", + "count": 199, + "nations": { + "AF": { + "iso": "AF", + "name": "Afghanistan", + "lat": 33.9, + "lon": 67.7 + }, + "AL": { + "iso": "AL", + "name": "Albania", + "lat": 41.2, + "lon": 20.2 + }, + "DZ": { + "iso": "DZ", + "name": "Algeria", + "lat": 28, + "lon": 1.7 + }, + "AD": { + "iso": "AD", + "name": "Andorra", + "lat": 42.5, + "lon": 1.6 + }, + "AO": { + "iso": "AO", + "name": "Angola", + "lat": -11.2, + "lon": 17.9 + }, + "AG": { + "iso": "AG", + "name": "Antigua and Barbuda", + "lat": 17.1, + "lon": -61.8 + }, + "AR": { + "iso": "AR", + "name": "Argentina", + "lat": -38.4, + "lon": -63.6 + }, + "AM": { + "iso": "AM", + "name": "Armenia", + "lat": 40.1, + "lon": 45 + }, + "AU": { + "iso": "AU", + "name": "Australia", + "lat": -25.3, + "lon": 133.8 + }, + "AT": { + "iso": "AT", + "name": "Austria", + "lat": 47.5, + "lon": 14.6 + }, + "AZ": { + "iso": "AZ", + "name": "Azerbaijan", + "lat": 40.1, + "lon": 47.6 + }, + "BS": { + "iso": "BS", + "name": "Bahamas", + "lat": 24.3, + "lon": -76 + }, + "BH": { + "iso": "BH", + "name": "Bahrain", + "lat": 26, + "lon": 50.5 + }, + "BD": { + "iso": "BD", + "name": "Bangladesh", + "lat": 23.7, + "lon": 90.4 + }, + "BB": { + "iso": "BB", + "name": "Barbados", + "lat": 13.2, + "lon": -59.5 + }, + "BY": { + "iso": "BY", + "name": "Belarus", + "lat": 53.7, + "lon": 28 + }, + "BE": { + "iso": "BE", + "name": "Belgium", + "lat": 50.5, + "lon": 4.5 + }, + "BZ": { + "iso": "BZ", + "name": "Belize", + "lat": 17.3, + "lon": -88.8 + }, + "BJ": { + "iso": "BJ", + "name": "Benin", + "lat": 9.5, + "lon": 2.3 + }, + "BT": { + "iso": "BT", + "name": "Bhutan", + "lat": 27.5, + "lon": 90.5 + }, + "BO": { + "iso": "BO", + "name": "Bolivia", + "lat": -16.3, + "lon": -63.6 + }, + "BA": { + "iso": "BA", + "name": "Bosnia and Herzegovina", + "lat": 44, + "lon": 18 + }, + "BW": { + "iso": "BW", + "name": "Botswana", + "lat": -22, + "lon": 24 + }, + "BR": { + "iso": "BR", + "name": "Brazil", + "lat": -14.2, + "lon": -51.9 + }, + "BN": { + "iso": "BN", + "name": "Brunei", + "lat": 4.5, + "lon": 114.7 + }, + "BG": { + "iso": "BG", + "name": "Bulgaria", + "lat": 42.7, + "lon": 25.5 + }, + "BF": { + "iso": "BF", + "name": "Burkina Faso", + "lat": 13, + "lon": -2 + }, + "BI": { + "iso": "BI", + "name": "Burundi", + "lat": -3.5, + "lon": 30 + }, + "KH": { + "iso": "KH", + "name": "Cambodia", + "lat": 12.6, + "lon": 105 + }, + "CM": { + "iso": "CM", + "name": "Cameroon", + "lat": 6, + "lon": 12 + }, + "CA": { + "iso": "CA", + "name": "Canada", + "lat": 56.1, + "lon": -106.4 + }, + "CV": { + "iso": "CV", + "name": "Cape Verde", + "lat": 16, + "lon": -24 + }, + "CF": { + "iso": "CF", + "name": "Central African Republic", + "lat": 7, + "lon": 21 + }, + "TD": { + "iso": "TD", + "name": "Chad", + "lat": 15, + "lon": 19 + }, + "CL": { + "iso": "CL", + "name": "Chile", + "lat": -35.7, + "lon": -71.5 + }, + "CN": { + "iso": "CN", + "name": "China", + "lat": 35.9, + "lon": 104.2 + }, + "CO": { + "iso": "CO", + "name": "Colombia", + "lat": 4.6, + "lon": -74.3 + }, + "KM": { + "iso": "KM", + "name": "Comoros", + "lat": -12.2, + "lon": 44.3 + }, + "CG": { + "iso": "CG", + "name": "Congo", + "lat": -1, + "lon": 15 + }, + "CR": { + "iso": "CR", + "name": "Costa Rica", + "lat": 10, + "lon": -84 + }, + "CI": { + "iso": "CI", + "name": "Cote d'Ivoire", + "lat": 8, + "lon": -5 + }, + "HR": { + "iso": "HR", + "name": "Croatia", + "lat": 45.2, + "lon": 15.5 + }, + "CU": { + "iso": "CU", + "name": "Cuba", + "lat": 21.5, + "lon": -79.5 + }, + "CY": { + "iso": "CY", + "name": "Cyprus", + "lat": 35, + "lon": 33 + }, + "CZ": { + "iso": "CZ", + "name": "Czechia", + "lat": 49.8, + "lon": 15.5 + }, + "DK": { + "iso": "DK", + "name": "Denmark", + "lat": 56, + "lon": 10 + }, + "DJ": { + "iso": "DJ", + "name": "Djibouti", + "lat": 11.5, + "lon": 43 + }, + "DM": { + "iso": "DM", + "name": "Dominica", + "lat": 15.4, + "lon": -61.3 + }, + "DO": { + "iso": "DO", + "name": "Dominican Republic", + "lat": 19, + "lon": -70.7 + }, + "CD": { + "iso": "CD", + "name": "DR Congo", + "lat": -2.9, + "lon": 23.7 + }, + "EC": { + "iso": "EC", + "name": "Ecuador", + "lat": -1.8, + "lon": -78.2 + }, + "EG": { + "iso": "EG", + "name": "Egypt", + "lat": 26.8, + "lon": 30.8 + }, + "SV": { + "iso": "SV", + "name": "El Salvador", + "lat": 13.8, + "lon": -88.9 + }, + "GQ": { + "iso": "GQ", + "name": "Equatorial Guinea", + "lat": 2, + "lon": 10 + }, + "ER": { + "iso": "ER", + "name": "Eritrea", + "lat": 15, + "lon": 39 + }, + "EE": { + "iso": "EE", + "name": "Estonia", + "lat": 59, + "lon": 26 + }, + "SZ": { + "iso": "SZ", + "name": "Eswatini", + "lat": -26.5, + "lon": 31.5 + }, + "ET": { + "iso": "ET", + "name": "Ethiopia", + "lat": 9.1, + "lon": 40.5 + }, + "FJ": { + "iso": "FJ", + "name": "Fiji", + "lat": -18, + "lon": 175 + }, + "FI": { + "iso": "FI", + "name": "Finland", + "lat": 64, + "lon": 26 + }, + "FR": { + "iso": "FR", + "name": "France", + "lat": 46.2, + "lon": 2.2 + }, + "GA": { + "iso": "GA", + "name": "Gabon", + "lat": -1, + "lon": 11.8 + }, + "GM": { + "iso": "GM", + "name": "Gambia", + "lat": 13.5, + "lon": -16.6 + }, + "GE": { + "iso": "GE", + "name": "Georgia", + "lat": 42, + "lon": 43.5 + }, + "DE": { + "iso": "DE", + "name": "Germany", + "lat": 51.2, + "lon": 10.5 + }, + "GH": { + "iso": "GH", + "name": "Ghana", + "lat": 8, + "lon": -1 + }, + "GR": { + "iso": "GR", + "name": "Greece", + "lat": 39.1, + "lon": 21.8 + }, + "GL": { + "iso": "GL", + "name": "Greenland", + "lat": 72, + "lon": -40 + }, + "GD": { + "iso": "GD", + "name": "Grenada", + "lat": 12.1, + "lon": -61.7 + }, + "GT": { + "iso": "GT", + "name": "Guatemala", + "lat": 15.5, + "lon": -90.3 + }, + "GN": { + "iso": "GN", + "name": "Guinea", + "lat": 11, + "lon": -10 + }, + "GW": { + "iso": "GW", + "name": "Guinea-Bissau", + "lat": 12, + "lon": -15 + }, + "GY": { + "iso": "GY", + "name": "Guyana", + "lat": 5, + "lon": -59 + }, + "HT": { + "iso": "HT", + "name": "Haiti", + "lat": 19, + "lon": -72.3 + }, + "HN": { + "iso": "HN", + "name": "Honduras", + "lat": 15, + "lon": -86.5 + }, + "HK": { + "iso": "HK", + "name": "Hong Kong", + "lat": 22.3, + "lon": 114.2 + }, + "HU": { + "iso": "HU", + "name": "Hungary", + "lat": 47, + "lon": 20 + }, + "IS": { + "iso": "IS", + "name": "Iceland", + "lat": 65, + "lon": -18 + }, + "IN": { + "iso": "IN", + "name": "India", + "lat": 20.6, + "lon": 79 + }, + "ID": { + "iso": "ID", + "name": "Indonesia", + "lat": -0.8, + "lon": 113.9 + }, + "IR": { + "iso": "IR", + "name": "Iran", + "lat": 32.4, + "lon": 53.7 + }, + "IQ": { + "iso": "IQ", + "name": "Iraq", + "lat": 33.2, + "lon": 43.7 + }, + "IE": { + "iso": "IE", + "name": "Ireland", + "lat": 53.4, + "lon": -8.2 + }, + "IL": { + "iso": "IL", + "name": "Israel", + "lat": 31.1, + "lon": 34.9 + }, + "IT": { + "iso": "IT", + "name": "Italy", + "lat": 41.9, + "lon": 12.6 + }, + "JM": { + "iso": "JM", + "name": "Jamaica", + "lat": 18.3, + "lon": -77.5 + }, + "JP": { + "iso": "JP", + "name": "Japan", + "lat": 36.2, + "lon": 138.3 + }, + "JO": { + "iso": "JO", + "name": "Jordan", + "lat": 30.6, + "lon": 36.2 + }, + "KZ": { + "iso": "KZ", + "name": "Kazakhstan", + "lat": 48, + "lon": 66.9 + }, + "KE": { + "iso": "KE", + "name": "Kenya", + "lat": 0, + "lon": 37.9 + }, + "KI": { + "iso": "KI", + "name": "Kiribati", + "lat": 1.4, + "lon": 173 + }, + "XK": { + "iso": "XK", + "name": "Kosovo", + "lat": 42.6, + "lon": 20.9 + }, + "KW": { + "iso": "KW", + "name": "Kuwait", + "lat": 29.3, + "lon": 47.7 + }, + "KG": { + "iso": "KG", + "name": "Kyrgyzstan", + "lat": 41, + "lon": 75 + }, + "LA": { + "iso": "LA", + "name": "Laos", + "lat": 18, + "lon": 105 + }, + "LV": { + "iso": "LV", + "name": "Latvia", + "lat": 57, + "lon": 25 + }, + "LB": { + "iso": "LB", + "name": "Lebanon", + "lat": 33.9, + "lon": 35.9 + }, + "LS": { + "iso": "LS", + "name": "Lesotho", + "lat": -29.5, + "lon": 28.5 + }, + "LR": { + "iso": "LR", + "name": "Liberia", + "lat": 6.5, + "lon": -9.5 + }, + "LY": { + "iso": "LY", + "name": "Libya", + "lat": 26.3, + "lon": 17.2 + }, + "LI": { + "iso": "LI", + "name": "Liechtenstein", + "lat": 47.2, + "lon": 9.5 + }, + "LT": { + "iso": "LT", + "name": "Lithuania", + "lat": 56, + "lon": 24 + }, + "LU": { + "iso": "LU", + "name": "Luxembourg", + "lat": 49.8, + "lon": 6.2 + }, + "MG": { + "iso": "MG", + "name": "Madagascar", + "lat": -20, + "lon": 47 + }, + "MW": { + "iso": "MW", + "name": "Malawi", + "lat": -13.5, + "lon": 34 + }, + "MY": { + "iso": "MY", + "name": "Malaysia", + "lat": 4.2, + "lon": 108 + }, + "MV": { + "iso": "MV", + "name": "Maldives", + "lat": 3.3, + "lon": 73 + }, + "ML": { + "iso": "ML", + "name": "Mali", + "lat": 17.6, + "lon": -4 + }, + "MT": { + "iso": "MT", + "name": "Malta", + "lat": 35.8, + "lon": 14.6 + }, + "MH": { + "iso": "MH", + "name": "Marshall Islands", + "lat": 9, + "lon": 168 + }, + "MR": { + "iso": "MR", + "name": "Mauritania", + "lat": 20, + "lon": -12 + }, + "MU": { + "iso": "MU", + "name": "Mauritius", + "lat": -20.3, + "lon": 57.5 + }, + "MX": { + "iso": "MX", + "name": "Mexico", + "lat": 23.6, + "lon": -102.6 + }, + "FM": { + "iso": "FM", + "name": "Micronesia", + "lat": 6.9, + "lon": 158.3 + }, + "MD": { + "iso": "MD", + "name": "Moldova", + "lat": 47, + "lon": 29 + }, + "MC": { + "iso": "MC", + "name": "Monaco", + "lat": 43.7, + "lon": 7.4 + }, + "MN": { + "iso": "MN", + "name": "Mongolia", + "lat": 46, + "lon": 105 + }, + "ME": { + "iso": "ME", + "name": "Montenegro", + "lat": 42, + "lon": 19 + }, + "MA": { + "iso": "MA", + "name": "Morocco", + "lat": 31.8, + "lon": -7.1 + }, + "MZ": { + "iso": "MZ", + "name": "Mozambique", + "lat": -18.3, + "lon": 35 + }, + "MM": { + "iso": "MM", + "name": "Myanmar", + "lat": 16.9, + "lon": 96.2 + }, + "NA": { + "iso": "NA", + "name": "Namibia", + "lat": -22, + "lon": 17 + }, + "NR": { + "iso": "NR", + "name": "Nauru", + "lat": -0.5, + "lon": 166.9 + }, + "NP": { + "iso": "NP", + "name": "Nepal", + "lat": 28.4, + "lon": 84.1 + }, + "NL": { + "iso": "NL", + "name": "Netherlands", + "lat": 52.1, + "lon": 5.3 + }, + "NZ": { + "iso": "NZ", + "name": "New Zealand", + "lat": -40.9, + "lon": 174.9 + }, + "NI": { + "iso": "NI", + "name": "Nicaragua", + "lat": 13, + "lon": -85 + }, + "NE": { + "iso": "NE", + "name": "Niger", + "lat": 16, + "lon": 8 + }, + "NG": { + "iso": "NG", + "name": "Nigeria", + "lat": 9.1, + "lon": 8.7 + }, + "KP": { + "iso": "KP", + "name": "North Korea", + "lat": 40.3, + "lon": 127.5 + }, + "MK": { + "iso": "MK", + "name": "North Macedonia", + "lat": 41.8, + "lon": 22 + }, + "NO": { + "iso": "NO", + "name": "Norway", + "lat": 60.5, + "lon": 8.5 + }, + "OM": { + "iso": "OM", + "name": "Oman", + "lat": 21, + "lon": 57 + }, + "PK": { + "iso": "PK", + "name": "Pakistan", + "lat": 30.4, + "lon": 69.4 + }, + "PW": { + "iso": "PW", + "name": "Palau", + "lat": 7.5, + "lon": 134.5 + }, + "PS": { + "iso": "PS", + "name": "Palestine", + "lat": 31.9, + "lon": 35.2 + }, + "PA": { + "iso": "PA", + "name": "Panama", + "lat": 9, + "lon": -80 + }, + "PG": { + "iso": "PG", + "name": "Papua New Guinea", + "lat": -6, + "lon": 147 + }, + "PY": { + "iso": "PY", + "name": "Paraguay", + "lat": -23, + "lon": -58 + }, + "PE": { + "iso": "PE", + "name": "Peru", + "lat": -9.2, + "lon": -75 + }, + "PH": { + "iso": "PH", + "name": "Philippines", + "lat": 12.9, + "lon": 121.8 + }, + "PL": { + "iso": "PL", + "name": "Poland", + "lat": 51.9, + "lon": 19.1 + }, + "PT": { + "iso": "PT", + "name": "Portugal", + "lat": 39.4, + "lon": -8.2 + }, + "PR": { + "iso": "PR", + "name": "Puerto Rico", + "lat": 18.3, + "lon": -66.5 + }, + "QA": { + "iso": "QA", + "name": "Qatar", + "lat": 25.5, + "lon": 51.3 + }, + "RO": { + "iso": "RO", + "name": "Romania", + "lat": 45.9, + "lon": 25 + }, + "RU": { + "iso": "RU", + "name": "Russia", + "lat": 61.5, + "lon": 105.3 + }, + "RW": { + "iso": "RW", + "name": "Rwanda", + "lat": -2, + "lon": 30 + }, + "KN": { + "iso": "KN", + "name": "Saint Kitts and Nevis", + "lat": 17.3, + "lon": -62.8 + }, + "LC": { + "iso": "LC", + "name": "Saint Lucia", + "lat": 13.9, + "lon": -61.1 + }, + "VC": { + "iso": "VC", + "name": "Saint Vincent and the Grenadines", + "lat": 13.3, + "lon": -61.2 + }, + "WS": { + "iso": "WS", + "name": "Samoa", + "lat": -13.6, + "lon": -172.3 + }, + "SM": { + "iso": "SM", + "name": "San Marino", + "lat": 43.8, + "lon": 12.4 + }, + "ST": { + "iso": "ST", + "name": "Sao Tome and Principe", + "lat": 1, + "lon": 7 + }, + "SA": { + "iso": "SA", + "name": "Saudi Arabia", + "lat": 23.9, + "lon": 45.1 + }, + "SN": { + "iso": "SN", + "name": "Senegal", + "lat": 14, + "lon": -14 + }, + "RS": { + "iso": "RS", + "name": "Serbia", + "lat": 44, + "lon": 21 + }, + "SC": { + "iso": "SC", + "name": "Seychelles", + "lat": -4.6, + "lon": 55.7 + }, + "SL": { + "iso": "SL", + "name": "Sierra Leone", + "lat": 8.5, + "lon": -11.5 + }, + "SG": { + "iso": "SG", + "name": "Singapore", + "lat": 1.4, + "lon": 103.8 + }, + "SK": { + "iso": "SK", + "name": "Slovakia", + "lat": 48.7, + "lon": 19.5 + }, + "SI": { + "iso": "SI", + "name": "Slovenia", + "lat": 46, + "lon": 15 + }, + "SB": { + "iso": "SB", + "name": "Solomon Islands", + "lat": -8, + "lon": 159 + }, + "SO": { + "iso": "SO", + "name": "Somalia", + "lat": 5.2, + "lon": 46.2 + }, + "ZA": { + "iso": "ZA", + "name": "South Africa", + "lat": -30.6, + "lon": 22.9 + }, + "KR": { + "iso": "KR", + "name": "South Korea", + "lat": 35.9, + "lon": 127.8 + }, + "SS": { + "iso": "SS", + "name": "South Sudan", + "lat": 7.9, + "lon": 29.7 + }, + "ES": { + "iso": "ES", + "name": "Spain", + "lat": 40.5, + "lon": -3.7 + }, + "LK": { + "iso": "LK", + "name": "Sri Lanka", + "lat": 7, + "lon": 81 + }, + "SD": { + "iso": "SD", + "name": "Sudan", + "lat": 12.9, + "lon": 30.2 + }, + "SR": { + "iso": "SR", + "name": "Suriname", + "lat": 4, + "lon": -56 + }, + "SE": { + "iso": "SE", + "name": "Sweden", + "lat": 60.1, + "lon": 18.6 + }, + "CH": { + "iso": "CH", + "name": "Switzerland", + "lat": 47, + "lon": 8 + }, + "SY": { + "iso": "SY", + "name": "Syria", + "lat": 34.8, + "lon": 39 + }, + "TW": { + "iso": "TW", + "name": "Taiwan", + "lat": 23.7, + "lon": 121 + }, + "TJ": { + "iso": "TJ", + "name": "Tajikistan", + "lat": 39, + "lon": 71 + }, + "TZ": { + "iso": "TZ", + "name": "Tanzania", + "lat": -6, + "lon": 35 + }, + "TH": { + "iso": "TH", + "name": "Thailand", + "lat": 15.9, + "lon": 101 + }, + "TL": { + "iso": "TL", + "name": "Timor-Leste", + "lat": -8.6, + "lon": 125.5 + }, + "TG": { + "iso": "TG", + "name": "Togo", + "lat": 8, + "lon": 1.2 + }, + "TO": { + "iso": "TO", + "name": "Tonga", + "lat": -20, + "lon": -175 + }, + "TT": { + "iso": "TT", + "name": "Trinidad and Tobago", + "lat": 11, + "lon": -61 + }, + "TN": { + "iso": "TN", + "name": "Tunisia", + "lat": 33.9, + "lon": 9.5 + }, + "TR": { + "iso": "TR", + "name": "Turkey", + "lat": 39, + "lon": 35.2 + }, + "TM": { + "iso": "TM", + "name": "Turkmenistan", + "lat": 40, + "lon": 60 + }, + "TV": { + "iso": "TV", + "name": "Tuvalu", + "lat": -8, + "lon": 178 + }, + "UG": { + "iso": "UG", + "name": "Uganda", + "lat": 1.4, + "lon": 32.3 + }, + "UA": { + "iso": "UA", + "name": "Ukraine", + "lat": 48.4, + "lon": 31.2 + }, + "AE": { + "iso": "AE", + "name": "United Arab Emirates", + "lat": 23.4, + "lon": 53.8 + }, + "GB": { + "iso": "GB", + "name": "United Kingdom", + "lat": 55.4, + "lon": -3.4 + }, + "US": { + "iso": "US", + "name": "United States", + "lat": 37.1, + "lon": -95.7 + }, + "UY": { + "iso": "UY", + "name": "Uruguay", + "lat": -33, + "lon": -56 + }, + "UZ": { + "iso": "UZ", + "name": "Uzbekistan", + "lat": 41, + "lon": 64 + }, + "VU": { + "iso": "VU", + "name": "Vanuatu", + "lat": -16, + "lon": 167 + }, + "VE": { + "iso": "VE", + "name": "Venezuela", + "lat": 6.4, + "lon": -66.6 + }, + "VN": { + "iso": "VN", + "name": "Vietnam", + "lat": 14.1, + "lon": 108.3 + }, + "YE": { + "iso": "YE", + "name": "Yemen", + "lat": 15.6, + "lon": 48.5 + }, + "ZM": { + "iso": "ZM", + "name": "Zambia", + "lat": -15, + "lon": 30 + }, + "ZW": { + "iso": "ZW", + "name": "Zimbabwe", + "lat": -19, + "lon": 29.2 + } + } +} \ No newline at end of file diff --git a/scripts/streams/report.js b/scripts/streams/report.js new file mode 100644 index 0000000..7a73fc1 --- /dev/null +++ b/scripts/streams/report.js @@ -0,0 +1,88 @@ +#!/usr/bin/env node +/** + * report.js — what the stream pool actually covers, and what it costs to ship. + * + * Two questions this answers, which the builders do not: + * + * 1. COVERAGE. Not "how many streams" but how many NATIONS sit at each depth. + * A pool of 3,000 that leaves 40 nations empty is worse than it sounds, and + * a total alone hides that completely. + * + * 2. WEIGHT. inject-iptv.js bakes the pool into void2-final.html as a string, + * shipped to every user on every load whether or not they open a stream. + * At 508 streams that block was ~66KB of an 800KB file. The pool is now + * much larger, so this prints what baking it would cost and what capping + * per nation would save — the input to deciding what to bake vs serve. + * + * node scripts/streams/report.js + * node scripts/streams/report.js --pool scripts/iptv-sources.generated.json + * node scripts/streams/report.js --want 30 # target per nation + */ +'use strict'; +const fs = require('fs'); +const path = require('path'); + +const ROOT = path.resolve(__dirname, '..', '..'); +const arg = (k, d) => { const i = process.argv.indexOf('--' + k); return i > -1 && process.argv[i + 1] ? process.argv[i + 1] : d; }; +const POOL = path.resolve(ROOT, arg('pool', 'scripts/iptv-sources.generated.json')); +const LIFE = path.resolve(ROOT, arg('life', 'scripts/life-sources.generated.json')); +const WANT = parseInt(arg('want', '30'), 10); + +const read = f => { try { return JSON.parse(fs.readFileSync(f, 'utf8')); } catch { return null; } }; + +const nationsFile = path.join(__dirname, 'nations.generated.json'); +const nations = read(nationsFile); +if (!nations) { console.error('run build-nations.js first — no nations.generated.json'); process.exit(1); } +const allNames = Object.values(nations.nations).map(n => n.name); + +const pool = read(POOL); +const sources = pool && pool.sources ? pool.sources : {}; +const life = read(LIFE) || {}; + +const liveCount = n => (sources[n] || []).length; +// Only live cams count as live from the LIFE pool; walking tours are recorded. +const lifeLive = n => (life[n] || []).filter(e => e && e.kind === 'livecam').length; +const total = n => liveCount(n) + lifeLive(n); + +const rows = allNames.map(n => ({ n, tv: liveCount(n), cam: lifeLive(n), all: total(n) })) + .sort((a, b) => a.all - b.all || a.n.localeCompare(b.n)); + +const sum = rows.reduce((a, r) => a + r.all, 0); +const at = v => rows.filter(r => r.all >= v).length; +const empty = rows.filter(r => !r.all); + +console.log('POOL :', path.relative(ROOT, POOL)); +console.log('nations :', allNames.length, '(from the C array via build-nations.js)'); +console.log('live streams:', sum, ` (${sum - rows.reduce((a, r) => a + r.cam, 0)} broadcast + ${rows.reduce((a, r) => a + r.cam, 0)} live cams)`); +console.log(''); +console.log('COVERAGE'); +for (const v of [40, WANT, 20, 10, 5, 1]) { + const c = at(v); + console.log(` >= ${String(v).padStart(2)} streams : ${String(c).padStart(3)} nations ${'#'.repeat(Math.round(c / allNames.length * 40))}`); +} +console.log(` ZERO : ${String(empty.length).padStart(3)} nations`); +console.log(''); +console.log(`SHORT OF ${WANT} (thinnest 40)`); +const short = rows.filter(r => r.all < WANT); +console.log(' ' + (short.slice(0, 40).map(r => `${r.n}:${r.all}`).join(' ') || 'none')); +if (short.length > 40) console.log(` … and ${short.length - 40} more`); +console.log(''); + +// What baking it costs. Mirrors inject-iptv.js: JSON.stringify of the sources +// object, embedded as a JS string literal. +const bakedAll = JSON.stringify(JSON.stringify(sources)).length; +const appPath = path.join(ROOT, 'void2-final.html'); +const appSize = fs.existsSync(appPath) ? fs.statSync(appPath).size : 0; +console.log('WEIGHT (inject-iptv.js bakes this into void2-final.html)'); +console.log(` whole pool baked : ${(bakedAll / 1024).toFixed(0)}KB -> app ~${((appSize + bakedAll) / 1024).toFixed(0)}KB`); +for (const cap of [10, 12, 15, 20]) { + const capped = {}; + for (const [k, v] of Object.entries(sources)) capped[k] = v.slice(0, cap); + const b = JSON.stringify(JSON.stringify(capped)).length; + const kept = Object.values(capped).reduce((a, v) => a + v.length, 0); + console.log(` cap ${String(cap).padStart(2)}/nation : ${String((b / 1024).toFixed(0)).padStart(4)}KB keeps ${kept} of ${sum} streams`); +} +console.log(''); +console.log(' Baking the whole pool ships every stream to every user on every load,'); +console.log(' whether or not they ever open one, and freezes it — IPTV URLs rot in'); +console.log(' weeks. Cap what is baked; serve the rest.'); diff --git a/stream dept plan/00-AUDIT.md b/stream dept plan/00-AUDIT.md new file mode 100644 index 0000000..15dbc25 --- /dev/null +++ b/stream dept plan/00-AUDIT.md @@ -0,0 +1,169 @@ +# Stream Department — Audit + +_Measured 2026-09-17 against `main` @ 9b057b7. Every number below came from running +something, not from reading a comment._ + +## 1. What the app can actually play + +`attemptSource` in [void2-final.html:5076](../void2-final.html#L5076) supports exactly +three source types: + +| type | how it plays | what it needs from the server | +|---|---|---| +| `hls` | `