Merge branch 'master' into master

This commit is contained in:
Aleksandr Statciuk 2025-07-01 06:43:30 +03:00 committed by GitHub
commit 5fd1458b86
180 changed files with 2938 additions and 3686 deletions

View File

@ -17,7 +17,7 @@ body:
id: stream_url
attributes:
label: Stream URL (required)
description: Link to the stream
description: Link to be added to the playlist
placeholder: 'https://example.com/playlist.m3u8'
validations:
required: true

View File

@ -5,6 +5,7 @@ labels: ['channel search']
body:
- type: input
id: stream_id
attributes:
label: Channel ID (required)
description: Unique channel ID from [iptv-org.github.io](https://iptv-org.github.io/). If you can't find the channel you want in the list, please let us know through this [form](https://github.com/iptv-org/database/issues/new?assignees=&labels=channels%3Aadd&projects=&template=channels_add.yml&title=Add%3A+) before posting your request.
@ -13,6 +14,15 @@ body:
required: true
- type: textarea
id: notes
attributes:
label: Notes
description: 'Any additional information that may help find a link to the stream faster?'
description: 'Any additional information that may help find a link to the stream faster?'
- type: checkboxes
attributes:
label: Contributing Guide
description: 'Please read this guide before posting your request'
options:
- label: I have read [Contributing Guide](https://github.com/iptv-org/iptv/blob/master/CONTRIBUTING.md)
required: true

View File

@ -1,8 +1,11 @@
blank_issues_enabled: true
blank_issues_enabled: false
contact_links:
- name: 💡 Feature request
- name: 💡 Ideas
url: https://github.com/orgs/iptv-org/discussions/categories/ideas
about: For any ideas or feature requests
- name: ❓ Ask a question
about: Share ideas for new features
- name: 🙌 Show and tell
url: https://github.com/orgs/iptv-org/discussions/categories/show-and-tell
about: Show off something you've made
- name: ❓ Q&A
url: https://github.com/orgs/iptv-org/discussions/categories/q-a
about: Ask questions about this project
about: Ask the community for help

View File

@ -11,14 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: changed files
id: files
run: |
FILES=streams/*.m3u
git fetch origin master:master
ANY_CHANGED=false
ALL_CHANGED_FILES=$(git diff --name-only "${FILES}" | tr '\n' ' ')
ALL_CHANGED_FILES=$(git diff --name-only master -- streams/ | tr '\n' ' ')
if [ -n "${ALL_CHANGED_FILES}" ]; then
ANY_CHANGED=true
fi

View File

@ -14,8 +14,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: tibdex/github-app-token@v1.8.2
if: ${{ !env.ACT }}
id: create-app-token
@ -25,7 +23,6 @@ jobs:
- uses: actions/checkout@v4
if: ${{ !env.ACT }}
with:
fetch-depth: 2
token: ${{ steps.create-app-token.outputs.token }}
- uses: actions/setup-node@v4
if: ${{ !env.ACT }}
@ -47,9 +44,9 @@ jobs:
- name: changed files
id: files_after
run: |
FILES=streams/*.m3u
git fetch origin master:master
ANY_CHANGED=false
ALL_CHANGED_FILES=$(git diff --name-only "${FILES}" | tr '\n' ' ')
ALL_CHANGED_FILES=$(git diff --name-only master -- streams/ | tr '\n' ' ')
if [ -n "${ALL_CHANGED_FILES}" ]; then
ANY_CHANGED=true
fi
@ -71,8 +68,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: tibdex/github-app-token@v1.8.2
if: ${{ !env.ACT }}
id: create-app-token
@ -82,14 +77,13 @@ jobs:
- uses: actions/checkout@v4
if: ${{ !env.ACT }}
with:
fetch-depth: 2
token: ${{ steps.create-app-token.outputs.token }}
- name: changed files
id: files
run: |
FILES=streams/*.m3u
git fetch origin master:master
ANY_CHANGED=false
ALL_CHANGED_FILES=$(git diff --name-only "${FILES}" | tr '\n' ' ')
ALL_CHANGED_FILES=$(git diff --name-only master -- streams/ | tr '\n' ' ')
if [ -n "${ALL_CHANGED_FILES}" ]; then
ANY_CHANGED=true
fi
@ -122,9 +116,8 @@ jobs:
- name: changed files
id: files_after
run: |
FILES=streams/*.m3u
ANY_CHANGED=false
ALL_CHANGED_FILES=$(git diff --name-only "${FILES}" | tr '\n' ' ')
ALL_CHANGED_FILES=$(git diff --name-only origin/master HEAD streams/ | tr '\n' ' ')
if [ -n "${ALL_CHANGED_FILES}" ]; then
ANY_CHANGED=true
fi

View File

@ -12,7 +12,7 @@
You have several options:
1. Create a new [issue](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=streams:add&projects=&template=1_streams_add.yml&title=Add%3A+) and provide all the required information. If the request is approved, the link will be added to the playlist in the next update.
1. Create a new request using this [form](https://github.com/iptv-org/iptv/issues/new?assignees=&labels=streams:add&projects=&template=1_streams_add.yml&title=Add%3A+) and if approved, the link will automatically be added to the playlist on the next update.
2. Add the link to the playlist directly using a [pull request](https://github.com/iptv-org/iptv/pulls).

898
README.md

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
import { Logger, Storage, Collection, Dictionary } from '@freearhey/core'
import { DataLoader, DataProcessor, PlaylistParser } from '../../core'
import { DataProcessorData } from '../../types/dataProcessor'
import { DATA_DIR, STREAMS_DIR } from '../../constants'
import { DATA_DIR, ROOT_DIR } from '../../constants'
import { DataLoaderData } from '../../types/dataLoader'
import { BlocklistRecord, Stream } from '../../models'
import { program } from 'commander'
@ -30,13 +30,13 @@ async function main() {
}: DataProcessorData = processor.process(data)
logger.info('loading streams...')
const streamsStorage = new Storage(STREAMS_DIR)
const rootStorage = new Storage(ROOT_DIR)
const parser = new PlaylistParser({
storage: streamsStorage,
storage: rootStorage,
channelsKeyById,
feedsGroupedByChannelId
})
const files = program.args.length ? program.args : await streamsStorage.list('**/*.m3u')
const files = program.args.length ? program.args : await rootStorage.list('streams/**/*.m3u')
const streams = await parser.parse(files)
logger.info(`found ${streams.count()} streams`)

View File

@ -133,7 +133,7 @@ async function main() {
const channelSearchRequestsBuffer = new Dictionary()
channelSearchRequests.forEach((issue: Issue) => {
const streamId = issue.data.getString('channelId') || ''
const [channelId] = streamId.split('@')
const [channelId, feedId] = streamId.split('@')
const result = {
issueNumber: issue.number,
@ -148,6 +148,7 @@ async function main() {
else if (channelSearchRequestsBuffer.has(streamId)) result.status = 'duplicate'
else if (blocklistRecordsGroupedByChannelId.has(channelId)) result.status = 'blocked'
else if (streamsGroupedById.has(streamId)) result.status = 'fulfilled'
else if (!feedId && streamsGroupedByChannelId.has(channelId)) result.status = 'fulfilled'
else {
const channelData = channelsKeyById.get(channelId)
if (channelData.length && channelData[0].closed) result.status = 'closed'

View File

@ -23,6 +23,8 @@ export class PlaylistParser {
let streams = new Collection()
for (const filepath of files) {
if (!this.storage.existsSync(filepath)) continue
const _streams: Collection = await this.parseFile(filepath)
streams = streams.concat(_streams)
}

View File

@ -37,8 +37,6 @@ https://iko-live.akamaized.net/AlyuamTV/master.m3u8
https://d35j504z0x2vu2.cloudfront.net/v1/master/0bc8e8376bd8417a1b6761138aa41c26c7309312/al-arabiya/playlist.m3u8
#EXTINF:-1 tvg-id="Alarabiya.ae",Alarabiya (1080p)
https://shls-live-enc.edgenextcdn.net/out/v1/f5f319206ed740f9a831f2097c2ead23/index.m3u8
#EXTINF:-1 tvg-id="AlarabiyaPortrait.ae",Alarabiya Portrait (720p)
https://live.alarabiya.net/alarabiapublish/arabiav.smil/playlist.m3u8
#EXTINF:-1 tvg-id="BaynounahTV.ae",Baynounah TV (1080p)
https://vo-live.cdb.cdn.orange.com/Content/Channel/Baynounah/HLS/index.m3u8
#EXTINF:-1 tvg-id="CNBCArabiya.ae",CNBC Arabiya (1080p)
@ -83,8 +81,8 @@ https://shls-masr-prod-dub.shahid.net/out/v1/c08681f81775496ab4afa2bac7ae7638/in
https://shls-mbc4-prod-dub.shahid.net/out/v1/c08681f81775496ab4afa2bac7ae7638/index.m3u8
#EXTINF:-1 tvg-id="MBC5.ae",MBC 5 (1080p)
https://shls-mbc5-prod-dub.shahid.net/out/v1/2720564b6a4641658fdfb6884b160da2/index.m3u8
#EXTINF:-1 tvg-id="MBCBollywood.ae",MBC Bollywood (1080p) [Geo-blocked]
https://shls-mbcbollywood-prod-dub.shahid.net/out/v1/a79c9d7ef2a64a54a64d5c4567b3462a/index.m3u8
#EXTINF:-1 tvg-id="MBCBollywood.ae@SD",MBC Bollywood (1080p) [Geo-blocked]
https://shd-gcp-live.edgenextcdn.net/live/bitmovin-mbc-bollywood/546eb40d7dcf9a209255dd2496903764/index.m3u8
#EXTINF:-1 tvg-id="MBCDrama.ae",MBC Drama KSA (1080p)
https://mbc1-enc.edgenextcdn.net/out/v1/b0b3a0e6750d4408bb86d703d5feffd1/index.m3u8
#EXTINF:-1 tvg-id="MBCFM.ae",MBC FM (1080p)
@ -93,15 +91,13 @@ https://dbbv9umqcd7cs.cloudfront.net/out/v1/db15b75c3cc0400c91961468d6a232ac/ind
https://mbcfm-riyadh-prod-dub.shahid.net/out/v1/69c8a03f507e422f99cf5c07291c9e3a/index.m3u8
#EXTINF:-1 tvg-id="MBCMasr.eg",MBC Masr 1 (1080p)
https://shls-masr-prod-dub.shahid.net/out/v1/d5036cabf11e45bf9d0db410ca135c18/index.m3u8
#EXTINF:-1 tvg-id="MBCMasr2.eg",MBC Masr 2 (1080p)
https://shls-masr2-prod-dub.shahid.net/out/v1/f683685242b549f48ea8a5171e3e993a/index.m3u8
#EXTINF:-1 tvg-id="MBCPersia.ae",MBC Persia (1080p)
https://shls-mbcpersia-prod-dub.shahid.net/out/v1/bdc7cd0d990e4c54808632a52c396946/index.m3u8
#EXTINF:-1 tvg-id="NationalGeographicAbuDhabi.ae",National Geographic Abu Dhabi (1080p) [Geo-blocked]
https://vo-live.cdb.cdn.orange.com/Content/Channel/NationalGeographicHDChannel/HLS/index.m3u8
#EXTINF:-1 tvg-id="NoorDubai.ae",Noor Dubai (1080p)
https://dmiffthftl.cdn.mangomolo.com/noordubaitv/smil:noordubaitv.smil/chunklist.m3u8
#EXTINF:-1 tvg-id="NourTV.ae",Nour TV (720p)
#EXTINF:-1 tvg-id="NourTV.ae",Nour TV
https://cdn.bestream.io:19360/elfaro4/elfaro4.m3u8
#EXTINF:-1 tvg-id="PeaceTVBangla.ae",Peace TV Bangla (1080p)
https://dzkyvlfyge.erbvr.com/PeaceTvBangla/index.m3u8
@ -111,12 +107,6 @@ https://dzkyvlfyge.erbvr.com/PeaceTvChinese/index.m3u8
https://dzkyvlfyge.erbvr.com/PeaceTvEnglish/index.m3u8
#EXTINF:-1 tvg-id="PeaceTVUrdu.ae",Peace TV Urdu (1080p)
https://dzkyvlfyge.erbvr.com/PeaceTvUrdu/index.m3u8
#EXTINF:-1 tvg-id="PMC.ae",PMC (1080p)
https://hls.pmchd.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PMC.ae",PMC (1080p)
https://hls.pmc.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PMCRoyale.ae",PMC Royale (720p) [Not 24/7]
https://rohls.pmc.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="Pulse95Radio.ae",Pulse95 Radio (1080p)
https://svs.itworkscdn.net/pulse95live/pulse96vision/playlist.m3u8
#EXTINF:-1 tvg-id="SamaDubai.ae",Sama Dubai (1080p)
@ -143,19 +133,15 @@ https://stream.skynewsarabia.com/vertical/vertical.m3u8
https://shls-wanasah-prod-dub.shahid.net/out/v1/c84ef3128e564b74a6a796e8b6287de6/index.m3u8
#EXTINF:-1 tvg-id="WatarRadio.ae",Watar Radio (1080p)
https://svs.itworkscdn.net/smcwatarlive/smcwatar/playlist.m3u8
#EXTINF:-1 tvg-id="WeyyakAction.ae",Weyyak Action (1080p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_action/index.m3u8
#EXTINF:-1 tvg-id="WeyyakDrama.ae",Weyyak Drama (720p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_drama/index.m3u8
#EXTINF:-1 tvg-id="WeyyakMix.ae",Weyyak Mix (720p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_mix/index.m3u8
#EXTINF:-1 tvg-id="WeyyakNawaem.ae",Weyyak Nawaem (720p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_nawaem/index.m3u8
#EXTINF:-1 tvg-id="YasTV.ae",Yas TV (1080p)
https://vo-live.cdb.cdn.orange.com/Content/Channel/YASSportsChannel/HLS/index.m3u8
#EXTINF:-1 tvg-id="ZeeAflam.ae",Zee Aflam (720p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_zee_aflam/index.m3u8
#EXTINF:-1 tvg-id="ZeeAlwan.ae",Zee Alwan (720p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_zee_alwan/index.m3u8
#EXTINF:-1 tvg-id="SpacetoonArabic.ae",Spacetoon Arabic (1080p)
https://shd-gcp-live.edgenextcdn.net/live/bitmovin-spacetoon/d8382fb9ab4b2307058f12c7ea90db54/index.m3u8
#EXTINF:-1 tvg-id="MBCPersia.ae",MBC Persia (720p)
https://hls.mbcpersia.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PMC.ae",PMC (1080p)
https://hls.pmc.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PMCRoyale.ae",PMC Royale (720p)
https://rohls.pmc.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="AbuDhabiTV.ae@SD",Abu Dhabi TV
http://dvrfl05.bozztv.com/gin-abudhabitv/index.m3u8

View File

@ -1,8 +1,8 @@
#EXTM3U
#EXTINF:-1 tvg-id="AMC.af",AMC (1080p)
https://amchls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="ATNNews.af",ATN News (720p) [Not 24/7]
https://d10rltuy0iweup.cloudfront.net/ATNNEWS/myStream/playlist.m3u8
#EXTINF:-1 tvg-id="ATNNews.af@SD",ATN News (720p) [Not 24/7]
http://dvrfl05.bozztv.com/gin-atnnews/index.m3u8
#EXTINF:-1 tvg-id="BaharTV.af",Bahar TV (720p) [Not 24/7]
https://59d39900ebfb8.streamlock.net/bahartv/bahartv/playlist.m3u8
#EXTINF:-1 tvg-id="BarbudMusic.af",Barbud Music (720p)
@ -17,8 +17,6 @@ http://51.210.199.58/hls/stream.m3u8
https://live.relentlessinnovations.net:1936/imantv/imantv/playlist.m3u8
#EXTINF:-1 tvg-id="KayhanTV.af",Kayhan TV (720p)
https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8
#EXTINF:-1 tvg-id="NoorTV.af",Noor TV (720p)
https://www.hewadwal.com:19360/noortv_abr/noortv_abr.m3u8
#EXTINF:-1 tvg-id="RTA.af",RTA (1080p)
https://rtatv.akamaized.net/Content/HLS/Live/channel(RTA1)/index.m3u8
#EXTINF:-1 tvg-id="RTAEducation.af",RTA Education (1080p)
@ -37,3 +35,21 @@ https://hls.tamadon.live/hls/stream.m3u8
https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/tolonews.m3u8
#EXTINF:-1 tvg-id="ChekadTV.af",Chekad TV (720p)
https://go5lmqxjyawb-hls-live.5centscdn.com/Chekad/271ddf829afeece44d8732757fba1a66.sdp/chunks.m3u8
#EXTINF:-1 tvg-id="ArezoTV.af@SD",Arezo TV
http://dvrfl05.bozztv.com/gin-arezotv/index.m3u8
#EXTINF:-1 tvg-id="ZhwandoonTV.af@SD",Zhwandoon TV
https://live20.bozztv.com/dvrfl05/gin-zhwandoon/index.m3u8
#EXTINF:-1 tvg-id="LemarTV.af@SD",Lemar TV
http://dvrfl05.bozztv.com/gin-lemar/index.m3u8
#EXTINF:-1 tvg-id="ATNNational.af@SD",ATN National
https://live20.bozztv.com/dvrfl05/gin-ariana/index.m3u8
#EXTINF:-1 tvg-id="1TV.af@SD",1TV
https://live20.bozztv.com/dvrfl05/gin-1tvafg/index.m3u8
#EXTINF:-1 tvg-id="ToloTV.af@SD",Tolo TV
https://live20.bozztv.com/dvrfl05/gin-tolohd/index.m3u8
#EXTINF:-1 tvg-id="FazaTV.af@SD",Faza TV
https://fl1002.bozztv.com/gin-fazatv/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="ATNUS.af@SD",ATN US
https://live20.bozztv.com/gin-36bay3/ga-arianausa/index.m3u8
#EXTINF:-1 tvg-id="ShamshadTV.af",Shamshad TV [Not 24/7]
https://5a1178b42cc03.streamlock.net/shamshadtelevision/shamshadtelevision/playlist.m3u8

View File

@ -1,6 +1,4 @@
#EXTM3U
#EXTINF:-1 tvg-id="A2CNN.al",A2 CNN (720p)
https://tv.a2news.com/live/smil:a2cnnweb.stream.smil/playlist.m3u8
#EXTINF:-1 tvg-id="AlbKanaleMusicTV.al",AlbKanale Music TV (720p)
https://albportal.net/albkanalemusic.m3u8
#EXTINF:-1 tvg-id="CNA.al",CNA (1080p)

View File

@ -11,3 +11,13 @@ https://amtvusdvr.tulix.tv/am3abr/index.m3u8
https://songtv.hls.iptvdc.com/web-armenia/index.m3u8
#EXTINF:-1 tvg-id="Armenia1.am",Առաջին ալիք (1080p)
https://amtv1.livestreamingcdn.com/am2abr/index.m3u8
#EXTINF:-1 tvg-id="Armenia2.am@SD",Armenia 2
https://amtv.tulixcdn.com/amtv3/am3abr/index.m3u8
#EXTINF:-1 tvg-id="Armenia1.am@SD",Armenia 1
https://amtv.tulixcdn.com/amtv2/am2abr/index.m3u8
#EXTINF:-1 tvg-id="ShoghakatTV.am@SD",Shoghakat TV
https://live20.bozztv.com/gin-trn09/gt-amshoghakat/index.m3u8
#EXTINF:-1 tvg-id="ArmeniaPremium.am@SD",Armenia Premium
https://live20.bozztv.com/gin-trn09/gt-ampremium/index.m3u8
#EXTINF:-1 tvg-id="5TV.am@SD",5TV
https://live20.bozztv.com/gin-trn09/gt-amtv5/index.m3u8

View File

@ -5,12 +5,6 @@ http://ott-cdn.ucom.am/s6/index.m3u8
#EXTINF:-1 tvg-id="5TV.am@SD" http-user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148",5 ԹԻՎԻ ՊԼՅՈՒՍ (480p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148
http://ott-cdn.ucom.am/s9/index.m3u8
#EXTINF:-1 tvg-id="AlJazeera.qa" http-user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148",Al Jazeera (480p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148
http://ott-cdn.ucom.am/s23/index.m3u8
#EXTINF:-1 tvg-id="AlJazeera.qa" http-user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148",Al Jazeera Arabic (480p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148
http://ott-cdn.ucom.am/s69/index.m3u8
#EXTINF:-1 tvg-id="AmediaPremium.ru" http-user-agent="Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148",Amedia Premium (480p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML,like Gecko) Mobile/15E148
http://ott-cdn.ucom.am/s64/index.m3u8

View File

@ -1,21 +1 @@
#EXTM3U
#EXTINF:-1 tvg-id="AmediaPremium.ru",Amedia Premium
http://stream01.vnet.am/AmediaPremium/mono.m3u8
#EXTINF:-1 tvg-id="ATVKinoman.am",ATV Kinoman HD
http://stream02.vnet.am/Kinoman/mono.m3u8
#EXTINF:-1 tvg-id="FightBox.nl",FightBox
http://stream01.vnet.am/Fightbox/mono.m3u8
#EXTINF:-1 tvg-id="Detskimir.ru",Детский мир
http://stream01.vnet.am/CartoonNetwork/mono.m3u8
#EXTINF:-1 tvg-id="Nauka.ru",Наука 2.0
http://stream01.vnet.am/Nauka/mono.m3u8
#EXTINF:-1 tvg-id="NTVMir.ru",НТВ Мир
http://stream02.vnet.am/HTB/mono.m3u8
#EXTINF:-1 tvg-id="PervyyKosmicheskiy.ru",Первый космический
http://stream01.vnet.am/Evrika/mono.m3u8
#EXTINF:-1 tvg-id="PeretzInternational.ru",Перец
http://stream01.vnet.am/Perec/mono.m3u8
#EXTINF:-1 tvg-id="FridayInternational.ru",Пятница International
https://stream01.vnet.am/Pyatnica/mono.m3u8
#EXTINF:-1 tvg-id="Telecafe.ru",Телекафе
http://stream01.vnet.am/Telekafe/mono.m3u8

View File

@ -5,3 +5,5 @@ https://w1.manasat.com/ktv-angola/smil:ktv-angola.smil/playlist.m3u8
https://5cf4a2c2512a2.streamlock.net/tvmuzangala/tvmuzangala/playlist.m3u8
#EXTINF:-1 tvg-id="TVZimbo.ao",TV Zimbo (1080p)
https://sgn-cdn-video.vods2africa.com/Tv-Zimbo/index.fmp4.m3u8
#EXTINF:-1 tvg-id="TPANoticias.ao@SD",TPA Noticias
https://live20.bozztv.com/dvrfl06/astv/astv-tpaint/index.m3u8

View File

@ -5,39 +5,14 @@ http://www.coninfo.net:1935/tvcinco/live1/playlist.m3u8
http://coninfo.net:1935/13maxhd/live13maxtvnuevo/playlist.m3u8
#EXTINF:-1 tvg-id="13MaxTelevision.ar",13Max Televisión (720p)
http://coninfo.net:1935/13maxhd/live13maxtvnuevo_720p/playlist.m3u8
#EXTINF:-1 tvg-id="247CanaldeNoticias.ar",24/7 Canal de Noticias (720p)
https://panel.dattalive.com/6605140/6605140/playlist.m3u8
#EXTINF:-1 tvg-id="247CanaldeNoticias.ar",24/7 Canal de Noticias (720p)
https://panel.dattalive.com/6605140/smil:6605140.smil/playlist.m3u8
#EXTINF:-1 tvg-id="247CanaldeNoticias.ar" http-referrer="https://cn247.tv/",24/7 Canal de Noticias
#EXTVLCOPT:http-referrer=https://cn247.tv/
https://panel.host-live.com:19360/cn247tv/passthru.m3u8
#EXTINF:-1 tvg-id="A24.ar" http-user-agent="iPhone",A24 (720p)
#EXTVLCOPT:http-user-agent=iPhone
https://g1.vxral-hor.transport.edge-access.net/a15/ngrp:a24-100056_all/a24-100056.m3u8
#EXTINF:-1 tvg-id="AiredeSantaFe.ar",Aire de Santa Fe (1080p)
https://unlimited1-us.dps.live/airedesantafetv/airedesantafetv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="AlternaTV.ar",Alterna TV (720p)
https://alternatv.ar/stream/hls/live.m3u8
#EXTINF:-1 tvg-id="Am1020.ar",Am1020 (360p) [Geo-blocked]
http://51.79.83.93:9998/live/am1020/playlist.m3u8
#EXTINF:-1 tvg-id="AmericaTV.ar",America TV (480p)
http://190.2.212.209:8050/play/a0pb
#EXTINF:-1 tvg-id="AmericaTV.ar" http-user-agent="iPhone",América TV (720p)
#EXTVLCOPT:http-user-agent=iPhone
https://raw.githubusercontent.com/MachineSystems/archived_m3u8/main/america_hls.m3u8
#EXTINF:-1 tvg-id="ArgentinisimaSatelital.ar",Argentinísima Satelital (540p)
https://stream1.sersat.com/hls/argentinisima.m3u8
#EXTINF:-1 tvg-id="AstroNet.ar",AstroNet (360p)
https://stmv1.cnarlatam.com/astronet/astronet/playlist.m3u8
#EXTINF:-1 tvg-id="AVCHD.ar",AVC HD (720p)
https://ssh101.bozztv.com/ssh101/streamavc/playlist.m3u8
#EXTINF:-1 tvg-id="AventurasTV.ar",Aventuras TV (360p)
https://stmv1.cnarlatam.com/mundotv/mundotv/playlist.m3u8
#EXTINF:-1 tvg-id="AzaharesRadiovisualMultimedia.ar",Azahares Radio Multimedia (720p)
https://streamyes.alsolnet.com/azaharesfm/live/playlist.m3u8
#EXTINF:-1 tvg-id="AZMTV.ar",AZM TV (1080p) [Not 24/7]
https://live.canalnueve.tv/canal.m3u8
#EXTINF:-1 tvg-id="BayresTV.ar",Bayres TV (720p)
https://streaming02.gbasat.com.ar:19360/bayrestv/bayrestv.m3u8
#EXTINF:-1 tvg-id="BeatsRadio.ar",Beats Radio (480p)
@ -50,30 +25,18 @@ http://arcast.net:1935/cadena103/cadena103/playlist.m3u8
https://nd106.republicaservers.com:4433/hls/c6611/index.m3u8
#EXTINF:-1 tvg-id="Canal2Misiones.ar",Canal 2 Misiones (1080p)
https://nd106.republicaservers.com:4433/hls/canal2misioness/index.m3u8
#EXTINF:-1 tvg-id="Canal2Perico.ar",Canal 2 Perico (480p)
https://streamcasthd.com:1936/tecnovisioncanal2tv/tecnovisioncanal2tv/playlist.m3u8
#EXTINF:-1 tvg-id="Canal3Formosa.ar",Canal 3 Formosa (720p)
https://stmvideo2.livecastv.com/agenfor/agenfor/playlist.m3u8
#EXTINF:-1 tvg-id="Canal3LaPampa.ar",Canal 3 La Pampa (1080p)
https://stream.arcast.com.ar/c3lapampa/ngrp:c3lapampa_all/playlist.m3u8
#EXTINF:-1 tvg-id="Canal3LasHeras.ar",Canal 3 Las Heras (720p)
https://stream.arcast.com.ar/canal3/canal3/playlist.m3u8
#EXTINF:-1 tvg-id="Canal3Rosario.ar",Canal 3 Rosario (704p) [Geo-blocked]
https://59d52c5a5ce5e.streamlock.net:4443/canal3rosario/ngrp:canal3rosario_all/playlist.m3u8
#EXTINF:-1 tvg-id="Canal4Balcarce.ar",Canal 4 Balcarce (360p)
https://stmvideo2.livecastv.com/canal4/canal4/playlist.m3u8
#EXTINF:-1 tvg-id="Canal4Posadas.ar",Canal 4 Posadas (576p)
https://iptv.ixfo.com.ar:30443/live/C4POS/playlist.m3u8
#EXTINF:-1 tvg-id="Canal4SanJuan.ar",Canal 4 San Juan (576p)
https://streamlov.alsolnet.com/canal4sanjuan/live/playlist.m3u8
#EXTINF:-1 tvg-id="Canal5DelPueblo.ar",Canal 5 del Pueblo (360p)
https://stmv1.cnarlatam.com/canal5pueblo/canal5pueblo/playlist.m3u8
#EXTINF:-1 tvg-id="Canal5PicoTruncado.ar",Canal 5 Pico Truncado (540p)
https://stream.arcast.com.ar/canal5picotruncado/canal5picotruncado/playlist.m3u8
#EXTINF:-1 tvg-id="Canal5SantaFe.ar",Canal 5 Santa Fe (240p)
https://stream.arcast.com.ar/c5sf/c5sf/playlist.m3u8
#EXTINF:-1 tvg-id="Canal6MardelPlata.ar",Canal 6 Mar del Plata (480p)
https://panel.dattalive.com/8166/8166/playlist.m3u8
#EXTINF:-1 tvg-id="Canal6Posadas.ar",Canal 6 Posadas (1080p)
https://iptv.ixfo.com.ar:30443/live/c6digital/playlist.m3u8
#EXTINF:-1 tvg-id="Canal7Neuquen.ar",Canal 7 Neuquén (1080p)
@ -84,27 +47,10 @@ https://vivo.solumedia.com:19360/cooperativa/cooperativa.m3u8
https://stream.arcast.com.ar/envivo/castv/playlist.m3u8
#EXTINF:-1 tvg-id="Canal9Litoral.ar",Canal 9 Litoral (720p)
https://stream.arcast.live/ahora/ahora/playlist.m3u8
#EXTINF:-1 tvg-id="Canal9NorteMisionero.ar",Canal 9 Norte Misionero (614p)
https://panel.dattalive.com/8076/8076/playlist.m3u8
#EXTINF:-1 tvg-id="Canal9Resistencia.ar",Canal 9 Resistencia (720p)
http://coninfo.net:1935/9linklivert/smil:9linkmultibr.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal9RioCuarto.ar",Canal 9 Río Cuarto (480p)
https://streamcasthd.com:1936/canal9riocuartotv/canal9riocuartotv/playlist.m3u8
#EXTINF:-1 tvg-id="Canal9Televida.ar",Canal 9 Televida (720p)
https://unlimited1-us.dps.live/televidaar/televidaar.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal10deJunin.ar" http-user-agent="iPhone",Canal 10 de Junín (720p) [Not 24/7]
#EXTVLCOPT:http-user-agent=iPhone
https://g4.mc-slo.transport.edge-access.net/a10/ngrp:canal10junin-100056_all/Playlist.m3u8
#EXTINF:-1 tvg-id="Canal10Goya.ar",Canal 10 Goya (576p)
https://streamcasthd.com:19360/canal10goya/canal10goya.m3u8
#EXTINF:-1 tvg-id="Canal10TVRioNegro.ar",Canal 10 Rio Negro (720p) [Not 24/7]
http://panel.dattalive.com:1935/8204/8204/playlist.m3u8
#EXTINF:-1 tvg-id="Canal10TVRioNegro.ar",Canal 10 Rio Negro (720p) [Not 24/7]
https://panel.dattalive.com/8204/8204/playlist.m3u8
#EXTINF:-1 tvg-id="Canal10SanRafael.ar",Canal 10 San Rafael (480p)
https://streamcasthd.com:1936/tvdiez/tvdiez/playlist.m3u8
#EXTINF:-1 tvg-id="Canal10Salta.ar",Canal 10 Televisión Salteña (720p)
https://restreamer.el10tv.com/memfs/725003c4-79c2-4565-8311-f429db4f7777.m3u8
#EXTINF:-1 tvg-id="Canal11delaCosta.ar",Canal 11 de la Costa (720p)
https://vivo.solumedia.com:19360/dadaproductora/dadaproductora.m3u8
#EXTINF:-1 tvg-id="Canal12Web.ar",Canal 12 Puerto Madryn (720p) [Not 24/7]
@ -117,50 +63,20 @@ http://arcast.net:1935/mp/mp/playlist.m3u8
https://iptv.ixfo.com.ar:30443/c21tv/hd/c21tv/playlist.m3u8
#EXTINF:-1 tvg-id="Canal22.ar",Canal 22 (720p)
https://5f700d5b2c46f.streamlock.net/canal22/canal22/playlist.m3u8
#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p)
http://200.115.193.177/live/26hd-720/playlist.m3u8
#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (720p)
https://live-edge01.telecentro.net.ar/live/smil:c26.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (180p)
http://live-edge01.telecentro.net.ar/live/smil:c26.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal26.ar",Canal 26 (180p)
http://live-edge02.telecentro.net.ar/live/c26.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal34SanJuan.ar",Canal 34 San Juan (720p)
https://streamyes.alsolnet.com/canal34hd/live/playlist.m3u8
#EXTINF:-1 tvg-id="Canal40Caucete.ar",Canal 40 Caucete (720p)
https://canalsj.kozow.com/canal40/index.m3u8
#EXTINF:-1 tvg-id="Canal79LaCosta.ar",Canal 79 La Costa (240p)
https://streamconex.com:19360/lacosta/lacosta.m3u8
#EXTINF:-1 tvg-id="Canal79Puan.ar",Canal 79 Puan (240p)
https://streamconex.com:19360/puan/puan.m3u8
#EXTINF:-1 tvg-id="Canal79SanJuan.ar",Canal 79 San Juan (240p)
https://streamconex.com:1936/sanjuan/sanjuan/playlist.m3u8
#EXTINF:-1 tvg-id="Canal79SantaClaradelMar.ar",Canal 79 Santa Clara del Mar (240p)
https://streamconex.com:19360/santaclara-1/santaclara-1.m3u8
#EXTINF:-1 tvg-id="Canal79VillaMaza.ar",Canal 79 Villa Maza (240p)
https://streamconex.com:1936/villamaza/villamaza/playlist.m3u8
#EXTINF:-1 tvg-id="Canal907FM.ar",Canal 907 FM (576p)
https://panel.dattalive.com/canal907/canal907/playlist.m3u8
#EXTINF:-1 tvg-id="CanalCoop.ar",Canal Coop (576p)
https://panel.dattalive.com/8138/8138/playlist.m3u8
#EXTINF:-1 tvg-id="CanaldelaCiudad.ar",Canal de la Ciudad (360p) [Not 24/7]
http://168.197.196.98:82/stream/channelid/1330348835?profile=pass
#EXTINF:-1 tvg-id="CanalE.ar",Canal E (720p)
https://unlimited1-us.dps.live/perfiltv/perfiltv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalLuz.ar" http-user-agent="iPhone",Canal Luz (1080p)
#EXTVLCOPT:http-user-agent=iPhone
https://g2.vxral-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8
#EXTINF:-1 tvg-id="CanalLuz.ar" http-user-agent="Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36",Canal Luz (1080p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (iPad; CPU OS 9_3_5 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Mobile/13G36
https://g1.mc-slo.transport.edge-access.net/a11/ngrp:canal_luz01-100009_all/Playlist.m3u8?sense=true
#EXTINF:-1 tvg-id="CanalProvincial.ar",Canal Provincial (360p)
https://streaming.telered.com.ar/provincial/streaming/mystream.m3u8
#EXTINF:-1 tvg-id="CanalSantaMaria.ar",Canal Santa María (360p)
https://streaming.telered.com.ar/santa-maria/streaming/mystream.m3u8
#EXTINF:-1 tvg-id="CanalU.ar",Canal U (720p)
https://stream.arcast.live/canalu/canalu/playlist.m3u8
#EXTINF:-1 tvg-id="CanalXFN.ar",Canal XFN (720p)
https://streamconex.com:1936/canalxfn/canalxfn/playlist.m3u8
#EXTINF:-1 tvg-id="CatamarcaTV.ar",Catamarca TV (720p)
https://stream.arcast.com.ar/canal7catamarca/ngrp:canal7catamarca_all/playlist.m3u8?DVR=
#EXTINF:-1 tvg-id="CeltaTV.ar",Celta TV (240p)
@ -169,70 +85,28 @@ https://vivo.solumedia.com:19360/celta/celta.m3u8
https://wowzasrv.chaco.gov.ar/Streamtv/chacotv/playlist.m3u8
#EXTINF:-1 tvg-id="ChilecitoTV.ar",Chilecito TV (480p)
https://vivo.solumedia.com:19360/grupoemail/grupoemail.m3u8
#EXTINF:-1 tvg-id="CineAr.ar",CINE.AR (720p) [Not 24/7]
https://5fb24b460df87.streamlock.net/live-cont.ar/cinear/playlist.m3u8
#EXTINF:-1 tvg-id="CiudadMagazine.ar",Ciudad Magazine (1080p) [Geo-blocked]
https://live-01-07-ciudad.vodgc.net/live-01-07-ciudad.vodgc.net/index.m3u8
#EXTINF:-1 tvg-id="Canal3Pinamar.ar",CN3 Pinamar (720p) [Not 24/7]
https://wowza.telpin.com.ar:1935/canal3/canal3.stream/playlist.m3u8
#EXTINF:-1 tvg-id="CnArDeportes.ar",CnAr Deportes (1440p)
https://stmv1.cnarlatam.com/cnardeportes2/cnardeportes2/playlist.m3u8
#EXTINF:-1 tvg-id="CnArNoticias.ar",CnAr Noticias (360p)
https://stmv1.cnarlatam.com/cnarnoticias/cnarnoticias/playlist.m3u8
#EXTINF:-1 tvg-id="CorrientesTV.ar",Corrientes TV (CTV) (720p)
https://mediacp.hostradios.com.ar:19360/canal7/canal7.m3u8
#EXTINF:-1 tvg-id="CosmosTv.ar@SD",Cosmos TV (720p)
https://tv.mediacp.eu:19360/cosmos/cosmos.m3u8
#EXTINF:-1 tvg-id="CPEtv.ar",CPEtv (720p)
https://stream.arcast.live/cpe/ngrp:cpe_all/playlist.m3u8
#EXTINF:-1 tvg-id="DanceTV.ar",Dance TV (360p)
https://stmv1.cnarlatam.com/danncetv/danncetv/playlist.m3u8
#EXTINF:-1 tvg-id="DemosRadioVisual.ar",Demos Radio Visual (720p)
https://panel.dattalive.com/8066/8066/playlist.m3u8
#EXTINF:-1 tvg-id="DirecTVSports.us@Panregional",DirecTV Sports (480p) [Geo-blocked]
http://190.210.221.119/Processor3_9_chunklist_b1300000.m3u8
#EXTINF:-1 tvg-id="DisneyJrLatinAmerica.ar@South",Disney Junior Latin America (480p)
http://168.181.122.234:8000/play/a037/index.m3u8
#EXTINF:-1 tvg-id="ElHistonautaTV.ar",El Histonauta TV (360p)
https://stmv1.cnarlatam.com/elhistonauta/elhistonauta/playlist.m3u8
#EXTINF:-1 tvg-id="ElPalomarTV.ar",El Palomar TV (720p)
https://stream.trixserver.com:3249/live/uv038live.m3u8
#EXTINF:-1 tvg-id="ElTrece.ar",El Trece (1080p)
https://live-01-02-eltrece.vodgc.net/eltrecetv/index.m3u8
#EXTINF:-1 tvg-id="GarageTVLatinAmerica.ar",Garage TV Latin America
https://stream1.sersat.com/hls/garagetv.m3u8
#EXTINF:-1 tvg-id="GlobalTV.ar",Global TV (1080p)
https://stmv.video.gmpro.top/global/global/playlist.m3u8
#EXTINF:-1 tvg-id="IngenioFM.ar",Ingenio FM (720p) [Not 24/7]
https://panel.dattalive.com/8064/8064/playlist.m3u8
#EXTINF:-1 tvg-id="LapachoTVCanal11.ar",Lapacho TV Canal 11 (720p)
https://vivo.solumedia.com:19360/lapacho/lapacho.m3u8
#EXTINF:-1 tvg-id="LineaDirectaRadio.ar",Línea Directa Radio (360p)
https://stmv1.cnarlatam.com/lineadirectaradio/lineadirectaradio/playlist.m3u8
#EXTINF:-1 tvg-id="LinkTV.ar",Link TV (1080p)
https://panel.dattalive.com/8128_1/8128_1/playlist.m3u8
#EXTINF:-1 tvg-id="LitusTV.ar",Litus TV (720p)
https://stream.arcast.com.ar/litustv/ngrp:litustv_all/playlist.m3u8
#EXTINF:-1 tvg-id="MagicKids.ar",Magic Kids (486p)
https://magicstream.ddns.net/magicstream/stream.m3u8
#EXTINF:-1 tvg-id="MalbecPlay.ar",Malbec Play (1080p)
https://streamlov.alsolnet.com/malbecplay/live/playlist.m3u8
#EXTINF:-1 tvg-id="MasFM.ar",Más FM 95.9 (720p)
https://vivo.solumedia.com:19360/masfm/masfm.m3u8
#EXTINF:-1 tvg-id="MasMusicaTV.ar",Más Música TV (360p)
https://stmv1.cnarlatam.com/televideo/televideo/playlist.m3u8
#EXTINF:-1 tvg-id="MetroTV.ar",Metro TV (720p)
https://streamtv12.ddns.net:5443/LiveApp/streams/193945633734205616732920.m3u8
#EXTINF:-1 tvg-id="MetropolitanaFM.ar",Metropolitana FM (720p)
https://panel.dattalive.com/MetropolitanaFM/MetropolitanaFM/playlist.m3u8
#EXTINF:-1 tvg-id="",Milennio TV (720p)
https://videostream.shockmedia.com.ar:19360/milenniotv/milenniotv.m3u8
#EXTINF:-1 tvg-id="MultivisionFederal.ar",Multivisión Federal (720p) [Not 24/7]
http://panel.dattalive.com:1935/8250/8250/playlist.m3u8
#EXTINF:-1 tvg-id="MultivisionFederal.ar",Multivisión Federal (720p) [Not 24/7]
https://panel.dattalive.com/8250/8250/playlist.m3u8
#EXTINF:-1 tvg-id="MusicTop.ar",MusicTop (720p)
http://live-edge01.telecentro.net.ar/live/smil:musictop.smil/playlist.m3u8
#EXTINF:-1 tvg-id="NeoxTV.ar",Neox TV (480p)
https://tv.streamcasthd.com:3076/live/sonicaargentinalive.m3u8
#EXTINF:-1 tvg-id="NETTV.ar",NET TV (720p)
@ -241,18 +115,12 @@ https://unlimited1-us.dps.live/nettv/nettv.smil/playlist.m3u8
https://unlimited6-cl.dps.live/nettv/nettv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="NGFederal.ar",NG Federal (720p)
http://www.coninfo.net:1935/tvlink/live/playlist.m3u8
#EXTINF:-1 tvg-id="OneRadioTV.ar",OneRadio TV (1080p) [Not 24/7]
https://stmvideo2.livecastv.com/oneradio/oneradio/playlist.m3u8
#EXTINF:-1 tvg-id="Pakapaka.ar",Pakapaka (720p)
https://5fb24b460df87.streamlock.net/live-cont.ar/pakapaka/playlist.m3u8
#EXTINF:-1 tvg-id="PancTV.ar",Panc TV (720p) [Not 24/7]
https://panel.host-live.com:19360/20004/20004.m3u8
#EXTINF:-1 tvg-id="PlayTelevision.ar",Play Television (720p)
https://vivo.solumedia.com:19360/playtv/playtv.m3u8
#EXTINF:-1 tvg-id="PowerMaxRadioTV.ar",Power Max Radio TV (720p)
https://videostream.shockmedia.com.ar:19360/radio1045/radio1045.m3u8
#EXTINF:-1 tvg-id="PowerHD.ar",Power TV (720p) [Not 24/7]
https://wowza.telpin.com.ar:1935/live-powerTV/power.stream/playlist.m3u8
#EXTINF:-1 tvg-id="QuatroTV.ar",Quatro TV (540p)
https://stream.arcast.live/quatro/quatro/playlist.m3u8
#EXTINF:-1 tvg-id="RadioRealpolitik.ar",Radio Realpolitik (720p)
@ -271,58 +139,20 @@ https://media.neuquen.gov.ar/rtn/television/media.m3u8
https://iptv.ixfo.com.ar:30443/live/sanpedrotv/playlist.m3u8
#EXTINF:-1 tvg-id="SicardiTV.ar",Sicardi TV (720p)
https://vivo.solumedia.com:19360/sicarditv/sicarditv.m3u8
#EXTINF:-1 tvg-id="SoliveTV.ar",Solive TV (720p)
https://stmv1.cnarlatam.com/solivetv/solivetv/playlist.m3u8
#EXTINF:-1 tvg-id="SomosLaPampa.ar",Somos La Pampa (1080p)
https://stream.arcast.com.ar/somosnoticias/somosnoticias/playlist.m3u8
#EXTINF:-1 tvg-id="SuperClassicsTV.ar",Super Classics TV (360p)
https://stmv1.cnarlatam.com/megaclassics/megaclassics/playlist.m3u8
#EXTINF:-1 tvg-id="SuperKaosTV.ar",Super Kaos TV (360p)
https://stmv1.cnarlatam.com/novakidstv/novakidstv/playlist.m3u8
#EXTINF:-1 tvg-id="TeloCuentoyQue.ar",Te Lo Cuento y Que...!!! (360p)
https://stmv1.cnarlatam.com/telocuento/telocuento/playlist.m3u8
#EXTINF:-1 tvg-id="TechScience365.ar",TechScience 365 (360p)
https://stmv1.cnarlatam.com/techscience365/techscience365/playlist.m3u8
#EXTINF:-1 tvg-id="Telecinco.ar",TeleCinco Trelew (240p)
https://videohd.live:19360/8016/8016.m3u8
#EXTINF:-1 tvg-id="TelecondorSatelital.ar",Telecóndor Satelital (360p)
https://videostream.shockmedia.com.ar:19360/canal4telecondor/canal4telecondor.m3u8
#EXTINF:-1 tvg-id="Telecreativa.ar",Telecreativa (720p)
https://panel.dattalive.com/8012/8012/playlist.m3u8
#EXTINF:-1 tvg-id="TelediarioTV.ar",Telediario TV (404p)
https://stmvideo2.livecastv.com/telediario/telediario/playlist.m3u8
#EXTINF:-1 tvg-id="Telefe.ar",Telefe (720p) [Geo-blocked]
https://telefe.com/Api/Videos/GetSourceUrl/694564/0/HLS?.m3u8=
#EXTINF:-1 tvg-id="TelefeInternacional.ar",Telefe Internacional (720p) [Not 24/7]
https://siloh-mcdn.plutotv.net/lilo/production/TelefePluto/master.m3u8
#EXTINF:-1 tvg-id="TelefeNoticias.us",Telefe Noticias (720p) [Not 24/7]
https://siloh-mcdn.plutotv.net/lilo/production/LATAM/Telefe/master.m3u8
#EXTINF:-1 tvg-id="Telemax.ar",Telemax (720p)
http://live-edge01.telecentro.net.ar/live/smil:tlx.smil/master.m3u8
#EXTINF:-1 tvg-id="TeleMix.ar",TeleMix (360p)
https://panel.dattalive.com/8068/8068/playlist.m3u8
#EXTINF:-1 tvg-id="Telenord.ar",Telenord (720p) [Not 24/7]
https://617c5175c970b.streamlock.net:4444/previsoratv/live/playlist.m3u8
#EXTINF:-1 tvg-id="Telenord.ar",Telenord Corrientes (1080p) [Not 24/7]
http://www.coninfo.net:1935/previsoratv/live/playlist.m3u8
#EXTINF:-1 tvg-id="TelpinTVCanal2HD.ar",Telpin Canal 2 (720p) [Not 24/7]
https://wowza.telpin.com.ar:1935/telpintv/smil:ttv.stream.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TelpinTVCanal2HD.ar",Telpin TV (1080p) [Not 24/7]
https://wowza.telpin.com.ar:1935/telpintv/ttv.stream/playlist.m3u8
#EXTINF:-1 tvg-id="TierraMiaTV.ar",Tierra Mía TV (720p)
http://live-edge01.telecentro.net.ar/live/smil:trm.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TN.ar",TN Todo Noticias (1080p)
https://live-01-01-tn.vodgc.net/TN24/index.m3u8
#EXTINF:-1 tvg-id="TVManaArgentina.ar",TV Maná Argentina (576p) [Not 24/7]
https://w2.manasat.com/tvmana-ar/smil:tvmana-ar.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVSolidaria.ar",TV Solidaria (576p)
https://canadaremar2.todostreaming.es/live/argentina-web.m3u8
#EXTINF:-1 tvg-id="TVMAXCBA.ar",TVMAXCBA (720p)
https://panel.dattalive.com/8976/8976/playlist.m3u8
#EXTINF:-1 tvg-id="Uniteve.ar",Uniteve (720p) [Not 24/7]
https://vivo.solumedia.com:19360/uniteve/uniteve.m3u8
#EXTINF:-1 tvg-id="VariedTV.ar",VariedTV (480p) [Not 24/7]
https://cloud5.streaminglivehd.com:3874/live/latinokidsslive.m3u8
#EXTINF:-1 tvg-id="VTV.ar",VerTV (VTV) (720p) [Not 24/7]
https://5f700d5b2c46f.streamlock.net/vertv/vertv/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaAccion.ar" http-referrer="https://xtrematv.com/?p=1434",Xtrema Accion
@ -331,46 +161,26 @@ https://stmv6.voxtvhd.com.br/cineaccion/cineaccion/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaAnimal.ar" http-referrer="https://xtrematv.com/?p=1504",Xtrema Animal
#EXTVLCOPT:http-referrer=https://xtrematv.com/?p=1504
https://stmv6.voxtvhd.com.br/xtremaanimal/xtremaanimal/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaAnime.ar",Xtrema Anime (360p)
https://stmv1.cnarlatam.com/xtremaanime/xtremaanime/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaCartoons.ar",Xtrema Cartoons (360p)
https://stmv1.cnarlatam.com/cineinfantil/cineinfantil/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaCartoons.ar" http-referrer="https://xtrematv.com/?p=1390",Xtrema Cartoons
#EXTVLCOPT:http-referrer=https://xtrematv.com/?p=1390
https://stmv6.voxtvhd.com.br/xtremacartoons/xtremacartoons/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaAccion.ar",Xtrema Cine Acción (268p)
https://stmv1.cnarlatam.com/cineaccion/cineaccion/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaAsia.ar",Xtrema Cine Asia (268p)
https://stmv1.cnarlatam.com/cineasia/cineasia/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaCineClasico.ar" http-referrer="https://xtrematv.com/?p=1460",Xtrema Cine Clasico
#EXTVLCOPT:http-referrer=https://xtrematv.com/?p=1460
https://stmv6.voxtvhd.com.br/cineclasico/cineclasico/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaComedy.ar",Xtrema Cine Comedy (344p)
https://stmv1.cnarlatam.com/cinecomedia/cinecomedia/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaDrama.ar",Xtrema Cine Drama (360p)
https://stmv1.cnarlatam.com/cinedrama/cinedrama/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaEuropa.ar",Xtrema Cine Europa (360p)
https://stmv1.cnarlatam.com/cineuropa/cineuropa/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaFamily.ar",Xtrema Cine Family (274p)
https://stmv1.cnarlatam.com/cinefamiliy/cinefamiliy/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaHindi.ar",Xtrema Cine Hindi (272p)
https://stmv1.cnarlatam.com/cinehindi/cinehindi/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaLatina.ar",Xtrema Cine Latino (360p)
https://stmv1.cnarlatam.com/cinelatino/cinelatino/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaSuspenso.ar",Xtrema Cine Suspenso (360p)
https://stmv1.cnarlatam.com/cinesuspenso/cinesuspenso/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaRetroCartoons.ar",Xtrema Retro Cartoons (360p)
https://stmv1.cnarlatam.com/retroinfantil/retroinfantil/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaRetroSeries.ar",Xtrema Retro Series (360p)
https://stmv1.cnarlatam.com/xtremaretroseries/xtremaretroseries/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaSeries.ar",Xtrema Series (360p)
https://stmv1.cnarlatam.com/xtremaseries/xtremaseries/playlist.m3u8
#EXTINF:-1 tvg-id="XtremaTerror.ar" http-referrer="https://xtrematv.com/?p=1456",Xtrema Terror
#EXTVLCOPT:http-referrer=https://xtrematv.com/?p=1456
https://stmv6.voxtvhd.com.br/cineterror/cineterror/playlist.m3u8
#EXTINF:-1 tvg-id="RetroMagico.ar",Retro Magico (720p)
https://stream.gia.tv/giatv/giatv-retromagico/retromagico/playlist.m3u8
#EXTINF:-1 tvg-id="XLevelMedia.ar",X Level Media (1080p)
https://tuvideoonline.com.ar:3332/live/xlevelmedialive.m3u8
#EXTINF:-1 tvg-id="RadioConexionWebTV.ar",Radio Conexion Web TV (720p)
https://tuvideoonline.com.ar:3391/live/radioconexionlive.m3u8
#EXTINF:-1 tvg-id="TVUniversidad.ar@SD",TV Universidad
https://stratus.stream.cespi.unlp.edu.ar/hls/tvunlp.m3u8
#EXTINF:-1 tvg-id="UnifeTV.ar",Unife TV
https://cdn.mycloudstream.io/hls/live/broadcast/xundwjvp/index.m3u8
#EXTINF:-1 tvg-id="ElTrece.ar",El Trece
http://190.123.90.146:8000/play/a00n/index.m3u8
#EXTINF:-1 tvg-id="UnifeTV.ar@SD",Unife TV
https://5dcabf026b188.streamlock.net/StreamUnife/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="QuanticaTV.ar",Quantica TV
https://videostream.shockmedia.com.ar:19360/quanticatv/quanticatv.m3u8

View File

@ -11,8 +11,6 @@ http://stream.fs1.tv:8080/hls/webstream.m3u8
https://stream.fs1.tv/hls/webstream.m3u8
#EXTINF:-1 tvg-id="FUELTV.at",FUEL TV (1080p)
https://amg01074-fueltv-fueltvemeaen-rakuten-b6j62.amagi.tv/hls/amagi_hls_data_rakutenAA-fueltvemeaen/CDN/master.m3u8
#EXTINF:-1 tvg-id="GoTV.at",GoTV (576p) [Not 24/7]
https://nstream17.gotv.at:1443/live/gotvlive/manifest.mpd
#EXTINF:-1 tvg-id="HitradioO3.at",Hitradio Ö3 (720p) [Not 24/7]
https://studiocam-oe3.mdn.ors.at/out/u/studiocam_oe3/q6a/manifest_1.m3u8
#EXTINF:-1 tvg-id="K19.at",K19
@ -72,3 +70,17 @@ https://ms01.w24.at/W24/smil:liveevent.smil/playlist.m3u8
https://60efd7a2b4d02.streamlock.net/a_steiermark/ngrp:livestream_all/playlist.m3u8
#EXTINF:-1 tvg-id="AntenneKaernten.at",Antenne Kaernten (720p)
https://60efd7a2b4d02.streamlock.net/a_kaernten/ngrp:livestream_all/playlist.m3u8
#EXTINF:-1 tvg-id="StimmungsgartenTV.at@SD",Stimmungsgarten TV
https://live20.bozztv.com/akamaissh101/ssh101/stimmungsgarten/playlist.m3u8
#EXTINF:-1 tvg-id="ATV2.at@HD",ATV2 HD
https://cachehsi1a.netplus.ch/live/eds/atv/browser-dash/atv.mpd
#EXTINF:-1 tvg-id="ORFKids.at@SD",ORF Kids (720p)
https://web12.mdn.ors.at/orf/web12/qxa/manifest.mpd
#EXTINF:-1 tvg-id="ORFIII.at@HD",ORF III HD (720p)
https://orf3.mdn.ors.at/orf/orf3/qxa/manifest.m3u8
#EXTINF:-1 tvg-id="ORF2Tirol.at@HD",ORF 2 Tirol HD (720p)
https://cachehsi1a.netplus.ch/live/eds/orf2/browser-dash/orf2.mpd
#EXTINF:-1 tvg-id="ORF1.at@HD",ORF 1 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/orf1/browser-dash/orf1.mpd
#EXTINF:-1 tvg-id="ORF2.at@HD",ORF 2 (720p)
https://orf2-247.mdn.ors.at/orf/orf2/qxa-247/manifest.m3u8

View File

@ -13,13 +13,13 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/655ca57e4261ca00080b3a04/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1c7950-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=3058913d-2c94-48ef-9802-0dd55d2f6591
#EXTINF:-1 tvg-id="",Assassination Classroom
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65a7d99f4a10d800086083a9/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1c7951-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=21a7b417-879a-4f02-8497-8a823880cbe4
#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us@SD",Auction Hunters
#EXTINF:-1 tvg-id="AuctionHunters.us@SD",Auction Hunters
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5ede45d077746000072be0fe/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1c7952-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=419716ea-defd-40f9-9cfe-81ca78138875
#EXTINF:-1 tvg-id="",Auf Achse
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/61fbf91afb1b10000880dd08/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1c7953-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=579b45d5-6dd7-46c5-bf99-ff4de12ce423
#EXTINF:-1 tvg-id="AutoMotorogSportTV.no@SD",Auto Motor Sport
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5f760c3d41aa2d0007bfde19/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1c7954-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=419fb478-b5bb-4f2f-b6f0-d53563fbc250
#EXTINF:-1 tvg-id="PlutoTVAvatar.us@SD",Avatar
#EXTINF:-1 tvg-id="Avatar.us@SD",Avatar
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/600adbdf8c554e00072125c9/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1ca060-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=c480aed6-08b6-4f7d-9964-40220005ecb8
#EXTINF:-1 tvg-id="",Avatar OV
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65819d3514fbe4000880ef26/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1ca061-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ea746a7f-2da6-4da9-a6b9-0e2e862c7e09
@ -139,7 +139,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/64
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/654a2bfeab05240008a12881/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1dd8e5-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5428c2f0-95ae-4119-99a3-e0051405de6c
#EXTINF:-1 tvg-id="",Germany Shore
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6447dea7e94c380008dba94c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1dd8e6-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5f9f4951-a4da-4d64-b310-30e3d35efdca
#EXTINF:-1 tvg-id="GoldstarTVGermany.us@Austria",Goldstar TV
#EXTINF:-1 tvg-id="GoldstarTV.de@Austria",Goldstar TV
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6192396135f3910007fc5fc7/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1dfff0-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=95d4ef6d-a51e-4ee2-b6d2-bff9e219717f
#EXTINF:-1 tvg-id="",Hausmeister Krause
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/622f6faf65be650007f57aab/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1dfff1-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=b60059bd-5a20-4ba8-a7e8-cc258991073c
@ -217,8 +217,6 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1f1166-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=13c43849-7db8-4ef1-bfef-74e513441e1a
#EXTINF:-1 tvg-id="NickSpace.us@Austria",Nick Space
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/619b82cc70a9ba00074429e2/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1f3870-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=049a72e8-4188-4f01-bc67-f697b36df6c5
#EXTINF:-1 tvg-id="NickelodeonUkrainePlutoTV.ua@SD",Nick Ukraine
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/622882350f6aad0008c76e77/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1f3871-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=27a14e4a-a17d-41ca-bcdb-02eba6ccff9a
#EXTINF:-1 tvg-id="",Nurse Jackie
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65a67c7a07e03a00088de834/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b1f3872-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=c6b94fdc-baed-40a3-bf48-79f151084f30
#EXTINF:-1 tvg-id="PacificBlue.us@Austria",Pacific Blue
@ -307,7 +305,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5d
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5cd149f021cb6c55e258bbe8/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b2022d5-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=8eb7e943-84dc-455f-837c-5a289cb58234
#EXTINF:-1 tvg-id="PlutoTVSpace.us@Austria",Pluto TV Space
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/61409f8d6feb30000766b675/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b2022d6-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=23eefcec-8774-42a3-8e77-66e6e59575a3
#EXTINF:-1 tvg-id="PlutoTVStarTrek.us@Austria",Pluto TV Star Trek
#EXTINF:-1 tvg-id="StarTrek.us@Austria",Pluto TV Star Trek
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6152ee71bf99590007893a11/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b2049e0-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=a5c84cd3-495f-49d7-8e48-a79af0d219fc
#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us@Austria",Pluto TV True Crime
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/615333098185f00008715a56/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=1b2049e1-4b81-11ef-a8ac-e146e4e7be02&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=03c264ad-dc34-4e0b-b96f-6cfb4c0f6b37

View File

@ -91,3 +91,5 @@ https://tvsnhlslivetest.akamaized.net/hls/live/2034711/TVSN-MSL4/master.m3u8
https://live-tvsn.simplestreamcdn.com/live12/tvsnbeauty/bitrate1.isml/.m3u8
#EXTINF:-1 tvg-id="TVSNJewellery.au",TVSN Jewellery (1080p)
https://live-tvsn.simplestreamcdn.com/live13/tvsnjewellery/bitrate1.isml/.m3u8
#EXTINF:-1 tvg-id="ABCNews.au",ABC News
https://c.mjh.nz/abc-news.m3u8

View File

@ -3,12 +3,8 @@
https://hncfree-samsungau.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p)
https://insighttv-samsungau.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p)
https://introuble-samsungau.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InWild.it@SD",InWild (720p)
https://inwild-samsungau.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p)
https://inwonder-samsungau.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Rialto.nz",Rialto (1080p)
https://rialto-rialto-samsungaustralia.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RyanandFriends.us",Ryan and Friends (1080p)

View File

@ -25,8 +25,6 @@ https://raw.githubusercontent.com/UzunMuhalefet/streams/refs/heads/main/myvideo-
http://85.132.53.162:1935/live/eltv/playlist.m3u8
#EXTINF:-1 tvg-id="",Ictimai TV
https://node19.connect.az:9081/tv/live/playlist.m3u8
#EXTINF:-1 tvg-id="IdmanTV.az",Idman TV
https://str.yodacdn.net/idman/index.m3u8
#EXTINF:-1 tvg-id="",Kanal S TV
https://raw.githubusercontent.com/UzunMuhalefet/streams/refs/heads/main/myvideo-az/kanal-s.m3u8
#EXTINF:-1 tvg-id="",MCJ TV
@ -43,3 +41,5 @@ https://raw.githubusercontent.com/UzunMuhalefet/streams/refs/heads/main/myvideo-
https://raw.githubusercontent.com/UzunMuhalefet/streams/refs/heads/main/myvideo-az/vip.m3u8
#EXTINF:-1 tvg-id="XezerTV.az",Xezer TV
https://raw.githubusercontent.com/UzunMuhalefet/streams/main/myvideo-az/xezer-tv.m3u8
#EXTINF:-1 tvg-id="APATv.az@SD",APA Tv
http://rtmp.apa.tv/@pagroup!23.m3u8

View File

@ -35,3 +35,12 @@ https://live.tv-m.net/hls/stream.m3u8
https://restreamer1.tnt.ba/hls/tntkids.m3u8
#EXTINF:-1 tvg-id="TVSlonExtra.ba",TV Slon Extra (1080p) [Not 24/7]
http://31.47.0.130:8082
#EXTINF:-1 tvg-id="AlJazeeraBalkans.ba",Al Jazeera Balkans (1080p)
https://live-hls-web-ajb-fa.thehlive.com/AJB/index.m3u8
#EXTINF:-1 tvg-id="BHT1.ba" http-user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.10 Safari/605.1.1",BHT 1 (720p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.10 Safari/605.1.1
https://webtvstream.bhtelecom.ba/hls13/bhrtportal_hd_1200.m3u8
#EXTINF:-1 tvg-id="ArenaSport1.ba@SD",Arena Sport 1 (720p)
http://91.132.74.5:8000/play/a00k
#EXTINF:-1 tvg-id="NovaTV.ba@SD",Nova TV (1080p)
http://91.132.74.5:8000/play/a005

View File

@ -21,3 +21,5 @@ http://probashi.alvegroups.com:8081/probashitv/probashi/playlist.m3u8
https://www.btvlive.gov.bd/streams/ef8b8bbc-98b7-4ba7-a49d-a0adaf259d35/ES/9ee3b4f9-fd0a-47c5-a135-2575c5691613/9ee3b4f9-fd0a-47c5-a135-2575c5691613_3_playlist.m3u8
#EXTINF:-1 tvg-id="VoktaTV.bd",Vokta TV (720p)
https://vokta.raytahost.com/live/voktatv/index.m3u8
#EXTINF:-1 tvg-id="BoishakhiTV.bd@SD",Boishakhi TV
https://boishakhi.sonarbanglatv.com/boishakhi/boishakhitv/index.m3u8

View File

@ -65,3 +65,5 @@ https://live-radio-cf-vrt.akamaized.net/groupb/live/0f394a26-c87d-475e-8590-e9c6
https://dpp-live-events.medialaancdn.be/events/hls/aes/webstream1.m3u8
#EXTINF:-1 tvg-id="VTM2.be",VTM 2 (720p)
https://dpp-live-events.medialaancdn.be/events/hls/aes/webstream3.m3u8
#EXTINF:-1 tvg-id="SterkTV.be@SD",Sterk TV
https://trn09.bozztv.com/gin-sterk/index.m3u8

3
streams/bm.m3u Normal file
View File

@ -0,0 +1,3 @@
#EXTM3U
#EXTINF:-1 tvg-id="Channel82.bm@SD",Channel 82
https://service.webvideocore.net/CL1olYogIrDWvwqiIKK7eBmnWbRkKKsu3nqabm9GlX02JOj3CDNXzodJMDEN2dk3/a_bq9clxfbupwg.m3u8

View File

@ -1,10 +1,6 @@
#EXTM3U
#EXTINF:-1 tvg-id="ANTv.bo",ANTv (720p) [Not 24/7]
http://181.188.144.141/tmp_hls/ant_tv/index.m3u8
#EXTINF:-1 tvg-id="ATBLaPaz.bo",ATB La Paz (614p) [Not 24/7]
http://186.121.206.197/live/daniel/index.m3u8
#EXTINF:-1 tvg-id="ATBSantaCruz.bo",ATB Santa Cruz (720p) [Not 24/7]
https://cdn.digital.com.bo/__cl/cg:sworigin2/__c/ATB/__op/hls-default/__f/index.m3u8
#EXTINF:-1 tvg-id="BoliviaTV.bo",Bolivia TV (720p) [Not 24/7]
http://boliviatv1.srfms.com:5735/live/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="BoliviaTV72.bo",Bolivia TV 7.2 (720p)
@ -15,48 +11,18 @@ https://video1.getstreamhosting.com:1936/8224/8224/playlist.m3u8
https://alba-bo-bolivision-bolivision.stream.mediatiquestream.com/index.m3u8
#EXTINF:-1 tvg-id="CadenaA.bo",Cadena A (720p) [Not 24/7]
https://5fe2654d6127d.streamlock.net/cadenaa/videocadenaa/playlist.m3u8
#EXTINF:-1 tvg-id="Canal29TVA.bo",Canal 29 TVA (720p)
https://vdo.grupolimalive.com:3967/live/tvelive.m3u8
#EXTINF:-1 tvg-id="Canal50RTVE.bo",Canal 50 RTVE Punata (720p) [Not 24/7]
https://vdo.grupolimalive.com:3241/live/encuentrotvlive.m3u8
#EXTINF:-1 tvg-id="Ceacom.bo",Ceacom [Not 24/7]
https://eu1.servers10.com:8081/ceacom/index.m3u8
#EXTINF:-1 tvg-id="CoralTV.bo",Coral TV (480p)
https://tv.mediacp.eu:8081/coraltv/index.m3u8
#EXTINF:-1 tvg-id="TelevisionCristal.bo",Cristal TV (720p) [Not 24/7]
https://srv5.elittehosting.com:3369/live/cristaltvlive.m3u8
#EXTINF:-1 tvg-id="DeltaTV.bo",Delta TV (480p) [Not 24/7]
https://vsrv1.az-streamingserver.com:3068/live/vdsocmnulive.m3u8
#EXTINF:-1 tvg-id="F10HD.bo",F10 HD (720p) [Not 24/7]
https://video.live.com.bo:3099/live/f10hdlive.m3u8
#EXTINF:-1 tvg-id="FAPTV.bo",FAP TV (480p)
https://nd106.republicaservers.com/hls/c7284/index.m3u8
#EXTINF:-1 tvg-id="FTV.bo",FTV (720p)
https://master.tucableip.com/ftv/index.m3u8
#EXTINF:-1 tvg-id="ImperialTV.bo",Imperial TV (720p) [Not 24/7]
https://vdo.grupolimalive.com:3162/live/imperialtvlive.m3u8
#EXTINF:-1 tvg-id="MarvisionTV.bo",Marvisión TV (720p)
https://vdo.grupolimalive.com:3631/live/marvisionlive.m3u8
#EXTINF:-1 tvg-id="Megavision.bo",Megavisión (720p)
https://video.live.com.bo:3699/live/megavisionlive.m3u8
#EXTINF:-1 tvg-id="NeoTV.bo",Neo TV (720p)
https://tv1.mediacp.eu:3661/live/rlbpwxvhlive.m3u8
#EXTINF:-1 tvg-id="PATLaPaz.bo",PAT La Paz (720p) [Not 24/7]
https://w8.redpat.tv:7777/play/120/index.m3u8
#EXTINF:-1 tvg-id="PATSantaCruz.bo",PAT Santa Cruz (720p) [Not 24/7]
https://w8.redpat.tv:7777/play/110/index.m3u8
#EXTINF:-1 tvg-id="RedADvenirTV.bo",Red ADvenir TV (360p) [Not 24/7]
http://streamer1.streamhost.org:1935/salive/GMIredadvenirm/playlist.m3u8
#EXTINF:-1 tvg-id="RedCCTV.bo",Red CCTV (480p)
https://solo.disfrutaenlared.com:1936/redcctv/redcctv/playlist.m3u8
#EXTINF:-1 tvg-id="RedUno.bo",Red Uno (1080p) [Not 24/7]
https://streamer03.digital.com.bo/session/4e839498-b325-47f7-987f-205b4831346f/2ap337/__cl/cg:sworigin2/__c/REDUNO/__op/hls-default/__f/index.m3u8
#EXTINF:-1 tvg-id="RTP.bo",RTP (720p) [Not 24/7]
http://136.243.3.70:1935/RtpBolivia/RtpBolivia/playlist.m3u8
#EXTINF:-1 tvg-id="TDTMultimedia.bo",TDT Multimedia (720p)
https://video01.kshost.com.br:4443/juan6318/juan6318/playlist.m3u8
#EXTINF:-1 tvg-id="UnitelSantaCruz.bo",Unitel Santa Cruz (1080p) [Not 24/7]
https://cdn.digital.com.bo/__cl/cg:sworigin2/__c/UNITEL/__op/hls-default/__f/index.m3u8
#EXTINF:-1 tvg-id="UnivalleTelevision.bo",Univalle Televisión (1080p)
https://master.tucableip.com/univalletv/playlist.m3u8
#EXTINF:-1 tvg-id="UniversidadMayordeSanAndres.bo" http-referrer="https://tvu.umsa.bo/en-vivo",UniversidadMayordeSanAndres (1080p) [Not 24/7]
@ -77,3 +43,33 @@ https://ssh101stream.ssh101.com/akamaissh101/ssh101/zoytvsports/playlist.m3u8
https://ssh101stream.ssh101.com/akamaissh101/ssh101/zoytvturcas/playlist.m3u8
#EXTINF:-1 tvg-id="ZoyTVPlus.bo",ZoyTV Plus (720p)
https://ssh101stream.ssh101.com/akamaissh101/ssh101/zoytv/playlist.m3u8
#EXTINF:-1 tvg-id="TELE6.bo",TELE 6
https://envivo.bolivia-link.com:3337/live/tele6live.m3u8
#EXTINF:-1 tvg-id="PalenqueTV.bo",Palenque TV
https://tv.bitstreaming.net:3234/live/palenquetvlive.m3u8
#EXTINF:-1 tvg-id="ZuracaTV.bo",Zuraca TV
https://envivo.bolivia-link.com:3099/live/ztvlive.m3u8
#EXTINF:-1 tvg-id="CTV.bo",CTV
https://live.ctvbolivia.com/hls/ctv.m3u8
#EXTINF:-1 tvg-id="F10HD.bo",F10 HD [Geo-blocked]
https://tv2.bitstreaming.net:3235/multi_live/play.m3u8
#EXTINF:-1 tvg-id="RTP.bo",RTP
https://rtp.noxun.net/hls/stream.m3u8
#EXTINF:-1 tvg-id="TurbionDigitalTV.bo@SD",Turbion Digital TV
https://live20.bozztv.com/akamaissh101/ssh101/turbion/playlist.m3u8
#EXTINF:-1 tvg-id="INTV.bo@SD",IN TV
https://envivo.bolivia-link.com:3580/live/intvlive.m3u8
#EXTINF:-1 tvg-id="ImperialTV.bo@SD",Imperial TV
https://play.agenciastreaming.com:19360/8122/8122.m3u8
#EXTINF:-1 tvg-id="ATBLaPaz.bo@SD",ATB La Paz
https://stream.atb.com.bo/live/daniel/index.m3u8
#EXTINF:-1 tvg-id="Gigavision.bo@SD",Gigavision
https://tv2.bitstreaming.net:3896/multi_web/play.m3u8
#EXTINF:-1 tvg-id="Canal29TVA.bo@SD",Canal 29 TVA
https://play.agenciastreaming.com:19360/8160/8160.m3u8
#EXTINF:-1 tvg-id="FAPTV.bo@SD",FAP TV
https://envivo.bolivia-link.com:3234/live/faptvlive.m3u8
#EXTINF:-1 tvg-id="PATLaPaz.bo",PAT La Paz
https://www.redpat.tv/proxylpz/index.m3u8
#EXTINF:-1 tvg-id="AbyaYalaTV.bo@SD",Abya Yala TV
https://seo.tv.bo/tv/LIpSEO-TV-8.m3u8

View File

@ -359,3 +359,38 @@ https://5cf4a2c2512a2.streamlock.net/tvmax/tvmax/playlist.m3u8
https://tvbrasil-stream.ebc.com.br/index.m3u8
#EXTINF:-1 tvg-id="RedeTV.br",Rede TV! (720p)
https://cdn.jmvstream.com/w/AVJ-15235/playlist/playlist.m3u8
#EXTINF:-1 tvg-id="RBATV.br",RBATV (720p)
https://cdn.live.br1.jmvstream.com/w/LVW-15748/LVW15748_Yed7yzLuRC/playlist.m3u8
#EXTINF:-1 tvg-id="TVParaense.br",TV Paraense (720p)
https://video09.logicahost.com.br/tvparaense/tvparaense/playlist.m3u
#EXTINF:-1 tvg-id="AWTV.br",AWTV (1080p)
https://acesso.ecast.site:3070/live/awtvlive.m3u8
#EXTINF:-1 tvg-id="UMATV.br",UMA TV (1080p)
https://acesso.ecast.site:3011/live/umatvlive.m3u8
#EXTINF:-1 tvg-id="TVCultura.br",TV Cultura
https://cdn-1.nxplay.com.br/TV_CULTURA/index.m3u8
#EXTINF:-1 tvg-id="SantaCeciliaTV.br",Santa Cecilia TV (1080p)
https://5fb29de4928ea.streamlock.net/2063/2063/playlist.m3u8
#EXTINF:-1 tvg-id="RITTV.br",RIT TV (1080p)
https://acesso.ecast.site:3648/live/ritlive.m3u8
#EXTINF:-1 tvg-id="TVCRio.br@SD",TVC-Rio
https://video05.logicahost.com.br/comunitariario/comunitariario/playlist.m3u8
#EXTINF:-1 tvg-id="KpopTVPlay.br@SD",KpopTV Play (576p)
https://giatv.bozztv.com/giatv/giatv-kpoptvplay/kpoptvplay/playlist.m3u8
#EXTINF:-1 tvg-id="TVLifeAmerica.br",TV Life America (720p)
https://streaming.cloudecast.com/hls/tvlifeamerica/index.m3u8
#EXTINF:-1 tvg-id="TVCidadeOeste.br@SD",TV Cidade Oeste
https://radios.dataprimer.com.br:5443/LiveApp/streams/psuqNyPC1AW1BcUZ1573443847601.m3u8
#EXTINF:-1 tvg-id="TVCidadeVerdeCuiaba.br@SD" http-referrer="https://www.tvcidadeverde.com.br",TV Cidade Verde Cuiaba
#EXTVLCOPT:http-referrer=https://www.tvcidadeverde.com.br
https://televisaocidadeverde.brasilstream.com.br/hls/televisaocidadeverde/index.m3u8
#EXTINF:-1 tvg-id="BDCTV.br",BDC TV (576p)
https://srv1.zcast.com.br/bdctv/bdctv/playlist.m3u8
#EXTINF:-1 tvg-id="TVEncontrodasAguas.br@SD",TV Encontro das Aguas
https://stmv7.samcast.com.br/sistemaencontrodasaguas/sistemaencontrodasaguas/playlist.m3u8
#EXTINF:-1 tvg-id="AWTV.br",AWTV (1080p)
https://streaming.cloudecast.com/hls/awtv/index.m3u8
#EXTINF:-1 tvg-id="SuperflixTV.br",Superflix TV (720p)
https://streaming.cloudecast.com/hls/superflix/index.m3u8
#EXTINF:-1 tvg-id="TVModelo.br@SD",TV Modelo (720p)
https://video09.logicahost.com.br/tvmodelo/tvmodelo/playlist.m3u

View File

@ -1,5 +1,5 @@
#EXTM3U
#EXTINF:-1 tvg-id="PlutoTVAsPistasdeBlue.us",Pluto TV As Pistas de Blue (720p)
#EXTINF:-1 tvg-id="AsPistasdeBlue.us",Pluto TV As Pistas de Blue (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f99aad4e82db50007fac4b2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCineDrama.us@Brazil",Pluto TV Cine Drama (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1210d14ae1f80007bafb1d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
@ -19,7 +19,7 @@ https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1213ba0
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5ddd7cb2cbb9010009b4fe32/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId=
#EXTINF:-1 tvg-id="",Pluto TV Nick Jr. Club (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f121460b73ac6000719fbaf/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVPortadosFundos.us",Pluto TV Porta dos Fundos (720p)
#EXTINF:-1 tvg-id="PortadosFundos.us",Pluto TV Porta dos Fundos (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f36f2346ede750007332d11/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVRetro.us@Brazil",Pluto TV Retrô (684p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1212ad1728050007a523b8/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS

View File

@ -3,3 +3,7 @@
https://cdn-edge1.streamcomedia.com/abr_tngr969fm/abr-tngr969fm_streams/playlist.m3u8
#EXTINF:-1 tvg-id="TheParliamentaryChannel.bs",The Parliamentary Channel (720p) [Not 24/7]
https://zns-edge1.streamcomedia.cloud/abr_parliamentarychannel/abr-parliament_streams/playlist.m3u8
#EXTINF:-1 tvg-id="IslandLuckTV.bs@SD",Island Luck TV
https://cdn3.wowza.com/5/dFA0TmRpeFdNVXhT/NetUp/ILTV.stream/playlist.m3u8
#EXTINF:-1 tvg-id="ZNSTV.bs@SD",ZNS-TV
https://zns-edge1.streamcomedia.cloud/znstv13/zns1080p_stream/playlist.m3u8

View File

@ -1,6 +1,4 @@
#EXTM3U
#EXTINF:-1 tvg-id="Channel8Belarus.by",8 канал (Витебск) (576p) [Not 24/7]
http://95.46.208.8:24433/art
#EXTINF:-1 tvg-id="Belarus1.by",Беларусь 1 (1080p)
https://edge60.dc.beltelecom.by/ngtrk/smil:belarus1.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Belarus1.by",Беларусь 1 (1080p)
@ -25,12 +23,6 @@ https://ngtrk.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8
http://serv30.vintera.tv:8081/belarus24/belarus24/playlist.m3u8
#EXTINF:-1 tvg-id="Belarus24.by",Беларусь 24 (720p)
https://edge53.dc.beltelecom.by/ngtrk/smil:belarus24.smil/playlist.m3u8
#EXTINF:-1 tvg-id="BelMuzTV.by",БелМузТВ
http://178.124.179.122:8088/BelMuzTV/index.m3u8
#EXTINF:-1 tvg-id="NasheTV.by",Наше ТВ (Витебск) (576p)
http://95.46.208.8:26259/nashe
#EXTINF:-1 tvg-id="NTVBelarus.by",НТВ-Беларусь
http://82.209.197.187:8080/udp/239.0.100.6:1234
#EXTINF:-1 tvg-id="ONT.by",ОНТ (576p) [Not 24/7]
https://stream.dc.beltelecom.by/ont/ont/playlist.m3u8
#EXTINF:-1 tvg-id="PerviyInformationniy.by",Первый информационный (1080p)
@ -47,7 +39,5 @@ http://rtmp.one.by:1200
http://rtmp.one.by:2200
#EXTINF:-1 tvg-id="FirstMusicChannelRussia.by",Первый Музыкальный Канал Россия HD (1080p)
http://rtmp.one.by:2300
#EXTINF:-1 tvg-id="",Плюс ТВ
http://178.124.179.122:8088/PlusTV/index.m3u8
#EXTINF:-1 tvg-id="STV.by",СТБ (720p)
https://ctv.dc.beltelecom.by/ctv/ctv.stream/playlist.m3u8

View File

@ -1,19 +1 @@
#EXTM3U
#EXTINF:-1 tvg-id="AXNLatinAmerica.us@CentralAmerica",AXN
https://streamer1.nexgen.bz/AXN/index.m3u8
#EXTINF:-1 tvg-id="BETLatinAmerica.us@SD",BET
https://streamer1.nexgen.bz/BET/index.m3u8
#EXTINF:-1 tvg-id="Bravo.us@East",Bravo
https://streamer1.nexgen.bz/BRAVO/index.m3u8
#EXTINF:-1 tvg-id="FXLatinAmerica.us@Panregional",FX
https://streamer1.nexgen.bz/FX/index.m3u8
#EXTINF:-1 tvg-id="HistoryLatinAmerica.us@Panregional",History
https://streamer1.nexgen.bz/HISTORY/index.m3u8
#EXTINF:-1 tvg-id="LifetimeLatinAmerica.us@Panregional",Lifetime
https://streamer1.nexgen.bz/LIFETIME/index.m3u8
#EXTINF:-1 tvg-id="MTVLatinAmerica.us@Panregional",MTV
https://streamer1.nexgen.bz/MTV/index.m3u8
#EXTINF:-1 tvg-id="StarChannelLatinAmerica.us@CentralAmerica",Star Channel Central America
https://streamer1.nexgen.bz/STAR/index.m3u8
#EXTINF:-1 tvg-id="VH1LatinAmerica.us@SD",VH1
https://streamer1.nexgen.bz/VH1/index.m3u8

View File

@ -89,8 +89,6 @@ http://cdn12.henico.net:8080/live/dncal/index.m3u8
https://streamer12.vdn.dstreamone.net/saazoawaz/saazoawaz/playlist.m3u8
#EXTINF:-1 tvg-id="EETTV.ca",EET TV (1080p) [Not 24/7]
https://eu.streamjo.com/eetlive/eettv.m3u8
#EXTINF:-1 tvg-id="ErfanHalghehTV.ca",Erfan Halgheh TV (720p)
https://hls.erfanhalgheh.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="EWTN.us@Canada",EWTN Canada (720p) [Not 24/7]
https://cdn3.wowza.com/1/YW5wSWZiRGd2eFlU/bGV0aVBq/hls/live/playlist.m3u8
#EXTINF:-1 tvg-id="FightNetwork.ca",Fight Network (1080p)
@ -155,8 +153,6 @@ https://lin13.isilive.ca/live/_definst_/ontla/committee_2-en/playlist.m3u8
https://temp3.isilive.ca/live/_definst_/ontla/rm151-en/playlist.m3u8
#EXTINF:-1 tvg-id="LegislativeAssemblyTVNunavut.ca",Legislative Assembly TV Nunavut
http://temp2.isilive.ca/live/nunavut/live-eng/index.m3u8
#EXTINF:-1 tvg-id="LoveNature.ca@4K",Love Nature 4K (2160p)
https://d18dyiwu97wm6q.cloudfront.net/playlist.m3u8
#EXTINF:-1 tvg-id="MontrealGreekTV.ca",Montreal Greek TV (480p)
http://live.greektv.ca/hls1/greektv.m3u8
#EXTINF:-1 tvg-id="NETVToronto.ca",NETV Toronto (720p)
@ -187,8 +183,6 @@ http://live.stream.cdn.pamirtv.com/ptv/d0dbe915091d400bd8ee7f27f0791303.sdp/inde
http://stream.pardesitv.online/pardesi/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="PardesiTV.ca",Pardesi TV (720p) [Not 24/7]
http://stream.pardesitv.online/pardesi/index.m3u8
#EXTINF:-1 tvg-id="ParnianTV.ca",Parnian TV (720p)
https://live2.parnian.tv/hls/.m3u8
#EXTINF:-1 tvg-id="PlymouthRockTV.ca",Plymouth Rock TV (1080p)
https://vse2-eu-all59.secdn.net/barakyah-channel/live/plymouthtv/playlist.m3u8
#EXTINF:-1 tvg-id="PlymouthRockTV.ca",Plymouth Rock TV (1080p)
@ -239,3 +233,21 @@ https://5caf24a595d94.streamlock.net:1937/8132/8132/playlist.m3u8
https://wowzastream.westmancom.com/wcgtvlive/wcgtvPSA.stream/master.m3u8
#EXTINF:-1 tvg-id="LoveNature.ca@HD",Love Nature HD (1080i)
http://78.130.250.2:8023/play/a02m/index.m3u8
#EXTINF:-1 tvg-id="CHBLTV.ca",CHBL-TV
https://fl3.moveonjoy.com/CA_GLOBAL/index.m3u8
#EXTINF:-1 tvg-id="ProbashiTVNews.ca@SD",Probashi TV News
http://158.69.24.53:8080/probashi_tv/index.m3u8
#EXTINF:-1 tvg-id="NACTV.ca@SD",NACTV
https://stream2.pivotalelements.com/memfs/2d2e1038-9eb2-44df-a9b9-109de5752f3b_output_0.m3u8
#EXTINF:-1 tvg-id="ErfanHalghehTV.ca",Erfan Halgheh TV (720p)
https://hls.erfanhalgheh.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="ParnianTV.ca",Parnian TV (720p)
https://live2.parnian.tv/hls/.m3u8
#EXTINF:-1 tvg-id="ParnianTV.ca",Parnian TV
https://live2.parnian.tv/hls/live/play.m3u8
#EXTINF:-1 tvg-id="IIPCTV.ca@SD",IIPC TV
https://rpn.bozztv.com/dvrfl03/iipctv/index.m3u8
#EXTINF:-1 tvg-id="QuoVadisTV.ca@SD",Quo Vadis TV
https://tgn.bozztv.com/qvtv/qvtv-web/playlist.m3u8
#EXTINF:-1 tvg-id="NBATVCanada.ca@SD",NBA TV Canada (1080p)
http://user.scalecdn.co:8080/live/54706135/09221986/3092.m3u8

View File

@ -1,35 +0,0 @@
#EXTM3U
#EXTINF:-1 tvg-id="GEMTV.ca",GEM TV
https://ca-rt.onetv.app/gemb/index-0.m3u8
#EXTINF:-1 tvg-id="GEMSeries.ca",GEM Series
https://ca-rt.onetv.app/gemseriesbb/index-0.m3u8
#EXTINF:-1 tvg-id="GEMSeries.ca",GEM Series
https://ca-rt.onetv.app/gemseries/index-0.m3u8
#EXTINF:-1 tvg-id="GEMBollywood.ca",GEM Bollywood
https://ca-rt.onetv.app/gembollywood/index-0.m3u8
#EXTINF:-1 tvg-id="GEMFilm.ca",GEM Film
https://ca-rt.onetv.app/gemfilm/index-0.m3u8
#EXTINF:-1 tvg-id="GEMClassic.ca",GEM Classic
https://ca-rt.onetv.app/gemclassic/index-0.m3u8
#EXTINF:-1 tvg-id="GEMDrama.ca",GEM Drama
https://ca-rt.onetv.app/gemdrama/index-0.m3u8
#EXTINF:-1 tvg-id="GEMJunior.ca",GEM Junior
https://ca-rt.onetv.app/gemjunior/index-0.m3u8
#EXTINF:-1 tvg-id="GEMKids.ca",GEM Kids
https://ca-rt.onetv.app/gemkids/index-0.m3u8
#EXTINF:-1 tvg-id="GEMFood.ca",GEM Food
https://ca-rt.onetv.app/gemfood/index-0.m3u8
#EXTINF:-1 tvg-id="GEMMifa.ca",GEM Mifa
https://ca-rt.onetv.app/gemmifa/index-0.m3u8
#EXTINF:-1 tvg-id="GEMRiver.ca",GEM River
https://ca-rt.onetv.app/gemriver/index-0.m3u8
#EXTINF:-1 tvg-id="GEMRubix.ca",GEM Rubix
https://ca-rt.onetv.app/gemrubix/index-0.m3u8
#EXTINF:-1 tvg-id="GEMComedy.ca",GEM Comedy
https://ca-rt.onetv.app/gemcomedy/index-0.m3u8
#EXTINF:-1 tvg-id="GEMNature.ca",GEM Nature
https://ca-rt.onetv.app/gemnature/index-0.m3u8
#EXTINF:-1 tvg-id="GEMLife.ca",GEM Life
https://ca-rt.onetv.app/gemlife/index-0.m3u8
#EXTINF:-1 tvg-id="GEMFit.ca",GEM Fit
https://ca-rt.onetv.app/gemfit/index-0.m3u8

View File

@ -45,7 +45,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6391bdf41d4c24000780b234/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c799150-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=88bef66e-4156-47b4-a0db-16d60ae70741
#EXTINF:-1 tvg-id="",Car Chase
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65b384020cb1a1000880dee9/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c799151-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=51514d9d-db13-4653-aa11-b64c6d4665cc
#EXTINF:-1 tvg-id="PlutoTVCatfish.us@SD",Catfish
#EXTINF:-1 tvg-id="CatfishTVShow.us@SD",Catfish
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/64f8a2a23a0d700008a6ed7b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c799152-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=d33cda72-eef1-4ec7-8127-8301aff1d921
#EXTINF:-1 tvg-id="CBSNews247.us",CBS News 24/7
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6350fdd266e9ea0007bedec5/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c799153-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=15376bcb-2b34-4530-a2f7-c528a8eb2aa3
@ -381,7 +381,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62e91563ce7ce300076f917e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c7c5078-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=2db14410-4921-497d-a226-bc4d2e0c53bc
#EXTINF:-1 tvg-id="TheNewDetectives.us@Canada",The New Detectives
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62bdabbc5611f2000761ca30/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c7c5079-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=003b518d-cd6c-4b4b-80ab-ec5ad32c1a1c
#EXTINF:-1 tvg-id="PlutoTVThePriceisRight.us@SD",The Price is Right
#EXTINF:-1 tvg-id="ThePriceIsRightTheBarkerEra.us@SD",The Price is Right
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/64c2214c2a7f2200089a0c4b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c7c507a-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=c93e6330-dc43-4864-ad74-9144287f8bbd
#EXTINF:-1 tvg-id="ThePriceIsRightTheBarkerEra.us@SD",The Price is Right: The Barker Era
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/64c220e15dc1660008a79c96/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=2c7c7780-35fc-11ef-a031-2b5d494037a2&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=c8557389-071b-4c1a-ad15-977e50610abe

View File

@ -43,3 +43,9 @@ http://51.254.199.122:8080/kin24/index.m3u8
http://69.64.57.208/rtnc/playlist.m3u8
#EXTINF:-1 tvg-id="AntenneA.cd",Antenne A
http://51.254.199.122:8080/antenne_a-plus/index.m3u8
#EXTINF:-1 tvg-id="DigitalCongoTV.cd@SD",Digital Congo TV
http://51.254.199.122:8080/DigitalCongoTV/index.m3u8
#EXTINF:-1 tvg-id="RTNC3.cd@SD",RTNC 3
http://51.254.199.122:8080/e-cableRTNC3/index.m3u8
#EXTINF:-1 tvg-id="RTVS1.cd@SD",RTVS1
http://51.254.199.122:8080/RTVS1/index.m3u8

View File

@ -7,3 +7,9 @@ http://194.163.135.238:5080/WebRTCApp/streams/590264631485484547459082.m3u8
http://51.254.199.122:8080/telecongo/index.m3u8
#EXTINF:-1 tvg-id="TeleCongo.cg",Tele Congo
http://69.64.57.208/telecongo/playlist.m3u8
#EXTINF:-1 tvg-id="Esaie45Tele.cg@SD",Esaie 45 Tele
http://dvrfl05.bozztv.com/gin-esaie45/index.m3u8
#EXTINF:-1 tvg-id="JOSTVHD.cg@SD",JOS TV HD
https://stream.berosat.live:19360/jos-tv-stream/jos-tv-stream.m3u8
#EXTINF:-1 tvg-id="TeleCongo.cg@SD",Tele Congo
http://trn03.bozztv.com/gin-telecongo/index.m3u8

View File

@ -1,8 +1,4 @@
#EXTM3U
#EXTINF:-1 tvg-id="AlpenWelleTV.ch",Alpen-Welle TV (720p)
https://edge13.vedge.infomaniak.com/livecast/ik:alpen-wellelivestream/manifest.m3u8
#EXTINF:-1 tvg-id="AlpenlandTV.ch",Alpenland TV (720p)
https://edge14.vedge.infomaniak.com/livecast/ik:alpen-wellelivestream/playlist.m3u8
#EXTINF:-1 tvg-id="BlueSport2.ch",Blue Sport 2 (720p)
http://62.210.211.188:2095/play/a00f
#EXTINF:-1 tvg-id="Canal9.ch",Canal 9 en Français (1080p)
@ -33,8 +29,6 @@ https://g5nl63z8lpq6-hls-live.5centscdn.com/tvistream/a5586d8ea3b7b021120a05c60d
https://edge21.vedge.infomaniak.com/livecast/ik:livesd2/manifest.m3u8
#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p)
https://latele.vedge.infomaniak.com/livecast/latele/playlist.m3u8
#EXTINF:-1 tvg-id="LaTele.ch",La Télé (1080p)
https://livevideo.infomaniak.com/streaming/livecast/latele/playlist.m3u8
#EXTINF:-1 tvg-id="LemanBleu.ch",Léman Bleu (1080p)
http://livevideo.infomaniak.com/streaming/livecast/naxoo/playlist.m3u8
#EXTINF:-1 tvg-id="MaxTV.ch",MaxTV/Dieu TV (1080p)
@ -77,7 +71,15 @@ https://rtmp-vm.fidion.de/live/tvrt.m3u8
https://livevideo.infomaniak.com/streaming/livecast/tvm3/playlist.m3u8
#EXTINF:-1 tvg-id="TVO.ch",TVO (CH) (720p)
https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_t5h46v64/format/applehttp/protocol/https/a.m3u8
#EXTINF:-1 tvg-id="WedoBigStories.ch",Wedo Big Stories (1080p)
https://weyyak-live.akamaized.net/wedo_big_stories/index.m3u8
#EXTINF:-1 tvg-id="RADIODISCOuntTV.ch",RADIO DISCOunt TV (1080p)
https://585b674743bbb.streamlock.net/9030/9030/playlist.m3u8
#EXTINF:-1 tvg-id="DritaTV.ch@SD",Drita TV
https://dritatv.protokolldns.xyz/dritaweb5587989/index.m3u8
#EXTINF:-1 tvg-id="TeleBarn.ch@SD",TeleBarn
https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_obr1n222/protocol/https/format/applehttp/flavorIds/1_ilmyd94i,1_ndclh5za,1_y4atcpo4/a.m3u8
#EXTINF:-1 tvg-id="TeleZuri.ch@SD",TeleZuri
https://cdnapisec.kaltura.com/p/1719221/sp/171922100/playManifest/entryId/1_se36k3uk/protocol/https/format/applehttp/flavorIds/1_i4zc9zv3,1_2vzxm8zl,1_yjohpwzj/a.m3u8
#EXTINF:-1 tvg-id="RTS2.ch@SD",RTS 2 (1080p)
https://cachehsi1a.netplus.ch/live/eds/rts2hd/browser-dash/rts2hd.mpd
#EXTINF:-1 tvg-id="RTS1.ch@SD",RTS 1 (1080p)
https://cachehsi1a.netplus.ch/live/eds/rts1hd/browser-dash/rts1hd.mpd

View File

@ -3,20 +3,12 @@
http://69.64.57.208/atv/playlist.m3u8
#EXTINF:-1 tvg-id="AlphaetOmegaTV.ci",Alpha et Omega TV (720p)
https://video1.getstreamhosting.com:1936/8318/8318/playlist.m3u8
#EXTINF:-1 tvg-id="BATIRTV.ci",BÂTIR-TV (576p)
https://webstreaming.viewmedia.tv/web_021/Stream/playlist.m3u8
#EXTINF:-1 tvg-id="BenieTV.ci",Benie TV (720p)
https://voozmedia.fun/benietv/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="Business24Africa.ci",Business 24 Africa (480p)
https://cdn-globecast.akamaized.net/live/eds/business24_tv/hls_video/index.m3u8
#EXTINF:-1 tvg-id="ChampionTV.ci",Champion TV (480p)
https://neriyastreaming.ddns.net/memfs/b92b5d69-7f44-4ae8-a00a-40d70623b1e6.m3u8
#EXTINF:-1 tvg-id="ChristLive.ci",Christ Live (720p)
https://voozmedia.fun/stream/christlive/playlist.m3u8
#EXTINF:-1 tvg-id="DivinAmourTV.ci",Divin Amour TV (720p)
https://voozmedia.fun/divinamourtv/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="EsperanceTV.ci",Espérance TV (720p)
https://ik084235.ikoula.com/hls/Diff@mobile1.m3u8
#EXTINF:-1 tvg-id="GuideLoveTV.ci",Guide Love TV (720p)
https://video1.getstreamhosting.com:1936/8056/8056/playlist.m3u8
#EXTINF:-1 tvg-id="IvoireChannel.ci",Ivoire Channel (720p)
@ -45,9 +37,7 @@ https://www.enovativecdn.com/rticdn/smil:rti2.smil/playlist.m3u8
https://www.enovativecdn.com/rticdn/smil:rti3.smil/playlist.m3u8
#EXTINF:-1 tvg-id="RTVC.ci",RTVC (720p)
https://cdn140m.panaccess.com/HLS/RTVC/index.m3u8
#EXTINF:-1 tvg-id="TchamanTV.ci",Tchaman TV (720p)
https://itelema.stream/live/smil:myStream.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVAlBayane.ci",TV Al Bayane (360p)
http://69.64.57.208/albayanetv/index.m3u8
#EXTINF:-1 tvg-id="UGFTV.ci",UGF TV (720p) [Not 24/7]
https://ugftv.stream/live/myStream/playlist.m3u8
#EXTINF:-1 tvg-id="ExploitsTV.ci@SD",Exploits TV
https://stream.berosat.live:19360/exploits-tv/exploits-tv.m3u8

View File

@ -15,16 +15,8 @@ https://origin.dpsgo.com/ssai/event/p4mmBxEzSmKAxY1GusOHrw/master.m3u8
https://origin.dpsgo.com/ssai/event/g7_JOM0ORki9SR5RKHe-Kw/master.m3u8
#EXTINF:-1 tvg-id="13T.cl",13 Teleseries (720p)
https://origin.dpsgo.com/ssai/event/f4TrySe8SoiGF8Lu3EIq1g/master.m3u8
#EXTINF:-1 tvg-id="ADNTV.cl",ADN Radio (1080p)
https://jireh-2-hls-video-us-isp.dps.live/hls-video/931b584451fa6dd1313ee66efbfd5802e3f3bcea/adntv/adntv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="AERadioTV.cl",AE Radio TV (720p) [Not 24/7]
https://tls-cl.cdnz.cl/aeradio/live/playlist.m3u8
#EXTINF:-1 tvg-id="AlegriaTV.cl",Alegria TV (480p) [Geo-blocked]
https://593b04c4c5670.streamlock.net/8192/8192/playlist.m3u8
#EXTINF:-1 tvg-id="AlternativaTV.cl",Alternativa TV (Huasco) (720p) [Not 24/7]
https://5eaccbab48461.streamlock.net:1936/8216/8216/playlist.m3u8
#EXTINF:-1 tvg-id="AMCanal.cl",AM Canal (720p) [Not 24/7]
https://v2.tustreaming.cl/amtv/index.m3u8
#EXTINF:-1 tvg-id="AntofagastaTV.cl",Antofagasta TV (ATV) (1080p)
https://unlimited6-cl.dps.live/atv/atv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="AricaTV.cl",Arica TV (480p) [Not 24/7]
@ -33,274 +25,66 @@ https://5eff35271151c.streamlock.net:1936/8002/8002/playlist.m3u8
https://v2.tustreaming.cl/atacamanoticias/index.m3u8
#EXTINF:-1 tvg-id="AtacamaTV.cl",Atacama TV (Copiapó) (720p) [Not 24/7]
https://v2.tustreaming.cl/atacamatv/index.m3u8
#EXTINF:-1 tvg-id="ATVValdivia.cl",ATV Valdivia (720p)
https://6362ca6f1fc28.streamlock.net/8028/8028/playlist.m3u8
#EXTINF:-1 tvg-id="AutonomaTV.cl",Autónoma TV (480p)
https://stream.wifispeed.cl:3033/hybrid/play.m3u8
#EXTINF:-1 tvg-id="AXNLatinAmerica.us@Chile",AXN (1080p)
https://cvi.cdn.rcs.net.ar/mnp/axn_hls/playlist.m3u8
#EXTINF:-1 tvg-id="AysenTV.cl",Aysen TV (720p)
https://v1.tustreaming.cl/aysentv/index.m3u8
#EXTINF:-1 tvg-id="BioBioTV.cl",Bío Bío TV (1080p)
https://unlimited1-cl-isp.dps.live/bbtv/bbtv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="BuinSomosTodos.cl",Buin Somos Todos (720p) [Not 24/7]
https://bst.buin.cl/0.m3u8
#EXTINF:-1 tvg-id="CalderaVision.cl",Caldera Vision
https://5ff3d9babae13.streamlock.net/frknrusdct/frknrusdct/playlist.m3u8
#EXTINF:-1 tvg-id="CampoAbiertoTV.cl",Campo Abierto TV (480p)
https://v1.tustreaming.cl:19360/campoabierto/campoabierto.m3u8
#EXTINF:-1 tvg-id="CampusTV.cl",Campus TV (Talca) (720p) [Not 24/7]
https://pantera1-100gb-cl-movistar.dps.live/campustv/campustv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal2SanAntonio.cl",Canal 2 (San Antonio) (720p) [Not 24/7]
https://unlimited1-us.dps.live/canal2/canal2.smil/playlist.m3u8
#EXTINF:-1 tvg-id="PalmiraTV5.cl",Canal 5 Los Vilos (720p)
https://oracle.streaminghd.cl/canal5/canal5/playlist.m3u8
#EXTINF:-1 tvg-id="Canal5PuertoMontt.cl",Canal 5 Puerto Montt (1080p)
https://stmv2.zcasthn.com.br/canal5/canal5/playlist.m3u8
#EXTINF:-1 tvg-id="Canal8.cl",Canal 8 Los Sauces TV (720p)
http://live.mundogo.cl/mundo/LossaucesTV/index.m3u8
#EXTINF:-1 tvg-id="Canal9BioBioTelevision.cl",Canal 9 Bío Bío Televisión (1080p) [Not 24/7]
https://unlimited6-cl.dps.live/c9/c9.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Canal11Aysen.cl",Canal 11 Aysén (720p)
https://v1.tustreaming.cl:19360/canal11aysen/canal11aysen.m3u8
#EXTINF:-1 tvg-id="Canal21.cl",Canal 21 (720p) [Not 24/7]
http://edge1.cl.grupoz.cl/canal21tv/live/playlist.m3u8
#EXTINF:-1 tvg-id="Canal21.cl",Canal 21 (720p) [Not 24/7]
https://tls.cdnz.cl/canal21tv/live/playlist.m3u8
#EXTINF:-1 tvg-id="Canal33.cl",Canal 33 (720p) [Geo-blocked]
https://5eae379fb77bb.streamlock.net/eduardo555/eduardo555/playlist.m3u8
#EXTINF:-1 tvg-id="Canal57Melipilla.cl",Canal 57 Melipilla (720p)
https://593b04c4c5670.streamlock.net/8148/8148/playlist.m3u8
#EXTINF:-1 tvg-id="Canal74SanAntonio.cl",Canal 74 San Antonio
https://stmv5.voxtvhd.com.br/canal74hd/canal74hd/playlist.m3u8
#EXTINF:-1 tvg-id="CanalAltaFrontera.cl",Canal Alta Frontera (288p)
https://mediacpstreamchile.com:1936/altafronteratv/altafronteratv/playlist.m3u8
#EXTINF:-1 tvg-id="CanalChilote.cl",Canal Chilote
https://oracle.streaminghd.cl/canalchilote/canalchilote/playlist.m3u8
#EXTINF:-1 tvg-id="CanalISB.cl",Canal ISB (Iglesia San Bernardo) (720p)
https://unlimited1-us.dps.live/isb/isb.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalLatino.cl",Canal Latino (CL54) (360p)
https://live.chileservidores.com:8081/latina/index.m3u8
#EXTINF:-1 tvg-id="CanalLocal.cl",Canal Local (1080p)
http://live.mundogo.cl/mundo/Canallocalquillota/index.m3u8
#EXTINF:-1 tvg-id="CanalSCN.cl",Canal SCN (720p)
https://live.tvcontrolcp.com:1936/sancarlostv/sancarlostv/playlist.m3u8
#EXTINF:-1 tvg-id="CanalSurPatagonia.cl",Canal Sur Patagonia (720p)
https://v1.tustreaming.cl:19360/canalsurpatagoniatv/canalsurpatagoniatv.m3u8
#EXTINF:-1 tvg-id="CanalTUTV.cl",Canal TUTV
https://vdochile.com:3300/stream/play.m3u8
#EXTINF:-1 tvg-id="CaracolaTV.cl",Caracola TV (Peñalolén) (720p) [Not 24/7]
https://wifispeed.trapemn.tv:1936/comunales/caracola-tv/playlist.m3u8
#EXTINF:-1 tvg-id="CasaSobreLaRocaTV.cl",Casa Sobre La Roca TV
https://cp.panelchs.com:1936/8118/8118/playlist.m3u8
#EXTINF:-1 tvg-id="Cauquenesnet.cl",Cauquenesnet (720p)
https://vdo.miserver.pro:3102/stream/play.m3u8
#EXTINF:-1 tvg-id="CCPRadio.cl",CCP Radio (720p) [Not 24/7]
https://wifiexpert-1.energeek.cl/energeek/canal-3/playlist.m3u8
#EXTINF:-1 tvg-id="CDR.cl",CDR (720p)
https://live-hls-xgod.livepush.io/live_cdn/emaf6CHYV7M-RQcL2/index.m3u8
#EXTINF:-1 tvg-id="CDTV.cl",CDTV (720p) [Not 24/7]
http://camara.03.cl.cdnz.cl/camara19/live/playlist.m3u8
#EXTINF:-1 tvg-id="CDTV.cl",CDTV (720p) [Not 24/7]
https://tls-cl.cdnz.cl/camara/live/playlist.m3u8
#EXTINF:-1 tvg-id="CEACTV.cl",CEAC TV (Santiago) (480p)
https://live.chileservidores.com:8081/ceactv/index.m3u8
#EXTINF:-1 tvg-id="ChileChannel.cl",Chile Channel (720p)
https://v2.tustreaming.cl/chilechannel/index.m3u8
#EXTINF:-1 tvg-id="ChileVision.cl",ChileVisión (720p) [Geo-blocked]
http://chv-m3u.chorroaeboy.repl.co
#EXTINF:-1 tvg-id="ChiloeRed25.cl",Chiloe Red 25
https://v2.tustreaming.cl/chiloered/index.m3u8
#EXTINF:-1 tvg-id="ClaroSportsChile.cl",Claro Sports Chile
https://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/6320d80a66666000086712d7livestitch/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&profilesFromStream=true&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY
#EXTINF:-1 tvg-id="ClickTVChile.cl",Click TV (Coronel) (720p)
https://v2.tustreaming.cl/clicktv/playlist.m3u8
#EXTINF:-1 tvg-id="ClubTV.cl",Club TV (Santa Juana) (720p) [Not 24/7]
https://mediacpstreamchile.com:1936/clubtv/clubtv/playlist.m3u8
#EXTINF:-1 tvg-id="ConcepcionTV.cl",Concepción TV (1080p)
http://live.mundogo.cl/mundo/concepciontv/index.m3u8
#EXTINF:-1 tvg-id="Contivision.cl",Contivision (720p)
https://unlimited6-cl.dps.live/cm/cm.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CosmosTV.cl",Cosmos TV (720p)
https://v1.tustreaming.cl/cosmostv/index.m3u8
#EXTINF:-1 tvg-id="CRTV.cl",CRTV (720p)
https://vdo.panelstreaming.live:3058/stream/play.m3u8
#EXTINF:-1 tvg-id="CulturaOnline.cl",Cultura Online (720p)
https://v1.tustreaming.cl:19360/culturaonline/culturaonline.m3u8
#EXTINF:-1 tvg-id="D13.cl",D13 (1080p)
https://jireh-2-hls-video-us-isp.dps.live/hls-video/ey6283je82983je9823je8jowowiekldk9838274/13d/13d.smil/playlist.m3u8
#EXTINF:-1 tvg-id="DanceFM.cl",Dance FM (720p)
https://5eaccbab48461.streamlock.net:1936/dancefm_1/dancefm_1/playlist.m3u8
#EXTINF:-1 tvg-id="DecimaTV.cl",Décima TV (Ancud) (720p)
https://unlimited2-cl-isp.dps.live/decimatv/decimatv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="DJLonchoTV.cl",DJ Loncho TV (720p)
https://srv5.zcast.com.br/djlonchtv/djlonchtv/playlist.m3u8
#EXTINF:-1 tvg-id="EGMChannel.cl",EGM Channel (480p)
https://paneltv.online:1936/8186/8186/playlist.m3u8
#EXTINF:-1 tvg-id="EkizTV.cl",Ekiz TV (1080p)
http://live.mundogo.cl/mundo/EquizTV/index.m3u8
#EXTINF:-1 tvg-id="ElPinguinoTV.cl",El Pingüino TV (720p)
https://github.com/MachineSystems/archived_m3u8/raw/main/elpinguino_cl.m3u8
#EXTINF:-1 tvg-id="ElTipografo.cl",El Tipógrafo (1080p)
http://live.mundogo.cl/mundo/Tipografo/index.m3u8
#EXTINF:-1 tvg-id="EnerGeek.cl",EnerGeek (720p) [Not 24/7]
https://streaming-cl.sh1ny.space/memfs/e8a8e789-170b-4de4-a33b-90a9a475ce65.m3u8
#EXTINF:-1 tvg-id="EnerGeekRadio.cl",EnerGeek Radio (1080p)
https://streaming-cl.sh1ny.space/memfs/75b105a4-2fd3-4538-a55c-480f3903a262.m3u8
#EXTINF:-1 tvg-id="EnfoqueDigitalTV.cl",Enfoque Digital TV (1080p)
https://5eaccbab48461.streamlock.net:1936/8074/8074/playlist.m3u8
#EXTINF:-1 tvg-id="EstudioTV.cl",Estudio TV (La Ligua)
https://mediacpstreamchile.com:1936/hugomendez/hugomendez/playlist.m3u8
#EXTINF:-1 tvg-id="EvaStream.cl",Eva Stream (Corporación Eva) (480p) [Not 24/7]
https://mediacpstreamchile.com:1936/evavision/evavision/playlist.m3u8
#EXTINF:-1 tvg-id="EvaRetro.cl",EvaRetro (Corporación Eva) (600p) [Not 24/7]
https://stmv2.zcasthn.com.br/evaretro/evaretro/playlist.m3u8
#EXTINF:-1 tvg-id="Evavision.cl",Evavisión (720p)
https://stmv1.zcasthn.com.br/evevision/evevision/playlist.m3u8
#EXTINF:-1 tvg-id="EvavisionPachanga.cl",Evavisión Pachanga (Corporación Eva) (720p)
http://159.69.56.148:25461/live/evavision/2r4rfasf/38.m3u8
#EXTINF:-1 tvg-id="ExprezionTV.cl",Exprezión TV (720p)
https://srv3.zcast.com.br/expreszion/expreszion/playlist.m3u8
#EXTINF:-1 tvg-id="",Fanpop TV
https://streaming-cl.sh1ny.space/memfs/e16d2f72-70b5-4bf5-b9c5-107b6390a10f.m3u8
#EXTINF:-1 tvg-id="Girovisual.cl",Girovisual (720p)
https://unlimited1-cl-isp.dps.live/girovisual2/girovisual2.smil/playlist.m3u8
#EXTINF:-1 tvg-id="GraciaTV.cl",Gracia TV (1080p) [Not 24/7]
http://v3.tustreaming.cl/graciatv/index.m3u8
#EXTINF:-1 tvg-id="HiperconectadosTV.cl",Hiperconectados TV
https://stmv5.voxtvhd.com.br/hiperconectados/hiperconectados/playlist.m3u8
#EXTINF:-1 tvg-id="HiperTV.cl",HiperTV (720p) [Not 24/7]
https://inliveserver.com:1936/11010/11010/playlist.m3u8
#EXTINF:-1 tvg-id="HitoCeroTelevision.cl",Hito Cero Television
https://5ff3d9babae13.streamlock.net/8018/8018/playlist.m3u8
#EXTINF:-1 tvg-id="HolvoetTV.cl",Holvoet TV (Copiapó) (720p) [Not 24/7]
https://unlimited1-us.dps.live/holvoettv/holvoettv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="HuascoTelevision.cl",Huasco Televisión (360p)
https://paneltv.online:1936/8024/8024/playlist.m3u8
#EXTINF:-1 tvg-id="InterradioTV.cl",Interradio TV (1080p)
https://cdn.jmvstream.com/w/LVW-13214/LVW13214_wLcadZJaYb/playlist.m3u8
#EXTINF:-1 tvg-id="IquiqueTV.cl",Iquique TV (720p)
https://marine2.miplay.cl/arcatel/iquiquetv720/video.m3u8
#EXTINF:-1 tvg-id="ITVPatagonia.cl",ITV Patagonia (720p)
https://unlimited1-cl.dps.live/itv/itv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="ITVPatagonia.cl",ITV Patagonia (720p) [Not 24/7]
https://unlimited1-us.dps.live/itv/itv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="JuntosTV.cl",Juntos TV (720p)
https://video.juntostvchile.cl:8879/hls/web-jntv.m3u8
#EXTINF:-1 tvg-id="Kanade.cl",Kanade (1080p)
https://streaming-cl.sh1ny.space/memfs/0e41fc31-9f44-46d4-8712-0446e2f3dcaa.m3u8
#EXTINF:-1 tvg-id="LaChilenaTV.cl",La Chilena TV
https://vdochile.com:3134/hybrid/play.m3u8
#EXTINF:-1 tvg-id="LaGranjaTV.cl",La Granja TV (720p) [Not 24/7]
https://5eae379fb77bb.streamlock.net/8126/8126/playlist.m3u8
#EXTINF:-1 tvg-id="LaPopularTV.cl",La Popular TV (720p)
https://tv.streaming-chile.com:1936/lapopulartv/lapopulartv/playlist.m3u8
#EXTINF:-1 tvg-id="LaRed.cl",La Red (720p) [Not 24/7]
https://unlimited1-cl-isp.dps.live/lared/lared.smil/playlist.m3u8
#EXTINF:-1 tvg-id="LancoTV.cl",Lanco TV (1080p)
https://lancotv.ngrok.app/hls/stream.m3u8
#EXTINF:-1 tvg-id="LatinosRadio.cl",Latinos Radio
https://mediacpstreamchile.com:1936/latinosmedia-1/latinosmedia-1/playlist.m3u8
#EXTINF:-1 tvg-id="LTV.cl",LTV (480p)
https://mediacpstreamchile.com:1936/ltvcanal/ltvcanal/playlist.m3u8
#EXTINF:-1 tvg-id="MacarenaFM.cl",Macarena FM (720p)
https://5ff3d9babae13.streamlock.net/8042/8042/playlist.m3u8
#EXTINF:-1 tvg-id="MaderoTV.cl",Madero TV (720p)
https://www.cloudscriptdog.cl:19360/madero-video-01/madero-video-01.m3u8
#EXTINF:-1 tvg-id="Maulevision.cl",Maulevisión (720p)
https://makestreaming.online:3723/stream/play.m3u8
#EXTINF:-1 tvg-id="MaximaFMChile.cl",Maxima FM (720p) [Not 24/7]
https://server1.oklanet.cl:1936/maximavideo1/maximavideo1/playlist.m3u8
#EXTINF:-1 tvg-id="Mega.cl",Mega (480p)
https://unlimited1-cl-isp.dps.live/mega/mega.smil/playlist.m3u8
#EXTINF:-1 tvg-id="MolinaTV.cl",Molina TV (1080p)
http://live.mundogo.cl/mundo/Molinatv/index.m3u8
#EXTINF:-1 tvg-id="MTNATV.cl",MTNA TV (720p)
https://6362ca6f1fc28.streamlock.net/8140/8140/playlist.m3u8
#EXTINF:-1 tvg-id="MundodelaMusica.cl",Mundo de la Música (480p)
https://videostreaming.cloudserverlatam.com/8078/8078/playlist.m3u8
#EXTINF:-1 tvg-id="NativaTV.cl",Nativa TV (720p)
https://mediacpstreamchile.com:1936/nativa3/nativa3/playlist.m3u8
#EXTINF:-1 tvg-id="NCTV.cl",NCTV (1080p)
https://pantera1-100gb-cl-movistar.dps.live/nctv/nctv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Nortevision.cl",Nortevisión (720p)
https://live.tvcontrolcp.com:1936/nortevision/nortevision/playlist.m3u8
#EXTINF:-1 tvg-id="NTV.cl",NTV (720p)
https://marine2.miplay.cl/ntv/playlist.m3u8
#EXTINF:-1 tvg-id="Nublevision.cl",Ñublevisión (Chillán) (720p)
https://cdn.oneplaychile.cl:1936/regionales/nublevision.stream/playlist.m3u8
#EXTINF:-1 tvg-id="NuevaRegionTV.cl",Nueva Región TV (720p)
http://live.mundogo.cl/mundo/Nuevaregion/index.m3u8
#EXTINF:-1 tvg-id="OndaRadio.cl",Onda Radio TV (1080p)
https://tv.streaming-chile.com:1936/ondaradio/ondaradio/playlist.m3u8
#EXTINF:-1 tvg-id="Opinionsur.cl",Opinionsur
https://mediacpstreamchile.com:1936/opinionsur/opinionsur/playlist.m3u8
#EXTINF:-1 tvg-id="OrigenTV.cl",Origen TV (480p)
https://tv.streaming-chile.com:1936/origentv/origentv/playlist.m3u8
#EXTINF:-1 tvg-id="PandamaxChannel.cl",Pandamax Channel (1080p)
https://stream.wifiexpert.cl/telenorte/pandamaxch/playlist.m3u8
#EXTINF:-1 tvg-id="Pauta.cl",Pauta (720p)
https://unlimited1-us.dps.live/pautatv/pautatv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Pauta.cl",Pauta (720p)
https://unlimited6-cl.dps.live/pautatv/pautatv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="PichilemuTV.cl",Pichilemu TV (1080p)
https://5ff3d9babae13.streamlock.net/8028/8028/playlist.m3u8
#EXTINF:-1 tvg-id="PintanaTV.cl",Pintana TV (720p)
https://cdn.vms.grupoz.cl/lapintanatv/content/5a7c8e25e19d3e641aca9fb2/hls/playlist.m3u8
#EXTINF:-1 tvg-id="PlanetaTV90s.cl",PlanetaTV 90s (720p)
https://mediacpstreamchile.com:1936/8102/8102/playlist.m3u8
#EXTINF:-1 tvg-id="PlanetaTVKids.cl",PlanetaTV Kids (1080p)
https://mediacpstreamchile.com:1936/8152/8152/playlist.m3u8
#EXTINF:-1 tvg-id="PlanetaTVMovie.cl",PlanetaTV Movie (720p)
https://scl.edge.grupoz.cl/movie/live/playlist.m3u8
#EXTINF:-1 tvg-id="PlanetaTVMusic.cl",PlanetaTV Music (720p)
https://scl.edge.grupoz.cl/music/live/music.m3u8
#EXTINF:-1 tvg-id="PlazaTV.cl",Plaza TV (720p)
https://unlimited10-cl.dps.live/girovisual2/girovisual2.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Portalfoxmix.cl",Portalfoxmix (908p) [Not 24/7]
http://tv.portalfoxmix.club:1935/portalfoxmix/portalfoxmix/playlist.m3u8
#EXTINF:-1 tvg-id="Portalfoxmix.cl",Portalfoxmix (480p) [Not 24/7]
https://593b04c4c5670.streamlock.net/portalfoxmix/portalfoxmix/playlist.m3u8
#EXTINF:-1 tvg-id="PuconTV.cl",Pucón TV (1080p) [Not 24/7]
https://pantera1-100gb-cl-movistar.dps.live/pucontv/pucontv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="PuranoticiaTV.cl",Puranoticia TV (720p)
https://pnt.janusmedia.tv/hls/pnt.m3u8
#EXTINF:-1 tvg-id="RadioElSembrador.cl",Radio El Sembrador (1080p)
https://tv.streaming-chile.com:19360/elsembrador/elsembrador.m3u8
#EXTINF:-1 tvg-id="RadioHoyTV.cl",Radio Hoy TV (1080p)
https://panel.dattalive.com/8146/8146/playlist.m3u8
#EXTINF:-1 tvg-id="RadioQ.cl",Radio Q (1080p)
https://panel.miplay.cl:8081/radioq/index.m3u8
#EXTINF:-1 tvg-id="RadioRancaguaFM.cl",Radio Rancagua FM (768p) [Not 24/7]
https://5eff35271151c.streamlock.net:1936/8056/8056/playlist.m3u8
#EXTINF:-1 tvg-id="RadioRitmoFM.cl",Radio Ritmo FM (720p)
https://video.streamingchilenos.cl:1936/8040/8040/playlist.m3u8
#EXTINF:-1 tvg-id="RadioTouchTV.cl",Radio Touch TV (480p)
https://mediacpstreamchile.com:1936/8118/8118/playlist.m3u8
#EXTINF:-1 tvg-id="RadioTributoValentina.cl",Radio Tributo Valentina (720p)
https://vdochile.com:3385/hybrid/play.m3u8
#EXTINF:-1 tvg-id="RadioZetaTV.cl",Radio Zeta TV (480p)
https://unlimited1-cl.dps.live/radioztv/radioztv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="RadiotecaWebstereo.cl",Radioteca Webstereo (720p)
https://paneltv.net:3908/live/txtkignslive.m3u8
#EXTINF:-1 tvg-id="RCKTV.cl",RCK TV (720p)
https://mediacpstreamchile.com:1936/ricardoaravena/ricardoaravena/playlist.m3u8
#EXTINF:-1 tvg-id="RDOTelevision.cl",RDO Televisión (480p)
http://live.mundogo.cl/mundo/RDO/index.m3u8
#EXTINF:-1 tvg-id="RecuerdosRetro.cl",Recuerdos Retro
https://593b04c4c5670.streamlock.net/8002/8002/playlist.m3u8
#EXTINF:-1 tvg-id="RestaurandoVidasInternacional.cl",Restaurando Vidas Internacional (720p)
https://v4.tustreaming.cl/restaurandovida/index.m3u8
#EXTINF:-1 tvg-id="RetroPlus.cl",Retro Plus HD (720p)
https://video06.logicahost.com.br/retroplustv/retroplustv/playlist.m3u8
#EXTINF:-1 tvg-id="RewindTV.cl",Rewind TV (720p) [Not 24/7]
https://tls.cdnz.cl/rewindtv/rewindtv/playlist.m3u8
#EXTINF:-1 tvg-id="RTCTelevision.cl",RTC Televisión
https://5eae379fb77bb.streamlock.net/rtctelevision/rtctelevision/playlist.m3u8
#EXTINF:-1 tvg-id="RTVNuble.cl",RTV Ñuble (720p)
https://live.tvcontrolcp.com:1936/guzman/guzman/playlist.m3u8
#EXTINF:-1 tvg-id="RuidosFM.cl",Ruidos FM (720p)
https://593b04c4c5670.streamlock.net/8038/8038/playlist.m3u8
#EXTINF:-1 tvg-id="SantaMariaTelevision.cl",Santa María Televisión (720p) [Not 24/7]
https://pantera1-100gb-cl-movistar.dps.live/smtv/smtv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Sextavision.cl",Sextavisión (720p)
@ -309,14 +93,8 @@ https://5ff3d9babae13.streamlock.net/8020/8020/playlist.m3u8
https://5ff3d9babae13.streamlock.net/8000/8000/playlist.m3u8
#EXTINF:-1 tvg-id="SoloBailalo.cl",SoloBáilalo (480p)
https://5ff3d9babae13.streamlock.net/8016/8016/playlist.m3u8
#EXTINF:-1 tvg-id="SoloStandUp.cl",SoloStandUp (480p) [Not 24/7]
https://paneltv.online:1936/8116/8116/playlist.m3u8
#EXTINF:-1 tvg-id="SpectrumChannel.cl",Spectrum Channel (720p)
#EXTINF:-1 tvg-id="PRIDEtvLATAM.cl@HD",PRIDEtv LATAM (720p)
https://panel.miplay.cl:8082/spectrumchannel/index.m3u8
#EXTINF:-1 tvg-id="StgoTV.cl",Stgo.TV (720p)
https://stv.janus.cl/playlist/stream.m3u8
#EXTINF:-1 tvg-id="Subela.cl",Súbela (720p)
https://mdstrm.com/live-stream-playlist/5fad9b1d978fe1080e3ac4a8.m3u8
#EXTINF:-1 tvg-id="SuyaiTV.cl" http-referrer="https://suyaitv.cl",Suyai TV (1080p)
#EXTVLCOPT:http-referrer=https://suyaitv.cl
https://signal.suyaitv.cl/live/35/playlist.m3u8?username=ZZDemoIPTVGH&password=9PcdCnFxUe
@ -326,96 +104,42 @@ https://jireh-2-hls-video-us-isp.dps.live/hls-video/10b92cafdf3646cbc1e727f3dc76
https://unlimited1-us.dps.live/inet2/inet2.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Tele2WebRetiro.cl",Tele 2 Web (Retiro) (720p) [Not 24/7]
https://inliveserver.com:1936/11516/11516/playlist.m3u8
#EXTINF:-1 tvg-id="Telecanal.cl",Telecanal (480p)
https://unlimited1-cl-isp.dps.live/tctc/tctc.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TeleCauquenes.cl",TeleCauquenes (720p)
https://vdo.panelstreaming.live:3401/hybrid/play.m3u8
#EXTINF:-1 tvg-id="TeletrakTV.cl",Teletrak (720p)
https://unlimited6-cl.dps.live/sportinghd/sportinghd.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Televida.cl",Televida (1080p)
https://tls-cl.cdnz.cl/televida/live/playlist.m3u8
#EXTINF:-1 tvg-id="Telezion.cl",Telezion (720p)
https://paneltv.net:3751/hybrid/play.m3u8
#EXTINF:-1 tvg-id="TemucoTelevision.cl",Temuco Television
https://tv.streaming-chile.com:19360/temucotelevision/temucotelevision.m3u8
#EXTINF:-1 tvg-id="TendenciasPrime.cl",Tendencias Prime (T31 | Ñuñoa) (1080p) [Not 24/7]
https://v2.tustreaming.cl/tendenciastv/index.m3u8
#EXTINF:-1 tvg-id="TerranovaTelevision.cl",Terranova Televisión (810p)
https://5ff3d9babae13.streamlock.net/gtryhpwpwe/gtryhpwpwe/playlist.m3u8
#EXTINF:-1 tvg-id="Tevex.cl",Tevex (720p) [Not 24/7]
https://v4.tustreaming.cl/tevexinter/index.m3u8
#EXTINF:-1 tvg-id="ThemaTelevision.cl",Thema Televisión (La Serena) (720p) [Not 24/7]
https://unlimited1-us.dps.live/thema/thema.smil/playlist.m3u8
#EXTINF:-1 tvg-id="ThemaTelevision.cl",Thema Televisión (La Serena) (720p) [Not 24/7]
https://unlimited6-cl.dps.live/thema/thema.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TMNTV.cl",TMN TV (720p)
https://v1.tustreaming.cl/tmntv/index.m3u8
#EXTINF:-1 tvg-id="TNE.cl",TNE (720p) [Not 24/7]
https://v2.tustreaming.cl/tnetv/index.m3u8
#EXTINF:-1 tvg-id="TurfMovil.cl",Turf Movil (720p)
https://tvturf4.janus.cl/playlist/stream.m3u8?d=w&id=
#EXTINF:-1 tvg-id="TV5Linares.cl",TV5 Linares (720p)
https://unlimited1-us.dps.live/tv5/tv5.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TV5Linares.cl",TV5 Linares (720p) [Not 24/7]
https://unlimited6-cl.dps.live/tv5/tv5.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TV8Concepcion.cl",TV8 (Concepción) (514p) [Geo-blocked]
https://593b04c4c5670.streamlock.net/8014/8014/playlist.m3u8
#EXTINF:-1 tvg-id="TVBajoCero.cl",TV Bajo Cero (804p)
https://stmv2.zcasthn.com.br/bajocerotv/bajocerotv/playlist.m3u8
#EXTINF:-1 tvg-id="TVChile.cl",TV Chile (1080p) [Geo-blocked]
https://mdstrm.com/live-stream-playlist/533adcc949386ce765657d7c.m3u8
#EXTINF:-1 tvg-id="TVCosta.cl",TV Costa (720p)
https://tv.tvcontrolcp.com:1936/costatv1/costatv1/playlist.m3u8
#EXTINF:-1 tvg-id="TVElqui.cl",TV Elqui (720p)
https://paneltv.online:1936/8056/8056/playlist.m3u8
#EXTINF:-1 tvg-id="TVPlus2.cl",TV MÁS 2 (480p)
https://marine2.miplay.cl/tateti/playlist.m3u8
#EXTINF:-1 tvg-id="TVPop.cl",TV Pop (720p)
https://v4.tustreaming.cl/poptv/playlist.m3u8
#EXTINF:-1 tvg-id="Canal2Quellon.cl",TV Quellón (1080p) [Not 24/7]
https://pantera1-100gb-cl-movistar.dps.live/tvquellon/tvquellon.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVQuintaRegion.cl",TV Quinta Region (1080p)
https://mediacpstreamchile.com:1936/8002/8002/playlist.m3u8
#EXTINF:-1 tvg-id="TVSenado.cl",TV Senado (360p)
https://janus-tv-ply.senado.cl/playlist/playlist.m3u8
#EXTINF:-1 tvg-id="TVUCT.cl",TV UCT (1080p)
https://unlimited1-us.dps.live/uct/uct.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVPlus.cl",TV+ (720p) [Geo-blocked]
https://mdstrm.com/live-stream-playlist/5c0e8b19e4c87f3f2d3e6a59.m3u8
#EXTINF:-1 tvg-id="TVM.cl",TVM (720p)
https://tls-cl.cdnz.cl/tvm/live/playlist.m3u8
#EXTINF:-1 tvg-id="TVN.cl",TVN (1080p) [Geo-blocked]
https://panel.miplay.cl:8081/tvn/index.m3u8
#EXTINF:-1 tvg-id="TVN3.cl",TVN3 (1080p) [Geo-blocked]
https://mdstrm.com/live-stream-playlist/5653641561b4eba30a7e4929.m3u8
#EXTINF:-1 tvg-id="TVOSanVicente.cl",TVO San Vicente (720p) [Not 24/7]
https://5e3483cba9114.streamlock.net/8014/8014/playlist.m3u8
#EXTINF:-1 tvg-id="TVR.cl",TVR (1080p) [Not 24/7]
https://unlimited1-us.dps.live/tvr/tvr.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVR.cl",TVR (720p)
https://unlimited1-cl.dps.live/tvr/tvr.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVRCanal11.cl",TVR Canal 11 Curicó (1080p)
https://unlimited6-cl.dps.live/tvrcurico/tvrcurico.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TVU.cl",TVU Concepción (1080p)
https://unlimited1-cl-isp.dps.live/tvu/tvu.smil/playlist.m3u8
#EXTINF:-1 tvg-id="ULosLagosTV.cl",U Los Lagos TV (1080p) [Not 24/7]
http://tv.ulagos.cl/web/live.m3u8
#EXTINF:-1 tvg-id="UChileTV.cl",UChile TV (720p)
https://unlimited1-cl-isp.dps.live/uchiletv/uchiletv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="UCVTV.cl",UCV TV (720p)
https://unlimited2-cl-isp.dps.live/ucvtv2/ucvtv2.smil/playlist.m3u8
#EXTINF:-1 tvg-id="UCV3TV.cl",UCV TV Eventos (720p) [Not 24/7]
https://unlimited10-cl.dps.live/ucvtveventos/ucvtveventos.smil/playlist.m3u8
#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p)
http://edge1.cl.grupoz.cl/uestv/live/playlist.m3u8
#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p)
https://tls-cl.cdnz.cl/uestv/live/playlist.m3u8
#EXTINF:-1 tvg-id="UESTV.cl",UESTV (720p)
https://tls.cdnz.cl/uestv/live/playlist.m3u8
#EXTINF:-1 tvg-id="UMAGTV2.cl",UMAGTV 2 (720p)
https://tls-cl.cdnz.cl/umag2/live/playlist.m3u8
#EXTINF:-1 tvg-id="UMAGTV.cl",UMAGTV Televisión (Punta Arenas) (720p)
http://edge1.cl.grupoz.cl/tser5/live/playlist.m3u8
#EXTINF:-1 tvg-id="UATV.cl",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7]
https://unlimited1-us.dps.live/uatv/uatv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="UATV.cl",Universidad Autónoma Temuco (UATV) (1080p) [Not 24/7]
@ -426,28 +150,10 @@ https://v2.tustreaming.cl/utv/index.m3u8
https://5eaccbab48461.streamlock.net:1936/8112/8112/playlist.m3u8
#EXTINF:-1 tvg-id="VCOnline.cl",VC Online (720p)
https://panel.tvstream.cl:1936/8024/8024/playlist.m3u8
#EXTINF:-1 tvg-id="VidaTV.cl",Vida TV (1080p)
http://181.224.64.2:89/vidatv/index.m3u8
#EXTINF:-1 tvg-id="VisionPlusTV.cl",Visión Plus TV (Melipilla) (720p) [Not 24/7]
https://v2.tustreaming.cl/visionplustv/index.m3u8
#EXTINF:-1 tvg-id="VisionTV.cl",Vision TV (720p)
https://5cf4a2c2512a2.streamlock.net/8184/8184/playlist.m3u8
#EXTINF:-1 tvg-id="VozdePoderTelevision.cl",Voz de Poder Television (720p)
https://v1.tustreaming.cl:19360/vozdepoder/vozdepoder.m3u8
#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl",VTV Valle de Aconcagua (720p) [Not 24/7]
https://unlimited1-us.dps.live/vtv/vtv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="VTVValledeAconcagua.cl",VTV Valle de Aconcagua (720p) [Not 24/7]
https://unlimited6-cl.dps.live/vtv/vtv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Wapp.cl",Wapp (1080p)
https://mdstrm.com/live-stream-playlist/6046495ddf98b007fa2fe807.m3u8
#EXTINF:-1 tvg-id="YungayOnline.cl",Yungay Online
https://mediacpstreamchile.com:1936/8028/8028/playlist.m3u8
#EXTINF:-1 tvg-id="ZappingMusic.cl",Zapping Music (720p)
https://zmlive.zappingtv.com/zm-free/zm.smil/playlist.m3u8
#EXTINF:-1 tvg-id="ZonaLatina.cl",Zona Latina (480p)
http://190.2.212.209:8050/play/a0oj
#EXTINF:-1 tvg-id="ZonaPlayTV.cl",Zona Play TV (720p)
https://paneltv.online:1936/8100/8100/playlist.m3u8
#EXTINF:-1 tvg-id="VisionPlusTV.cl" http-referrer="https://visionplustv.cl/",Vision Plus TV (1080i)
#EXTVLCOPT:http-referrer=https://visionplustv.cl/
https://5ff3d9babae13.streamlock.net/jwagpqxehu/jwagpqxehu/playlist.m3u8
@ -469,3 +175,25 @@ https://xui-backend.energeek.cl/live/11/playlist.m3u8?username=ZZDemoIPTVGH&pass
https://xui-backend.energeek.cl/live/10/playlist.m3u8?username=ZZDemoIPTVGH&password=mdo96EuqMkTR
#EXTINF:-1 tvg-id="EnerGeek.cl",EnerGeek (1080p)
https://xui-backend.energeek.cl/live/9/playlist.m3u8?username=ZZDemoIPTVGH&password=mdo96EuqMkTR
#EXTINF:-1 tvg-id="NTV.cl",NTV
https://panel.miplay.cl:8082/ntv/index.m3u8
#EXTINF:-1 tvg-id="StgoTV.cl",Stgo.TV
https://panel.miplay.cl:8082/stgotv/index.m3u8
#EXTINF:-1 tvg-id="TVPlus2.cl",TV+ 2
https://panel.miplay.cl:8082/tvmas2/index.m3u8
#EXTINF:-1 tvg-id="NativaTV.cl",Nativa TV
https://stmv5.voxtvhd.com.br/nativatv/nativatv/playlist.m3u8
#EXTINF:-1 tvg-id="RecTV.cl",Rec TV
https://marine2.miplay.cl/rec/index.m3u8
#EXTINF:-1 tvg-id="Canal21.cl@SD",Canal 21
https://tls-cl.cdnz.cl/canal21tv/live/playlist.m3u8
#EXTINF:-1 tvg-id="Canal74SanAntonio.cl@SD",Canal 74 San Antonio
https://eu1.servers10.com:8081/8050/index.m3u8
#EXTINF:-1 tvg-id="HuascoTelevision.cl@SD",Huasco Television
https://paneltv.online:1936/huasco/huasco/playlist.m3u8
#EXTINF:-1 tvg-id="MTNATV.cl@SD",MTNA TV
https://live.mtna.tv/hls/mtna/mtna.m3u8
#EXTINF:-1 tvg-id="LaPopularTV.cl@SD",La Popular TV
https://tv.arkeo.cl:1936/enlacetv1/enlacetv1/playlist.m3u8
#EXTINF:-1 tvg-id="Telecanal.cl@SD",Telecanal (720p)
http://190.110.160.210:8000/play/a07s/index.m3u8

View File

@ -1,24 +1,16 @@
#EXTM3U
#EXTINF:-1 tvg-id="CanaldeVie.cm",Canal de Vie (360p)
https://edge13.vedge.infomaniak.com/livecast/ik:canaldevie/playlist.m3u8
#EXTINF:-1 tvg-id="CENTelevision.cm",CEN Télévision (1080p)
https://strhlslb01.streamakaci.tv/cen/cen-multi/playlist.m3u8
#EXTINF:-1 tvg-id="CRTV.cm",CRTV (480p) [Not 24/7]
https://edge.vedge.infomaniak.com/livecast/ik:fluxvideo-crtv/manifest.m3u8
#EXTINF:-1 tvg-id="CTVAfrique.cm",CTV Afrique (720p)
https://stream.it-innov.com/ctv/index.m3u8
#EXTINF:-1 tvg-id="ForYouTV.cm",For You TV (480p)
https://stream.az-multimedia.com:3793/live/foryoutvlive.m3u8
#EXTINF:-1 tvg-id="GloryChristChannel.cm",Glory Christ Channel (720p)
https://stream.it-innov.com/gcc/index.m3u8
#EXTINF:-1 tvg-id="MISECTV.cm",MISEC TV (720p)
https://stream.it-innov.com/misec/index.m3u8
#EXTINF:-1 tvg-id="MyTVChannel.cm",My TV Channel (720p) [Not 24/7]
http://connectiktv.ddns.net:5000/mytvchannel/@mytvchannel/playlist.m3u8
#EXTINF:-1 tvg-id="PlayTV.cm",Play TV (720p) [Not 24/7]
http://connectiktv.ddns.net:5000/playtv/@playtv/playlist.m3u8
#EXTINF:-1 tvg-id="SCBCTV.cm",SCBC Television (1080p)
https://cdn.scbcmedia.com/scbctelevision/c9a1fdac6e082dd89e7173244f34d7b3.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="TR24Television.cm",TR24 (720p)
https://stream.it-innov.com/tr24/index.m3u8
#EXTINF:-1 tvg-id="Vision4.cm",Vision 4 (360p)
@ -29,3 +21,9 @@ http://69.64.57.208/crtv/playlist.m3u8
http://69.64.57.208/canal2international/playlist.m3u8
#EXTINF:-1 tvg-id="EquinoxeTV.cm",Equinoxe TV
http://69.64.57.208/equinoxtv/playlist.m3u8
#EXTINF:-1 tvg-id="CAM10TV.cm@SD",CAM 10 TV
https://stream.it-innov.com/cam10tv/index.m3u8
#EXTINF:-1 tvg-id="CRTVSportsandEntertainment.cm@SD",CRTV Sports and Entertainment
https://live20.bozztv.com/dvrfl06/astv/astv-crtvsport/index.m3u8
#EXTINF:-1 tvg-id="MyRighteousTV.cm@SD",My Righteous TV
https://live20.bozztv.com/ssh101/ssh101/myrighteous/playlist.m3u8

View File

@ -75,8 +75,6 @@ http://180.213.174.225:9901/tsfile/live/1027_1.m3u8?authid=0&key=txiptv&playlive
http://180.213.174.225:9901/tsfile/live/1030_1.m3u8?authid=0&key=txiptv&playlive=1
#EXTINF:-1 tvg-id="CityTheaterChannel.cn",City Theater Channel
http://49.113.179.174:4022/udp/238.125.1.60:5140
#EXTINF:-1 tvg-id="CNCWorldEnglish.cn",CNC中文 (720p) [Not 24/7]
http://source07.v.news.cn/live/CNC_CN/playlist.m3u8
#EXTINF:-1 tvg-id="DocumentaryHumanitiesChannel.cn",Documentary Humanities Channel
http://49.113.179.174:4022/udp/238.125.3.135:5140
#EXTINF:-1 tvg-id="DOXSurround.cn",DOX Surround
@ -93,14 +91,6 @@ http://49.113.179.174:4022/udp/238.125.2.175:5140
http://60.175.115.119:1935/live/wenhua/playlist.m3u8
#EXTINF:-1 tvg-id="",Fengtai News TV
http://60.175.115.119:1935/live/zonghe/playlist.m3u8
#EXTINF:-1 tvg-id="",Foochow Children TV
http://live.zohi.tv/video/s10001-sepd-4/index.m3u8
#EXTINF:-1 tvg-id="",Foochow TV-1 News
http://live.zohi.tv/video/s10001-FZTV-1/index.m3u8
#EXTINF:-1 tvg-id="",Foochow TV-2 TV Series
http://live.zohi.tv/video/s10001-yspd-2/index.m3u8
#EXTINF:-1 tvg-id="",Foochow TV-3 Life
http://live.zohi.tv/video/s10001-shpd-3/index.m3u8
#EXTINF:-1 tvg-id="",Foshan News TV
http://dslive.grtn.cn/fszh/sd/live.m3u8
#EXTINF:-1 tvg-id="",Fusung News TV
@ -113,8 +103,6 @@ http://1732e975z9.zicp.fun:8082/hls/20/index.m3u8
http://49.113.179.174:4022/udp/238.125.5.102:5140
#EXTINF:-1 tvg-id="JiaJiaCartoon.cn",JiaJia Cartoon
http://49.113.179.174:4022/udp/238.125.0.158:5140
#EXTINF:-1 tvg-id="LanzhouComprehensiveNewsChannel.cn",Lanzhou Comprehensive News Channel
https://liveplus.lztv.tv/xwzh/HD/live.m3u8
#EXTINF:-1 tvg-id="LaughterTheater.cn",Laughter Theater
http://49.113.179.174:4022/udp/238.125.2.159:5140
#EXTINF:-1 tvg-id="LiangshanTV.cn",Liangshan TV [Not 24/7]
@ -203,8 +191,6 @@ http://49.113.179.174:4022/udp/238.125.3.94:5140
http://php.jdshipin.com:8880/xztv.php?id=zy
#EXTINF:-1 tvg-id="YanbianCineseComprehensiveChannel.cn",Yanbian Cinese Comprehensive Channel
https://live.ybtvyun.com/video/s10016-6d4fe23a90b3/index.m3u8
#EXTINF:-1 tvg-id="YanbianTV1.cn",Yanbian TV 1
https://live.ybtvyun.com/video/s10016-ca5bdbc3f06d/index.m3u8
#EXTINF:-1 tvg-id="YicaiTV.cn",Yicai TV
http://49.113.179.174:4022/udp/238.125.0.165:5140
#EXTINF:-1 tvg-id="ZhejiangInternationalChannel.cn",Zhejiang TV International
@ -217,12 +203,6 @@ http://123.146.162.24:8013/tslslive/vWlnEzU/hls/live_sd.m3u8
http://123.146.162.24:8013/tslslive/URetCnP/hls/live_sd.m3u8
#EXTINF:-1 tvg-id="",万州综合 (576p) [Not 24/7]
http://123.146.162.24:8013/tslslive/noEX9SG/hls/live_sd.m3u8
#EXTINF:-1 tvg-id="",三明公共 (720p) [Not 24/7]
https://stream.smntv.cn/smtv2/playlist.m3u8
#EXTINF:-1 tvg-id="",三明新闻综合 (720p) [Not 24/7]
https://stream.smntv.cn/smtv1/playlist.m3u8
#EXTINF:-1 tvg-id="",上海金山电视台 (270p)
https://live.mudu.tv/watch/4zbn2f.m3u8
#EXTINF:-1 tvg-id="",上虞1新闻综合 (720p) [Not 24/7]
https://l.cztvcloud.com/channels/lantian/SXshangyu1/720p.m3u8
#EXTINF:-1 tvg-id="",上虞3新商都 (720p) [Not 24/7]
@ -231,10 +211,6 @@ https://l.cztvcloud.com/channels/lantian/SXshangyu3/720p.m3u8
https://l.cztvcloud.com/channels/lantian/SXshangyu2/720p.m3u8
#EXTINF:-1 tvg-id="ChinaWeatherChannel.cn@SD",中国气象 (576p) [Not 24/7]
http://hls.weathertv.cn/tslslive/qCFIfHB/hls/live_sd.m3u8
#EXTINF:-1 tvg-id="CTiNews.tw@SD",中天新聞 (1080p) [Not 24/7]
http://seb.sason.top/sc/ztxw_fhd.m3u8
#EXTINF:-1 tvg-id="CTVNewsChannel.tw@SD",中視新聞 (1080p) [Geo-blocked]
http://seb.sason.top/sc/zsxw_fhd.m3u8
#EXTINF:-1 tvg-id="",丰宁综合
https://jwliveqxzb.hebyun.com.cn/fengningzonghe/fengningzonghe.m3u8
#EXTINF:-1 tvg-id="",之江纪录
@ -247,8 +223,6 @@ http://33809.hlsplay.aodianyun.com/guangdianyun_33809/tv_channel_171.m3u8
http://tvdrs.wsrtv.com.cn:8100/channellive/ch2.flv
#EXTINF:-1 tvg-id="",云南 文山综合台 (1080p) [Not 24/7]
http://tvdrs.wsrtv.com.cn:8100/channellive/ch1.flv
#EXTINF:-1 tvg-id="",云南 红河综合台 (1080p)
https://file.hhtv.cc/cms/videos/nmip-media/channellive/channel1/playlist.m3u8
#EXTINF:-1 tvg-id="YunnanSatelliteTV.cn@SD",云南卫视 (1080p)
https://hwapi.yunshicloud.com/8xughf/e0bx15.m3u8
#EXTINF:-1 tvg-id="YunnanSatelliteTV.cn@SD",云南卫视 (576p)
@ -283,22 +257,14 @@ http://220.180.110.101:8083/videos/live/33/59/NC7XQdEveyncq/NC7XQdEveyncq.m3u8
http://221.233.242.239:280/live/71/playlist.m3u8
#EXTINF:-1 tvg-id="",仙桃生活文體 (576p)
http://221.233.242.239:280/live/72/playlist.m3u8
#EXTINF:-1 tvg-id="",任丘文娱
https://jwcdnqx.hebyun.com.cn/live/rqtv2/1500k/tzwj_video.m3u8
#EXTINF:-1 tvg-id="YouManCartoonChannel.cn",优漫卡通 (576p)
http://183.207.249.15/PLTV/4/224/3221225933/index.m3u8
#EXTINF:-1 tvg-id="YouManCartoonChannel.cn",优漫卡通 (576p)
http://223.110.243.171/PLTV/3/224/3221226982/index.m3u8
#EXTINF:-1 tvg-id="",优视 (720p)
https://1-fss24-s0.streamhoster.com/lv_uchannel/_definst_/broadcast1/chunklist.m3u8
#EXTINF:-1 tvg-id="",优视 (720p) [Not 24/7]
https://1-fss24-s0.streamhoster.com/lv_uchannel/broadcast1/playlist.m3u8
#EXTINF:-1 tvg-id="",余姚姚江文化 (576p)
https://l.cztvcloud.com/channels/lantian/SXyuyao3/720p.m3u8
#EXTINF:-1 tvg-id="",余姚新闻综合 (576p)
https://l.cztvcloud.com/channels/lantian/SXyuyao1/720p.m3u8
#EXTINF:-1 tvg-id="",侨乡 (1080p)
http://stream.jinjiang.tv/1/sd/live.m3u8
#EXTINF:-1 tvg-id="",兴隆综合
https://jwcdnqx.hebyun.com.cn/live/xlzh/1500k/tzwj_video.m3u8
#EXTINF:-1 tvg-id="BingtuanSatelliteTV.cn@SD",兵团卫视 (540p) [Not 24/7]
@ -367,8 +333,6 @@ http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8
http://223.110.245.163/ott.js.chinamobile.com/PLTV/3/224/3221227436/index.m3u8
#EXTINF:-1 tvg-id="BeijingSatelliteTV.cn",北京卫视 (1080p)
http://223.110.245.173/PLTV/4/224/3221227390/index.m3u8
#EXTINF:-1 tvg-id="BeijingSatelliteTV.cn",北京卫视 (1080p)
http://ott.js.chinamobile.com/PLTV/3/224/3221225574/index.m3u8
#EXTINF:-1 tvg-id="BeijingSatelliteTV.cn@SD",北京卫视 (1080p) [Not 24/7]
http://112.25.48.68/live/program/live/bjwshd/4000000/mnf.m3u8
#EXTINF:-1 tvg-id="BeijingSatelliteTV.cn",北京卫视 (1080p) [Not 24/7]
@ -415,14 +379,6 @@ http://223.110.245.155/ott.js.chinamobile.com/PLTV/3/224/3221227194/index.m3u8
https://live.nbs.cn/channels/njtv/xwzh/m3u8:500k/live.m3u8
#EXTINF:-1 tvg-id="",南京生活 (720p)
https://live.nbs.cn/channels/njtv/shpd/m3u8:500k/live.m3u8
#EXTINF:-1 tvg-id="",南宁公共 (720p) [Not 24/7]
https://hls.nntv.cn/nnlive/NNTV_PUB_A.m3u8
#EXTINF:-1 tvg-id="",南宁影视娱乐 (720p) [Not 24/7]
https://hls.nntv.cn/nnlive/NNTV_VOD_A.m3u8
#EXTINF:-1 tvg-id="",南宁新闻综合 (720p) [Not 24/7]
https://hls.nntv.cn/nnlive/NNTV_NEWS_A.m3u8
#EXTINF:-1 tvg-id="",南宁都市生活 (720p) [Not 24/7]
https://hls.nntv.cn/nnlive/NNTV_METRO_A.m3u8
#EXTINF:-1 tvg-id="",南川新闻综合 (360p)
http://221.5.213.4:30000/1111.m3u8
#EXTINF:-1 tvg-id="",南川旅游经济 (360p)
@ -441,12 +397,8 @@ http://112.25.48.68/live/program/live/xmws/1300000/mnf.m3u8
http://hnsf.chinashadt.com:2036/zhuanma/tv1.stream_360p/playlist.m3u8
#EXTINF:-1 tvg-id="CNDFilmDiscoveryChannel.cn@SD",发现之旅 (576p)
http://125.210.152.18:9090/live/FXZL_750.m3u8
#EXTINF:-1 tvg-id="",台視新聞 (1080p) [Not 24/7]
http://seb.sason.top/sc/tsxw_fhd.m3u8
#EXTINF:-1 tvg-id="",吉州新聞綜合 (1080p)
http://218.204.153.158/10.m3u8
#EXTINF:-1 tvg-id="",吉林7 (900p) [Not 24/7]
https://stream1.jlntv.cn/fzpd/sd/live.m3u8
#EXTINF:-1 tvg-id="JilinSatelliteTV.cn@SD",吉林卫视 (576p)
http://39.134.115.163:8080/PLTV/88888910/224/3221225680/index.m3u8
#EXTINF:-1 tvg-id="JilinSatelliteTV.cn@SD",吉林卫视 (576p)
@ -463,14 +415,10 @@ http://125.210.152.18:9090/live/JLWSHD_H265.m3u8
https://stream4.jlntv.cn/test2/sd/live.m3u8
#EXTINF:-1 tvg-id="",吉林市新闻综合 [Geo-blocked]
https://stream2.jlntv.cn/jilin1/sd/live.m3u8
#EXTINF:-1 tvg-id="",吉林乡村 (900p) [Not 24/7]
https://stream1.jlntv.cn/xcpd/sd/live.m3u8
#EXTINF:-1 tvg-id="",吴江新闻综合 (720p) [Not 24/7]
http://30515.hlsplay.aodianyun.com/lms_30515/tv_channel_239.m3u8
#EXTINF:-1 tvg-id="HezhengTV.cn",和政电视台
http://117.156.28.119/270000001111/1110000149/index.m3u8
#EXTINF:-1 tvg-id="",唯心電視 (480p)
https://mobile.ccdntech.com/transcoder/_definst_/vod164_Live/live/playlist.m3u8
#EXTINF:-1 tvg-id="",嘉佳卡通 (576p)
http://223.110.245.139/PLTV/4/224/3221227009/index.m3u8
#EXTINF:-1 tvg-id="",嘉佳卡通 (广东) (540p) [Not 24/7]
@ -537,12 +485,8 @@ http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225808/index.m3u8
http://media.fantv.hk/m3u8/archive/channel2_stream1.m3u8
#EXTINF:-1 tvg-id="CCTVWomensFashion.cn@SD",女性时尚 (576p)
http://223.110.245.169/PLTV/4/224/3221227026/index.m3u8
#EXTINF:-1 tvg-id="",如东新闻综合 (480p) [Not 24/7]
http://live.rdxmt.com/channels/rudong/news/flv:sd/live
#EXTINF:-1 tvg-id="",孟州电视台 (1080p) [Not 24/7]
http://live.dxhmt.cn:9081/tv/10883-1.m3u8
#EXTINF:-1 tvg-id="",孤注一掷清晰版
https://hd.ijycnd.com/play/zbqmMMkb/index.m3u8
#EXTINF:-1 tvg-id="NingxiaSatelliteChannel.cn@SD",宁夏卫视 (576p)
http://39.134.115.163:8080/PLTV/88888910/224/3221225726/index.m3u8
#EXTINF:-1 tvg-id="NingxiaSatelliteChannel.cn@SD",宁夏卫视 (576p)
@ -555,10 +499,6 @@ http://223.110.245.151/ott.js.chinamobile.com/PLTV/3/224/3221225842/index.m3u8
http://183.207.248.71/gitv/live1/G_NINGXIA/G_NINGXIA
#EXTINF:-1 tvg-id="NingxiaSatelliteChannel.cn@SD",宁夏卫视 (540p)
http://112.25.48.68/live/program/live/nxws/1300000/mnf.m3u8
#EXTINF:-1 tvg-id="",安徽 淮北公共 (720p)
http://live.0561rtv.cn/ggpd/hd/live.m3u8
#EXTINF:-1 tvg-id="",安徽 淮北综合 (720p)
http://live.0561rtv.cn/xwzh/hd/live.m3u8
#EXTINF:-1 tvg-id="",安徽 郎溪综合台 (1080p)
http://117.70.93.210:1935/live/xinwen/playlist.m3u8
#EXTINF:-1 tvg-id="",安徽 铜陵公共 (720p)
@ -579,22 +519,12 @@ http://223.110.254.203:6610/cntv/live1/HD-8000k-1080P-anhuistv/HD-8000k-1080P-an
http://183.207.248.71/cntv/live1/anhuistv/anhuistv
#EXTINF:-1 tvg-id="AnhuiSatelliteTV.cn",安徽卫视 (1080p) [Timeout]
http://112.25.48.68/live/program/live/ahwshd/4000000/mnf.m3u8
#EXTINF:-1 tvg-id="AnhuiSatelliteTV.cn",安徽卫视 (1080p) [Timeout]
http://zbbf2.ahtv.cn/live/749.m3u8
#EXTINF:-1 tvg-id="AnhuiSatelliteTV.cn",安徽卫视 (576p)
http://183.207.248.71/gitv/live1/AHWS/AHWS
#EXTINF:-1 tvg-id="AnhuiSatelliteTV.cn",安徽卫视 (576p)
http://183.207.249.5/PLTV/4/224/3221225800/index.m3u8
#EXTINF:-1 tvg-id="AnhuiSatelliteTV.cn",安徽卫视 (576p)
http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221225800/index.m3u8
#EXTINF:-1 tvg-id="",安徽小说评书广播 [Geo-blocked]
http://stream1.ahrtv.cn/xspsgb/sd/live.m3u8
#EXTINF:-1 tvg-id="",安徽戏曲广播 [Geo-blocked]
http://stream2.ahrtv.cn/xnxq/sd/live.m3u8
#EXTINF:-1 tvg-id="",安徽新闻综合广播 [Geo-blocked]
http://stream2.ahrtv.cn/xnxw/sd/live.m3u8
#EXTINF:-1 tvg-id="",安徽旅游广播 [Geo-blocked]
http://stream2.ahrtv.cn/lygb/sd/live.m3u8
#EXTINF:-1 tvg-id="",完美游戏 (1080p) [Not 24/7]
http://183.207.248.71/cntv/live1/wmyx/wmyx
#EXTINF:-1 tvg-id="",宜章新闻综合 (576p)
@ -633,8 +563,6 @@ http://223.110.243.171/PLTV/3/224/3221227258/index.m3u8
http://223.110.245.139/PLTV/4/224/3221227448/index.m3u8
#EXTINF:-1 tvg-id="ShandongTV.cn",山东卫视 (1080p)
http://223.110.254.207:6610/cntv/live1/HD-2500k-1080P-shandongstv/HD-2500k-1080P-shandongstv/1.m3u8
#EXTINF:-1 tvg-id="ShandongTV.cn",山东卫视 (1080p)
http://ott.js.chinamobile.com/PLTV/3/224/3221227258/index.m3u8
#EXTINF:-1 tvg-id="ShandongSatelliteTV.cn@SD",山东卫视 (720p)
http://125.210.152.18:9090/live/SDWSHD_H265.m3u8
#EXTINF:-1 tvg-id="ShandongTV.cn",山东卫视 (576p)
@ -655,8 +583,6 @@ http://livealone302.iqilu.com/iqilu/shpd.m3u8
http://livealone302.iqilu.com/iqilu/zypd.m3u8
#EXTINF:-1 tvg-id="ShandongTVQiluChannel.cn",山东齐鲁 (1080p) [Geo-blocked]
http://livealone302.iqilu.com/iqilu/qlpd.m3u8
#EXTINF:-1 tvg-id="",山西 朔州新闻台 (10p) [Not 24/7]
http://stream.sxsztv.com/live4/sd/live.m3u8
#EXTINF:-1 tvg-id="ShanxiTV.cn",山西卫视 (576p)
http://39.134.115.163:8080/PLTV/88888910/224/3221225730/index.m3u8
#EXTINF:-1 tvg-id="ShanxiTV.cn",山西卫视 (576p)
@ -675,14 +601,8 @@ http://live.hnxttv.com:9601/live/dspd/800K/tzwj_video.m3u8?BVUUID=C236454D-5355-
http://117.156.28.119/270000001111/1110000130/index.m3u8
#EXTINF:-1 tvg-id="",嵊州综合 (720p) [Not 24/7]
https://l.cztvcloud.com/channels/lantian/SXshengzhou1/720p.m3u8
#EXTINF:-1 tvg-id="",巴中公共 (1080p) [Not 24/7]
http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_247.m3u8
#EXTINF:-1 tvg-id="",巴中综合 (1080p) [Not 24/7]
http://30814.hlsplay.aodianyun.com/lms_30814/tv_channel_246.m3u8
#EXTINF:-1 tvg-id="",平乡电视台 (576p)
http://hbpx.chinashadt.com:2036/live/px1.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",广东 ‖ 清新综合台 (1080p)
https://hls.wiseqx.com/live/qxzh.m3u8
#EXTINF:-1 tvg-id="",广东 韶关公共台 (720p) [Not 24/7]
https://www.sgmsw.cn/videos/tv/201805/1308/9P424TC5M000AFO13CXK6GN6BOA889D2/hls/live.m3u8
#EXTINF:-1 tvg-id="",广东 韶关综合台 (720p) [Not 24/7]
@ -711,14 +631,10 @@ http://39.134.115.163:8080/PLTV/88888910/224/3221225731/index.m3u8
http://scgctvshow.sctv.com/hdlive/kangba/1.m3u8
#EXTINF:-1 tvg-id="YanbianSatelliteTV.cn",康巴卫视 (576p)
http://223.110.245.139/PLTV/4/224/3221227008/index.m3u8
#EXTINF:-1 tvg-id="YanbianSatelliteTV.cn",延边卫视 (720p)
http://live.ybtvyun.com/video/s10016-7e5f23de35df/index.m3u8
#EXTINF:-1 tvg-id="YanbianSatelliteTV.cn",延边卫视 (576p)
http://223.110.245.139/PLTV/4/224/3221227002/index.m3u8
#EXTINF:-1 tvg-id="YanbianSatelliteTV.cn",延边卫视 (576p)
http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8
#EXTINF:-1 tvg-id="YanbianSatelliteTV.cn",延边卫视 (576p)
http://ott.js.chinamobile.com/PLTV/3/224/3221227002/index.m3u8
#EXTINF:-1 tvg-id="",延边新闻综合 [Geo-blocked]
https://stream2.jlntv.cn/jlyb/sd/live.m3u8
#EXTINF:-1 tvg-id="",建安电视台 (1080p) [Not 24/7]
@ -787,16 +703,8 @@ http://183.207.249.15/PLTV/3/224/3221225523/index.m3u8
http://223.110.243.136/PLTV/3/224/3221225523/index.m3u8
#EXTINF:-1 tvg-id="",新疆卫视 (540p)
http://112.25.48.68/live/program/live/xjws/1300000/mnf.m3u8
#EXTINF:-1 tvg-id="",新疆少儿 (720p) [Geo-blocked]
http://livehyw5.chinamcache.com/hyw/zb12.m3u8
#EXTINF:-1 tvg-id="",新疆汉语信息服务 (720p) [Geo-blocked]
http://livehyw5.chinamcache.com/hyw/zb11.m3u8
#EXTINF:-1 tvg-id="",新疆汉语综艺 (720p) [Geo-blocked]
http://livehyw5.chinamcache.com/hyw/zb04.m3u8
#EXTINF:-1 tvg-id="",新郑综合 (1080p) [Not 24/7]
http://live.dxhmt.cn:9081/tv/10184-1.m3u8
#EXTINF:-1 tvg-id="",旺苍新闻 (528p) [Not 24/7]
http://3g.dzsm.com/streamer/gycttv.m3u8
#EXTINF:-1 tvg-id="",星空衛視 (576p)
http://218.202.220.2:5000/nn_live.ts?id=STARTV
#EXTINF:-1 tvg-id="",晋中公共 (1080p) [Not 24/7]
@ -809,20 +717,8 @@ http://hbjx.chinashadt.com:1935/live/jx1.stream/playlist.m3u8
http://hbjx.chinashadt.com:1935/live/stream:jx1.stream_360p/playlist.m3u8
#EXTINF:-1 tvg-id="",智慧教育 (576p)
http://111.63.117.13:6060/030000001000/G_CETV-4/G_CETV-4.m3u8
#EXTINF:-1 tvg-id="",東光一套 (576p)
http://hbdg.chinashadt.com:1936/live/stream:dgtv1.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",東光二套 (576p)
http://hbdg.chinashadt.com:1936/live/stream:dgtv2.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",東光綜藝 (576p)
http://hbdg.chinashadt.com:1936/live/stream:dgzy.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",松原新闻综合 [Geo-blocked]
https://stream2.jlntv.cn/sytv/sd/live.m3u8
#EXTINF:-1 tvg-id="",武汉外语 (576p)
http://stream.appwuhan.com/6tzb/sd/live.m3u8
#EXTINF:-1 tvg-id="",武汉文体 (480p)
http://stream.appwuhan.com/5tzb/sd/live.m3u8
#EXTINF:-1 tvg-id="",武汉经济 (360p)
http://stream.appwuhan.com/4tzb/sd/live.m3u8
#EXTINF:-1 tvg-id="",武进新闻 (576p) [Not 24/7]
https://live.wjyanghu.com/live/CH1.m3u8
#EXTINF:-1 tvg-id="",武进生活 (576p) [Not 24/7]
@ -833,8 +729,6 @@ http://jxyx.chinashadt.com:2036/live/1002.stream/playlist.m3u8
http://jxyx.chinashadt.com:2036/live/1004.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",永新电视二套 (576p)
http://jxyx.chinashadt.com:2036/live/1003.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",江津文化旅游 (576p)
http://222.179.155.21:1935/ch2.m3u8
#EXTINF:-1 tvg-id="",江津新闻综合 (480p)
http://222.179.155.21:1935/ch1.m3u8
#EXTINF:-1 tvg-id="",江津经济生活 (480p)
@ -941,8 +835,6 @@ http://121.19.134.246:808/hls/20/index.m3u8
http://121.19.134.246:808/hls/21/index.m3u8
#EXTINF:-1 tvg-id="HenanTVSatellite.cn",河南卫视 (576p)
http://183.207.248.71/cntv/live1/henanstv/henanstv
#EXTINF:-1 tvg-id="HenanTVSatellite.cn",河南卫视 (576p)
http://ott.js.chinamobile.com/PLTV/3/224/3221225815/index.m3u8
#EXTINF:-1 tvg-id="HenanTVSatellite.cn",河南卫视 (540p)
http://112.25.48.68/live/program/live/hnws/1300000/mnf.m3u8
#EXTINF:-1 tvg-id="HeyuanPublicTV.cn@SD",河源公共 (540p)
@ -951,24 +843,6 @@ https://tmpstream.hyrtv.cn/hygg/sd/live.m3u8
https://tmpstream.hyrtv.cn/xwzh/sd/live.m3u8
#EXTINF:-1 tvg-id="",洪雅新闻综合 (1080p)
http://117.172.215.250:8083/videos/live/35/39/GQVbrgob5CGJM/GQVbrgob5CGJM.m3u8
#EXTINF:-1 tvg-id="",浙江6套 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel06/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江休闲 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel06/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江国际 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel10/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江少儿 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel08/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江教育 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel04/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江新闻 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel07/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江易购 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel11/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江留学 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel09/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 浙江经济 (720p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel03/720p.m3u8
#EXTINF:-1 tvg-id="",浙江 绍兴影视 (720p)
http://live.shaoxing.com.cn/video/s10001-sxtv3/index.m3u8
#EXTINF:-1 tvg-id="",浙江 绍兴综合 (576p)
@ -997,10 +871,6 @@ http://223.110.245.143/ott.js.chinamobile.com/PLTV/3/224/3221227483/index.m3u8
http://223.110.245.159/ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8
#EXTINF:-1 tvg-id="ZhejiangSatelliteTV.cn",浙江卫视 (1080p)
http://223.110.254.210:6610/cntv/live1/zhejiangstv/zhejiangstv/1.m3u8
#EXTINF:-1 tvg-id="ZhejiangSatelliteTV.cn",浙江卫视 (1080p)
http://ott.js.chinamobile.com/PLTV/3/224/3221227393/index.m3u8
#EXTINF:-1 tvg-id="ZhejiangSatelliteTV.cn",浙江卫视 (1080p)
https://hw-m-l.cztv.com/channels/lantian/channel01/1080p.m3u8
#EXTINF:-1 tvg-id="ZhejiangSatelliteTV.cn",浙江卫视 (576p)
http://183.207.248.71/gitv/live1/G_ZHEJIANG/G_ZHEJIANG
#EXTINF:-1 tvg-id="",浙江国际 (1080p)
@ -1011,48 +881,26 @@ https://qiniup-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8
https://ali-m-l.cztv.com/channels/lantian/channel010/1080p.m3u8
#EXTINF:-1 tvg-id="ZhejiangChildrensChannel.cn",浙江少儿 (1080p)
https://qiniup-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8
#EXTINF:-1 tvg-id="ZhejiangChildrensChannel.cn",浙江少儿 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel08/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江少儿
https://ct-m-l.cztv.com/channels/lantian/channel008/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江影视 (720p)
https://qiniup-m-l.cztv.com/channels/lantian/channel005/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江教科
https://ali-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江教科影视 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel004/1080p.m3u8
#EXTINF:-1 tvg-id="ZhejiangDigitalTimesChannel.cn",浙江数码时代 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel012/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江新闻
https://ali-m-l.cztv.com/channels/lantian/channel007/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江民生
https://ali-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8
#EXTINF:-1 tvg-id="ZhejiangMinshengLeisure.cn",浙江民生休闲 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel006/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江留学 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel09/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江经济
https://ali-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8
#EXTINF:-1 tvg-id="ZhejiangEconomicChannel.cn",浙江经济生活 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel003/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江钱江 (1080p)
https://hw-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江钱江 (1080p) [Not 24/7]
https://hw-m-l.cztv.com/channels/lantian/channel02/1080p.m3u8
#EXTINF:-1 tvg-id="",浙江钱江
https://ali-m-l.cztv.com/channels/lantian/channel002/1080p.m3u8
#EXTINF:-1 tvg-id="HainanSatelliteTV.cn",海南卫视 (720p) [Not 24/7]
http://livelyws.chinamcache.com/lyws/zb01.m3u8?auth_key=1593241343-0-0-90b80e74457c94b2015f9428a1cb9b0e
#EXTINF:-1 tvg-id="HainanSatelliteTV.cn",海南卫视 (576p)
http://39.134.115.163:8080/PLTV/88888910/224/3221225722/index.m3u8
#EXTINF:-1 tvg-id="HainanSatelliteTV.cn",海南卫视 (576p)
http://183.207.248.11/PLTV/4/224/3221225810/index.m3u8
#EXTINF:-1 tvg-id="HainanSatelliteTV.cn",海南卫视 (540p)
http://112.25.48.68/live/program/live/lyws/1300000/mnf.m3u8
#EXTINF:-1 tvg-id="",海南州藏語頻道 (480p)
http://live.hnzzzzzdst.com/channel1/sd/live.m3u8
#EXTINF:-1 tvg-id="",海盐新闻 (720p)
http://haiyan.liveyun.hoge.cn/xwpd/sd/live.m3u8
#EXTINF:-1 tvg-id="",海西州综合 (576p)
http://stream.haixitv.cn/1/sd/live.m3u8
#EXTINF:-1 tvg-id="",涡阳新闻综合 (360p)
@ -1079,8 +927,6 @@ http://223.110.243.171/PLTV/3/224/3221227217/index.m3u8
http://223.110.245.139/PLTV/4/224/3221227307/index.m3u8
#EXTINF:-1 tvg-id="ShenzhenSatelliteTV.cn",深圳卫视 (1080p) [Not 24/7]
http://183.207.248.71/cntv/live1/HD-2500k-1080P-shenzhenstv/HD-2500k-1080P-shenzhenstv
#EXTINF:-1 tvg-id="",湖北 荆门公共台 (1080p) [Geo-blocked]
http://jingmen.live.cjyun.org/video/s10101-jmggpd.m3u8
#EXTINF:-1 tvg-id="HubeiSatelliteTV.cn",湖北卫视 (1080p)
http://39.134.115.163:8080/PLTV/88888910/224/3221225699/index.m3u8
#EXTINF:-1 tvg-id="HubeiSatelliteTV.cn",湖北卫视 (1080p)
@ -1097,8 +943,6 @@ http://223.110.245.153/ott.js.chinamobile.com/PLTV/3/224/3221227211/index.m3u8
http://223.110.245.170/PLTV/3/224/3221227211/index.m3u8
#EXTINF:-1 tvg-id="HubeiSatelliteTV.cn",湖北卫视 (1080p)
http://223.110.254.136:6610/cntv/live1/HD-2500k-1080P-hubeistv/HD-2500k-1080P-hubeistv/1.m3u8
#EXTINF:-1 tvg-id="HubeiSatelliteTV.cn",湖北卫视 (1080p)
http://ott.js.chinamobile.com/PLTV/3/224/3221227565/index.m3u8
#EXTINF:-1 tvg-id="HubeiSatelliteTV.cn",湖北卫视 (576p)
http://183.207.248.71/gitv/live1/G_HUBEI/G_HUBEI
#EXTINF:-1 tvg-id="HubeiSatelliteTV.cn",湖北卫视 (576p)
@ -1169,8 +1013,6 @@ https://31182.hlsplay.aodianyun.com/lms_31182/tv_channel_175.m3u8
http://117.156.28.119/270000001111/1110000145/index.m3u8
#EXTINF:-1 tvg-id="",炫动卡通 (576p)
http://223.110.245.139/PLTV/4/224/3221226388/index.m3u8
#EXTINF:-1 tvg-id="DianzhangFinanceChannel.cn",点掌财经 (712p)
http://cclive.aniu.tv/live/anzb.m3u8
#EXTINF:-1 tvg-id="",甘肃公共 (540p) [Not 24/7]
https://hls.gstv.com.cn/49048r/3t5xyc.m3u8
#EXTINF:-1 tvg-id="GansuTV.cn",甘肃卫视 (1080p)
@ -1263,22 +1105,12 @@ http://111.63.117.13:6060/030000001000/G_CETV-2/G_CETV-2.m3u8
http://live.dxhmt.cn:9081/tv/11521-1.m3u8
#EXTINF:-1 tvg-id="",置业 (576p)
http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227037/index.m3u8
#EXTINF:-1 tvg-id="SinoVision.cn",美国中文电视 (406p) [Not 24/7]
https://jpts.sinovision.net/livestream.m3u8
#EXTINF:-1 tvg-id="",美国狗狗宠物 (1080p)
https://video.blivenyc.com/broadcast/prod/2061/22/desktop-playlist.m3u8
#EXTINF:-1 tvg-id="",耀才财经 (288p)
http://202.69.67.66:443/webcast/bshdlive-mobile/playlist.m3u8
#EXTINF:-1 tvg-id="",耀才财经
http://202.69.67.66/webcast/bshdlive-pc/playlist.m3u8
#EXTINF:-1 tvg-id="",肃州电视台 (1080p)
http://117.156.28.119/270000001111/1110000123/index.m3u8
#EXTINF:-1 tvg-id="",舟山公共生活 (720p)
http://live.wifizs.cn/ggsh/sd/live.m3u8
#EXTINF:-1 tvg-id="ZhoushanNewsComprehensiveChannel.cn",舟山新闻综合 (240p)
http://live.wifizs.cn/xwzh/sd/live.m3u8
#EXTINF:-1 tvg-id="",舟山群岛旅游 (720p)
http://live.wifizs.cn/qdly/sd/live.m3u8
#EXTINF:-1 tvg-id="",芜湖公共 (576p)
http://live1.wuhubtv.com/channel3/sd/live.m3u8
#EXTINF:-1 tvg-id="",芜湖新闻综合 (576p)
@ -1307,8 +1139,6 @@ http://palive.patv123.com:8091/live/xwpd_800K.m3u8
http://live1.wuhubtv.com/channel4/sd/live.m3u8
#EXTINF:-1 tvg-id="",蕭山生活頻道 (720p) [Not 24/7]
https://l.cztvcloud.com/channels/lantian/SXxiaoshan2/720p.m3u8
#EXTINF:-1 tvg-id="",袁州綜合頻道 (576p) [Not 24/7]
http://jxyz.chinashadt.com:8036/live/yz1.stream/playist.m3u8
#EXTINF:-1 tvg-id="XianSilkRoadChannel.cn",西安丝路 (404p) [Not 24/7]
http://stream2.xiancity.cn/xatv5/playlist.m3u8
#EXTINF:-1 tvg-id="",西安乐购购物 (180p) [Not 24/7]
@ -1327,12 +1157,6 @@ http://39.134.115.163:8080/PLTV/88888910/224/3221225723/index.m3u8
http://117.169.120.140:8080/live/xizangstv/.m3u8
#EXTINF:-1 tvg-id="",西藏卫视 (576p)
http://183.207.249.16/PLTV/3/224/3221225523/index.m3u8
#EXTINF:-1 tvg-id="",西藏卫视 (576p)
http://media.vtibet.com/masvod/HLSLive/9/hanyuTV_q1.m3u8
#EXTINF:-1 tvg-id="",西藏藏語 (576p)
http://media.vtibet.com/masvod/HLSLive/7/zangyuTV_q1.m3u8
#EXTINF:-1 tvg-id="",西青新闻综合 (1080p) [Not 24/7]
http://221.238.209.44:81/hls/live1.m3u8
#EXTINF:-1 tvg-id="",贵州卫视 (576p)
http://39.134.115.163:8080/PLTV/88888910/224/3221225728/index.m3u8
#EXTINF:-1 tvg-id="GuizhouTV.cn",贵州卫视 (576p)
@ -1379,8 +1203,6 @@ http://stream01.dqtv123.com:1935/live/xinwenzonghe.stream/playlist.m3u8
http://stream01.dqtv123.com:1935/live/diqingzangyu.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",通化新闻 [Geo-blocked]
https://stream2.jlntv.cn/tonghua1/sd/live.m3u8
#EXTINF:-1 tvg-id="TongzhouTV.cn",通州电视台 (720p)
http://pull.dayuntongzhou.com/live/tztv.m3u8
#EXTINF:-1 tvg-id="",邗江资讯 (576p)
http://223.110.245.139/PLTV/4/224/3221227154/index.m3u8
#EXTINF:-1 tvg-id="",邢台城生
@ -1473,10 +1295,6 @@ http://live.geermurmt.com/qhws/sd/live.m3u8
http://39.134.115.163:8080/PLTV/88888910/224/3221225727/index.m3u8
#EXTINF:-1 tvg-id="QinghaiTV.cn",青海卫视 (540p)
http://112.25.48.68/live/program/live/qhws/1300000/mnf.m3u8
#EXTINF:-1 tvg-id="",靖江新闻綜合 (720p) [Not 24/7]
http://58.222.151.43:1935/live/xwzhpc/playlist.m3u8
#EXTINF:-1 tvg-id="",靖江新闻綜合 (720p) [Not 24/7]
http://visit.jjbctv.com:1935/live/xwzhpc/playlist.m3u8
#EXTINF:-1 tvg-id="",靖江新闻綜合 (480p) [Not 24/7]
http://visit.jjbctv.com:1935/live/xwzhmb/playlist.m3u8
#EXTINF:-1 tvg-id="",静宁综合 (1080p)
@ -1507,8 +1325,6 @@ http://223.110.245.170/PLTV/3/224/3221227252/index.m3u8
http://125.210.152.18:9090/live/HLJWSHD_H265.m3u8
#EXTINF:-1 tvg-id="HeilongjiangTV.cn",黑龙江 (1080p)
http://223.110.245.161/ott.js.chinamobile.com/PLTV/3/224/3221227492/index.m3u8
#EXTINF:-1 tvg-id="HeilongjiangTV.cn",黑龙江 (1080p)
http://ott.js.chinamobile.com/PLTV/3/224/3221227252/index.m3u8
#EXTINF:-1 tvg-id="HeilongjiangTV.cn",黑龙江 (576p)
http://183.207.248.71/gitv/live1/G_HEILONGJIANG/G_HEILONGJIANG
#EXTINF:-1 tvg-id="",黑龙江卫 (1080p)
@ -1521,20 +1337,6 @@ http://39.134.115.163:8080/PLTV/88888910/224/3221225736/index.m3u8
http://183.207.249.36/PLTV/4/224/3221227323/index.m3u8
#EXTINF:-1 tvg-id="HeilongjiangTV.cn",黑龙江卫视 (1080p)
http://223.110.254.143:6610/cntv/live1/HD-8000k-1080P-heilongjiangstv/HD-8000k-1080P-heilongjiangstv/1.m3u8
#EXTINF:-1 tvg-id="",黔西南公共 (288p) [Geo-blocked]
http://live.qxndt.com/channel3/sd/live.m3u8
#EXTINF:-1 tvg-id="",黔西南综合 (288p) [Geo-blocked]
http://live.qxndt.com/channel2/sd/live.m3u8
#EXTINF:-1 tvg-id="DianzhangFinanceChannel.cn",點掌財經 (712p)
http://cclive2.aniu.tv/live/anzb.m3u8
#EXTINF:-1 tvg-id="",龙口图文 (576p)
http://yslk.chinashadt.com:1635/live/stream:di4.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",龙口新闻综合 (576p)
http://yslk.chinashadt.com:1635/live/stream:di1.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",龙口生活 (576p)
http://yslk.chinashadt.com:1635/live/stream:di2.stream/playlist.m3u8
#EXTINF:-1 tvg-id="",龙岩综合 (540p)
http://stream.lytv.net.cn/2/sd/live.m3u8
#EXTINF:-1 tvg-id="GoldenEagleCartoon.cn",Golden Eagle Cartoon
http://1.24.190.98:10080/hls/51/index.m3u8
#EXTINF:-1 tvg-id="NeiMonggolTV2MongolianCultureChannel.cn",Nei Monggol TV 2 Mongolian Culture Channel
@ -1567,3 +1369,23 @@ https://play-live-hls.jxtvcn.com.cn/live-city/tv_jxtv5.m3u8
https://play-live-hls.jxtvcn.com.cn/live-city/tv_jxtv3.m3u8
#EXTINF:-1 tvg-id="JiangxiCityChannel.cn",Jiangxi City Channel
https://play-live-hls.jxtvcn.com.cn/live-city/tv_jxtv2.m3u8
#EXTINF:-1 tvg-id="PanzihihuaCultureTourismLifeChannel.cn",Panzihihua Culture Tourism & Life Channel
https://live.pzhkai.com/wlshtl/sd/live.m3u8?_upt=f156a1051729836828
#EXTINF:-1 tvg-id="PanzihihuaNewsChannel.cn",Panzihihua News Channel
https://live.pzhkai.com/xwzhtl/sd/live.m3u8?_upt=6a1ad5741729836768
#EXTINF:-1 tvg-id="TonghuaTV.cn",Tonghua TV
https://lsfb.avap.jilintv.cn/zqvk7vpj/channel/43ea5771aa44421591f9dfd2b71f1b9b/index.m3u8
#EXTINF:-1 tvg-id="JilinRuralChannel.cn",Jilin Rural Channel
https://lsfb.avap.jilintv.cn/zqvk7vpj/channel/3ffc4824dce54b92be185555923ce382/index.m3u8
#EXTINF:-1 tvg-id="JilinMovieChannel.cn",Jilin Movie Channel
https://lsfb.avap.jilintv.cn/zqvk7vpj/channel/906341e6f19b4c4bacdc89941eb85d12/index.m3u8
#EXTINF:-1 tvg-id="JilinLifestyleChannel.cn",Jilin Lifestyle Channel
https://lsfb.avap.jilintv.cn/zqvk7vpj/channel/0a76740c72b74fabae611845aa21e06a/index.m3u8
#EXTINF:-1 tvg-id="JilinCityChannel.cn",Jilin City Channel
https://lsfb.avap.jilintv.cn/zqvk7vpj/channel/7e8474e6daea44ccaa5aa2300191439e/index.m3u8
#EXTINF:-1 tvg-id="GuangzhouTV.cn",Guangzhou TV
https://tencentplaybusiness.gztv.com/live/zonghes.m3u8
#EXTINF:-1 tvg-id="HarbinMovieChannel.cn",Harbin Movie Channel
https://stream.hrbtv.net/yspd/playlist.m3u8
#EXTINF:-1 tvg-id="CCTV4Asia.cn@SD",CCTV-4 Asia
http://trn03.bozztv.com/gin-cctv4/index.m3u8

View File

@ -1,6 +1,4 @@
#EXTM3U
#EXTINF:-1 tvg-id="CGTN.cn",CGTN (1080p)
https://english-livebkws.cgtn.com/live/encgtn.m3u8
#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p)
http://223.110.245.149/ott.js.chinamobile.com/PLTV/3/224/3221225917/index.m3u8
#EXTINF:-1 tvg-id="CGTN.cn",CGTN (576p)
@ -15,8 +13,6 @@ https://english-livebkali.cgtn.com/live/doccgtn.m3u8
https://news.cgtn.com/resource/live/document/cgtn-doc.m3u8
#EXTINF:-1 tvg-id="CGTNSpanish.cn",CGTN Español (1080p)
https://espanol-livews.cgtn.com/hls/LSveOGBaBw41Ea7ukkVAUdKQ220802LSTexu6xAuFH8VZNBLE1ZNEa220802cd/playlist.m3u8
#EXTINF:-1 tvg-id="CGTNSpanish.cn",CGTN Español (576p)
https://livees.cgtn.com/1000e/prog_index.m3u8
#EXTINF:-1 tvg-id="CGTNSpanish.cn",CGTN Español (576p) [Not 24/7]
https://news.cgtn.com/resource/live/espanol/cgtn-e.m3u8
#EXTINF:-1 tvg-id="CGTNFrench.cn",CGTN Français (1080p) [Not 24/7]

View File

@ -1,140 +1,60 @@
#EXTM3U
#EXTINF:-1 tvg-id="AgendaAlDiaTV.co",Agenda Al Día TV (720p)
https://cp.panelchs.com:1936/8156/8156/playlist.m3u8
#EXTINF:-1 tvg-id="Amordiscos.co",Amordiscos (540p) [Geo-blocked]
https://canal.mediaserver.com.co/live/canalamordiscos.m3u8
#EXTINF:-1 tvg-id="ANCTelevision.co",ANC Televisión (480p) [Not 24/7]
https://canal.mediaserver.com.co/live/ANCTELEVISION.m3u8
#EXTINF:-1 tvg-id="ATNTelevision.co",ATN Televisión (640p)
https://59ef525c24caa.streamlock.net/atntelevision/atntelevision/playlist.m3u8
#EXTINF:-1 tvg-id="ATV.co",ATV (360p) [Not 24/7]
https://movil.ejeserver.com/live/verteve.m3u8
#EXTINF:-1 tvg-id="ATV.co",ATV (360p) [Not 24/7]
https://video.ejeserver.com/live/verteve.m3u8
#EXTINF:-1 tvg-id="AvivamientoTV.co",Avivamiento TV (1080p) [Not 24/7]
https://s1.abntelevision.com/avivamientoabr/stream/avivamientohd/avivamientohd/playlist.m3u8
#EXTINF:-1 tvg-id="AzufralCanalRegional.co",Azufral Canal Regional (720p) [Not 24/7]
https://tvlatina.live:1936/8020/8020/playlist.m3u8
#EXTINF:-1 tvg-id="CanalVisionDorada.co",Bum Televisión (720p) [Not 24/7]
https://movil.ejeserver.com/live/visiondorada.m3u8
#EXTINF:-1 tvg-id="CanalVisionDorada.co",Bum Televisión (720p) [Not 24/7]
https://video.ejeserver.com/live/visiondorada.m3u8
#EXTINF:-1 tvg-id="C4Television.co",C4 Televisión (720p) [Not 24/7]
https://eu1.servers10.com:8081/8148/index.m3u8
#EXTINF:-1 tvg-id="CableSurTV.co",Cable Sur TV (720p)
https://tvlatina.live:1936/8012/8012/playlist.m3u8
#EXTINF:-1 tvg-id="Cablenoticias.co",Cablenoticias (1080p)
https://5ea86ddd14ce7.streamlock.net/live/cable09061970/playlist.m3u8
#EXTINF:-1 tvg-id="CaliTV.co",Cali TV (540p) [Not 24/7]
https://5ab772334c39c.streamlock.net/live-calitv/calitv1/playlist.m3u8
#EXTINF:-1 tvg-id="CampoTelevision.co",Campo Televisión (720p)
https://video17.virtualtronics.com/streamer/canalcampotv.m3u8
#EXTINF:-1 tvg-id="Canal1.co",Canal 1 (1080p) [Geo-blocked]
https://mdstrm.com/live-stream-playlist/5a5e1c2568b1910913db5fe2.m3u8
#EXTINF:-1 tvg-id="Canal2AlpavisionIbague.co",Canal 2 Alpavisión Ibagué (720p) [Not 24/7]
https://stmv4.voxtvhd.com.br/alpavisionibague/alpavisionibague/playlist.m3u8
#EXTINF:-1 tvg-id="Canal2AlpavisionNeiva.co",Canal 2 Alpavisión Neiva (720p) [Not 24/7]
https://stmv1.voxtvhd.com.br/alpavision/alpavision/playlist.m3u8
#EXTINF:-1 tvg-id="Canal2.co",Canal 2 Cali (720p)
https://video13.virtualtronics.com/streamer/canal2.m3u8
#EXTINF:-1 tvg-id="Canal8Sincelejo.co",Canal 8 Sincelejo (480p)
https://glb.bozztv.com/glb/ssh101/envivocanal8/index.m3u8
#EXTINF:-1 tvg-id="Canal8TVPlus.co",Canal 8 TV+ (720p)
https://movil.ejeserver.com/live/canal8tv.m3u8
#EXTINF:-1 tvg-id="Canal8TVPlus.co",Canal 8 TV+ (720p)
https://video.ejeserver.com/live/canal8tv.m3u8
#EXTINF:-1 tvg-id="Canal9.co",Canal 9 Cosespu (720p)
https://video2.lhdserver.es/canal9cosespu/live.m3u8
#EXTINF:-1 tvg-id="Canal10SOLTV.co",Canal 10 SOL TV (1080p)
http://190.211.140.89:8081/SVTranscoder/SOLTVabr.stream/playlist.m3u8
#EXTINF:-1 tvg-id="Canal14Codazzi.co",Canal 14 Codazzi (720p) [Not 24/7]
https://eu1.servers10.com:8081/8056/index.m3u8
#EXTINF:-1 tvg-id="Canal14Regional.co",Canal 14 Regional (720p) [Not 24/7]
https://glb.bozztv.com/glb/ssh101/videoenvivo/playlist.m3u8
#EXTINF:-1 tvg-id="Canal55TelemoriscoTV.co",Canal 55 Telemorisco TV (720p)
http://canal.mediaserver.com.co/live/telemorisco.m3u8
#EXTINF:-1 tvg-id="CanalCapital.co",Canal Capital (1080p)
https://cdns.livewave.co:8081/ccapitallive/index.m3u8
#EXTINF:-1 tvg-id="CanalCineDios.co",Canal Cine Dios (480p)
https://canal.mediaserver.com.co/live/cinedios.m3u8
#EXTINF:-1 tvg-id="CanalDos.co",Canal Dos Yopal (720p)
http://131.221.41.94/hls/canal2.m3u8
#EXTINF:-1 tvg-id="CanalDos.co",Canal Dos Yopal (720p) [Not 24/7]
https://canaldos.internetinalambrico.com.co:1936/live/canal2.stream/playlist.m3u8
#EXTINF:-1 tvg-id="CanalINFOTV.co",Canal INFO TV (1080p) [Not 24/7]
https://glb.bozztv.com/glb/ssh101/infotv01/playlist.m3u8
#EXTINF:-1 tvg-id="CanalInstitucional.co",Canal Institucional (720p) [Not 24/7]
https://streaming.rtvc.gov.co/TV_CanalInstitucional_live/smil:live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalInstitucional.co",Canal Institucional (480p)
http://190.2.212.209:8050/play/a0lw
#EXTINF:-1 tvg-id="CanalMasTelevision.co",Canal Más Televisión (720p)
https://movil.ejeserver.com/live/teledoradahd.m3u8
#EXTINF:-1 tvg-id="CanalMasTelevision.co",Canal Más Televisión (720p)
https://video.ejeserver.com/live/teledoradahd.m3u8
#EXTINF:-1 tvg-id="CanalMundoVision.co",Canal Mundo Visión (720p)
https://movil.ejeserver.com/live/mundovisiontv.m3u8
#EXTINF:-1 tvg-id="CanalMundoVision.co",Canal Mundo Visión (720p)
https://video.ejeserver.com/live/mundovisiontv.m3u8
#EXTINF:-1 tvg-id="CanalNets.co",Canal Nets (720p) [Not 24/7]
https://movil.ejeserver.com/live/nets.m3u8
#EXTINF:-1 tvg-id="CanalNets.co",Canal Nets (720p) [Not 24/7]
https://video.ejeserver.com/live/nets.m3u8
#EXTINF:-1 tvg-id="CanalOracionConSon.co",Canal Oración Con Son (1080p)
https://canal.mediaserver.com.co/live/oracionconson.m3u8
#EXTINF:-1 tvg-id="CanalPyC.co",Canal PyC (480p) [Not 24/7]
https://glb.bozztv.com/glb/ssh101/pyctelevision/index.m3u8
#EXTINF:-1 tvg-id="CanalRCN.co",Canal RCN (480p)
http://190.2.212.209:8050/play/a0lt
#EXTINF:-1 tvg-id="CanalRegionalFTV.co",Canal Regional FTV (720p) [Not 24/7]
https://tvlatina.live:1936/8024/8024/playlist.m3u8
#EXTINF:-1 tvg-id="CanalSantaMartaTV.co",Canal Santa Marta TV (720p) [Not 24/7]
https://streaming.amelbasoluciones.co:19360/santamartalive/santamartalive.m3u8
#EXTINF:-1 tvg-id="CanalTelefamilia.co",Canal Telefamilia (360p) [Not 24/7]
https://stmv2.voxtvhd.com.br/telefamilia/telefamilia/playlist.m3u8
#EXTINF:-1 tvg-id="CanalTelePalmar.co",Canal TelePalmar (480p) [Not 24/7]
https://play.amelbasoluciones.co:3976/live/telepalmartvlive.m3u8
#EXTINF:-1 tvg-id="CanalTRO.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Canal TRO (1080p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/canaltro2live/smil:live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalTRO.co",Canal TRO (480p)
http://190.2.212.209:8050/play/a0m5
#EXTINF:-1 tvg-id="CanalTROPlus.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Canal TRO Plus (1080p) [Geo-blocked]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/canaltro2live/smil:troplus.smil/playlist.m3u8
#EXTINF:-1 tvg-id="",Caracol Noticias Ahora (720p)
https://mdstrm.com/live-stream-playlist/632391734be92a791e2750e6.m3u8
#EXTINF:-1 tvg-id="CaracolTV.co",Caracol TV (720p) [Geo-blocked]
https://mdstrm.com/live-stream-playlist/574463697b9817cf0886fc17.m3u8
#EXTINF:-1 tvg-id="CarareTV.co",Carare TV (1080p) [Not 24/7]
https://cp.panelchs.com:1936/8160/8160/playlist.m3u8
#EXTINF:-1 tvg-id="ChampionTV.co",Champion TV (1080p)
https://canal.mediaserver.com.co/live/ChampionTv.m3u8
#EXTINF:-1 tvg-id="CiudadelaTV.co",CiudadelaTV (614p) [Not 24/7]
https://cp.panelchs.com:1936/8096/8096/playlist.m3u8
#EXTINF:-1 tvg-id="CNCHDOnline.co",CNC HD Online (1080p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc6/cnc6/playlist.m3u8
#EXTINF:-1 tvg-id="CNCMedellin.co",CNC Medellín (720p) [Geo-blocked]
http://cncmedellin.ddns.net:1935/canalcnc/canalcnc_360p/playlist.m3u8
#EXTINF:-1 tvg-id="CNCPasto.co",CNC Pasto (720p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc9/cnc9/playlist.m3u8
#EXTINF:-1 tvg-id="GalerasTV.co",CNC Pasto Galeras TV (720p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc8/cnc8/playlist.m3u8
#EXTINF:-1 tvg-id="HitsChannel.co",CNC Pasto Hits Channel (1024p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc1/cnc1/playlist.m3u8
#EXTINF:-1 tvg-id="SentimientoVallenato.co",CNC Pasto Sentimiento Vallenato (720p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc4/cnc4/playlist.m3u8
#EXTINF:-1 tvg-id="SonCorazon.co",CNC Pasto Son Corazón (720p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc3/cnc3/playlist.m3u8
#EXTINF:-1 tvg-id="SonLatino.co",CNC Pasto Son Latino (1080p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc2/cnc2/playlist.m3u8
#EXTINF:-1 tvg-id="SonPopular.co",CNC Pasto Son Popular (720p) [Geo-blocked]
https://hvtraficonew.ddns.net/pastocnc7/cnc7/playlist.m3u8
#EXTINF:-1 tvg-id="CNCSantanderdeQuilichao.co",CNC Santander de Quilichao (480p)
https://movil.ejeserver.com/live/cncsantander.m3u8
#EXTINF:-1 tvg-id="CNCSantanderdeQuilichao.co",CNC Santander de Quilichao (480p)
https://video.ejeserver.com/live/cncsantander.m3u8
#EXTINF:-1 tvg-id="CNCTulua.co",CNC Tuluá (720p)
https://servers.amelbasoluciones.co:19360/cnctulualive/cnctulualive.m3u8
#EXTINF:-1 tvg-id="Cosmovision.co",Cosmovision (720p)
https://videohls2.cosmovision.tv/hls/sd.m3u8
#EXTINF:-1 tvg-id="Cristovision.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Cristovisión (480p)
@ -144,90 +64,30 @@ https://liveingesta118.cdnmedia.tv/cristovisiontvlive/smil:rtmp01.smil/playlist.
https://59a564764e2b6.streamlock.net/ctvbarranquilla/ctv/playlist.m3u8
#EXTINF:-1 tvg-id="Eduvision.co",Eduvision (1080p)
https://stmv3.voxtvhd.com.br/conex2/conex2/playlist.m3u8
#EXTINF:-1 tvg-id="EnCasaTV.co",En Casa TV (1080p) [Not 24/7]
https://cp.panelchs.com:1936/8112/8112/playlist.m3u8
#EXTINF:-1 tvg-id="Eureka.co",Eureka (1080p)
https://cdns.livewave.co:8081/eurekalive/index.m3u8
#EXTINF:-1 tvg-id="FamiliChannel.co",Famili Channel (720p)
https://cp.panelchs.com:1936/8012/8012/playlist.m3u8
#EXTINF:-1 tvg-id="FrecuenciaFTV.co",Frecuencia F TV (1080p)
https://tv.frecuenciaf.com/live/envivo.m3u8
#EXTINF:-1 tvg-id="FullMusica.co",Full Música (720p)
https://eu1.servers10.com:8081/8060/index.m3u8
#EXTINF:-1 tvg-id="HuellasTV.co",Huellas.TV (1080p)
https://cp.panelchs.com:1936/8170/8170/playlist.m3u8
#EXTINF:-1 tvg-id="HuilaTV.co",Huila TV (720p)
https://plataformavideo.com:19360/8020/8020.m3u8
#EXTINF:-1 tvg-id="INPOTV.co",INPO TV (720p)
https://cp.panelchs.com:1936/8108/8108/playlist.m3u8
#EXTINF:-1 tvg-id="LaCadenadelaBendicion.co",La Cadena de la Bendición (1080p) [Not 24/7]
https://glb.bozztv.com/glb/ssh101/cadenadelabend/index.m3u8
#EXTINF:-1 tvg-id="LaDespechadaTV.co",La Despechada TV (720p)
https://servidordevideo.com:3077/live/despechadalive.m3u8
#EXTINF:-1 tvg-id="LaHermandadSalsera.co",La Hermandad Salsera (1080p) [Not 24/7]
https://streamlov.alsolnet.com/hermandadsalsera/live/playlist.m3u8
#EXTINF:-1 tvg-id="LaHermosaStereoTV.co",La Hermosa Stereo TV (720p) [Not 24/7]
https://glb.bozztv.com/glb/ssh101/lhstv/index.m3u8
#EXTINF:-1 tvg-id="LunaEstereo1064FM.co",Luna Estéreo 106.4 FM (720p) [Not 24/7]
https://servervideo.intermediacolombia.com:19360/kychbbfhdz/kychbbfhdz.m3u8
#EXTINF:-1 tvg-id="MariquitaStereo.co",Mariquita Stereo (720p)
https://tvlatina.live:1936/8016/8016/playlist.m3u8
#EXTINF:-1 tvg-id="MasMusicaFM.co",MasMusica FM (720p)
https://movil.ejeserver.com/live/masmusica.m3u8
#EXTINF:-1 tvg-id="MasMusicaFM.co",MasMusica FM (720p)
https://video.ejeserver.com/live/masmusica.m3u8
#EXTINF:-1 tvg-id="MCITelevision.co",MCI Television
https://video.ejeserver.com/live/mcitelevision.m3u8
#EXTINF:-1 tvg-id="MelodyChannel.co",Melody Channel Colombia (540p)
https://canal.mediaserver.com.co/live/MelodyChannel.m3u8
#EXTINF:-1 tvg-id="MiGenteTV.co",Mi Gente TV (720p) [Geo-blocked]
https://byecableiptvnew3.ddns.net/ENVIVOMIGENTE/index.m3u8
#EXTINF:-1 tvg-id="MoniTV.co",MoniTV (720p) [Not 24/7]
https://servers.amelbasoluciones.co:19360/monitvlive/monitvlive.m3u8
#EXTINF:-1 tvg-id="MovieFe.co",MovieFe (720p) [Not 24/7]
https://vcp.myplaytv.com/moviefe/moviefe/playlist.m3u8
#EXTINF:-1 tvg-id="MulticanalTelevision.co",Multicanal Televisión (720p)
https://ssh101-fl.bozztv.com/ssh101/multicanal/index.m3u8
#EXTINF:-1 tvg-id="Noticiero90Minutos.co",Noticiero 90 Minutos (720p) [Not 24/7]
https://cdns.livewave.co:8081/90minutoslive/index.m3u8
#EXTINF:-1 tvg-id="NSTV.co",NSTV (1080p)
https://cp.panelchs.com:1936/8162/8162/playlist.m3u8
#EXTINF:-1 tvg-id="OasisTV.co",Oasis TV (720p) [Not 24/7]
https://5e85d90130e77.streamlock.net/6020/6020/playlist.m3u8
#EXTINF:-1 tvg-id="OndambientalTV.co",Ondambiental TV (360p)
https://stmv4.voxtvhd.com.br/ondastereo/ondastereo/playlist.m3u8
#EXTINF:-1 tvg-id="PSTelevision.co",PS Televisión (720p) [Not 24/7]
https://xhateaec.com/livestreams/19.crKOSL8FRzpid0MA.m3u8
#EXTINF:-1 tvg-id="PSCTelevision.co",PSC Televisión (720p) [Not 24/7]
https://stmv4.voxtvhd.com.br/psctv/psctv/playlist.m3u8
#EXTINF:-1 tvg-id="",PyC Televisión (720p) [Not 24/7]
https://ssh101-fl.bozztv.com/ssh101/pyctelevision/playlist.m3u8
#EXTINF:-1 tvg-id="RCNNovelas.co",RCN Novelas (480p)
http://190.2.212.209:8050/play/a0ox
#EXTINF:-1 tvg-id="RCNXtra.co",RCN Xtra (1080p)
https://latv-rcn-xtra-1-mx.tcl.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RDMTelevision.co",RDM Televisión (720p) [Not 24/7]
https://cp.panelchs.com:1936/8010/8010/playlist.m3u8
#EXTINF:-1 tvg-id="RedPlus.co",Red+ (1080p)
https://inforedvos.lcdn.claro.net.co/Content/HLS_HLS_DIR/Live/channel(REDMASHDWEB)/master.m3u8
#EXTINF:-1 tvg-id="Reyali.co",Reyali (614p)
https://eu1.servers10.com:8081/8090/index.m3u8
#EXTINF:-1 tvg-id="SalsaGordaTelevision.co",Salsa Gorda Television (720p)
https://ssh101-fl.bozztv.com/ssh101/qMUAZEy/index.m3u8
#EXTINF:-1 tvg-id="SantelTV.co",Santel TV (720p)
https://tvlatina.live:1936/8004/8004/playlist.m3u8
#EXTINF:-1 tvg-id="SatelCanal4.co",Satel Canal 4 (1080p)
https://server.asilivehd.com:3802/live/canal4live.m3u8
#EXTINF:-1 tvg-id="SenalColombia.co",Señal Colombia (1080p)
https://streaming.rtvc.gov.co/TV_Senal_Colombia_live/smil:live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="SinLimites.co",Sin Limites (480p)
http://190.2.212.209:8050/play/a0pa
#EXTINF:-1 tvg-id="SuramTV.co",Suram TV (1080p)
https://livetv.305streamhd.com:3111/live/suramtvlive.m3u8
#EXTINF:-1 tvg-id="TamesisTeVe.co",Támesis TeVe (614p) [Not 24/7]
https://tvlatina.live:1936/8018/8018/playlist.m3u8
#EXTINF:-1 tvg-id="TDIColombia.co",TDI Colombia (720p) [Not 24/7]
https://streaming.amelbasoluciones.co:8081/tdicolombia/index.m3u8
#EXTINF:-1 tvg-id="TeleAmiga.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Tele Amiga (480p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/teleamigatvlive/smil:dvrlive.smil/playlist.m3u8
@ -238,101 +98,57 @@ https://video.ejeserver.com/live/telesanjacinto.m3u8
#EXTINF:-1 tvg-id="TeleVid.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Tele Vid (1080p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/televidtvlive/smil:dvrlive.smil/playlist.m3u8?DVR=
#EXTINF:-1 tvg-id="Teleantioquia.co",Teleantioquia (480p)
http://190.2.212.209:8050/play/a0n1
#EXTINF:-1 tvg-id="Teleantioquia.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Teleantioquia (360p) [Not 24/7]
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:dvrlive.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Teleantioquia2.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Teleantioquia 2 (720p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/teleantioquialive/smil:live.smil/playlist.m3u8?DVR=
#EXTINF:-1 tvg-id="Telecafe.co",Telecafe (480p)
http://190.2.212.209:8050/play/a0ne
#EXTINF:-1 tvg-id="Telecafe.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Telecafé (720p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/telecafelive/smil:dvrlive.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Telecaribe.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Telecaribe (720p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/telecaribetvlive/smil:rtmp01.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Telecaribe.co",Telecaribe (480p)
http://190.2.212.209:8050/play/a0nc
#EXTINF:-1 tvg-id="TelecaribePlus.co" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Telecaribe Plus (720p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/telecaribetvlive/smil:rtmp02.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TeleCimitarra.co",TeleCimitarra (720p)
https://cp.panelchs.com:1936/8094/8094/playlist.m3u8
#EXTINF:-1 tvg-id="Teleislas.co",Teleislas (486p) [Not 24/7]
https://5ab772334c39c.streamlock.net/live-teleislas/teleislas/playlist.m3u8
#EXTINF:-1 tvg-id="Teleislas.co",Teleislas (480p)
http://190.2.212.209:8050/play/a0m6
#EXTINF:-1 tvg-id="TelemusicaTV.co",Telemúsica TV (540p) [Geo-blocked]
https://canal.mediaserver.com.co/live/telemusica.m3u8
#EXTINF:-1 tvg-id="TelenetTelevision.co",Telenet Televisión (478p)
https://cp.panelchs.com:1936/8058/8058/playlist.m3u8
#EXTINF:-1 tvg-id="Telepacifico.co",Telepacifico (480p)
http://190.2.212.209:8050/play/a0n3
#EXTINF:-1 tvg-id="Telepacifico.co",Telepacífico (1080p) [Not 24/7]
https://stream.logicideas.media/telepacifico-live/smil:live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Telepasto.co",Telepasto (360p) [Geo-blocked]
https://hvtraficonew.ddns.net/telepasto/telepasto.stream/index.m3u8
#EXTINF:-1 tvg-id="Telesangil.co",Telesangil (720p) [Not 24/7] [Geo-blocked]
https://hvtraficonew.ddns.net/tvsangil/tvsangil/index.m3u8
#EXTINF:-1 tvg-id="Televilla.co",Televilla (720p) [Not 24/7]
https://cp.panelchs.com:1936/8060/8060/playlist.m3u8
#EXTINF:-1 tvg-id="Trece.co",Trece (720p)
https://stream.logicideas.media/canaltrece-live/smil:live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TrecePlus.co",Trece + (720p)
https://stream.logicideas.media/canaltreceplus-live/smil:live1plus.smil/playlist.m3u8
#EXTINF:-1 tvg-id="TrecePlus.co",Trece+ (480p)
http://190.2.212.209:8050/play/a0nf
#EXTINF:-1 tvg-id="TropicalTV.co",Tropical TV (480p) [Not 24/7]
https://rpn3.bozztv.com/ssh101/ssh101/estvco/playlist.m3u8
#EXTINF:-1 tvg-id="TuKanal.co",Tu Kanal (1080p)
http://45.33.63.98/hls/abdi.m3u8
#EXTINF:-1 tvg-id="TuKanal.co",Tu Kanal (1080p)
https://envivo.tukanal.tv/hls/abdi.m3u8
#EXTINF:-1 tvg-id="TuUniversoTV.co",Tu Universo TV (720p)
https://5bf8041cb3fed.streamlock.net/TUUNIVERSOTV/TUUNIVERSOTV/playlist.m3u8
#EXTINF:-1 tvg-id="TVGracia.co",TV Gracia (720p)
https://streamyes.alsolnet.com/tvgracia/live/playlist.m3u8
#EXTINF:-1 tvg-id="TVIpiales.co",TV Ipiales (1080p)
https://movil.ejeserver.com/live/tvipiales.m3u8
#EXTINF:-1 tvg-id="TVIpiales.co",TV Ipiales (1080p)
https://video.ejeserver.com/live/tvipiales.m3u8
#EXTINF:-1 tvg-id="TVMojanaCanal4.co",TV Mojana Canal 4 (480p) [Not 24/7]
https://glb.bozztv.com/glb/ssh101/tvmojanacanal4/index.m3u8
#EXTINF:-1 tvg-id="TVPenol.co",TV Peñol (720p)
https://stmv1.voxtvhd.com.br/tvpenol/tvpenol/playlist.m3u8
#EXTINF:-1 tvg-id="TVSanJorge.co",TV San Jorge (1080p) [Not 24/7]
https://asucap.com/livestream/asucap_envivo.m3u8
#EXTINF:-1 tvg-id="TVNGlobal.co",TVN Global (720p)
https://tvlatina.live:1936/8006/8006/playlist.m3u8
#EXTINF:-1 tvg-id="VeoTelevision.co",Veo Televisión (720p) [Not 24/7]
https://movil.ejeserver.com/live/veotv.m3u8
#EXTINF:-1 tvg-id="VeoTelevision.co",Veo Televisión (720p) [Not 24/7]
https://video.ejeserver.com/live/veotv.m3u8
#EXTINF:-1 tvg-id="VidaNuevaTV.co",Vida Nueva TV (480p) [Not 24/7]
https://eu1.servers10.com:8081/vidanuevatv/index.m3u8
#EXTINF:-1 tvg-id="ViveTV.co",Vive TV Colombia (1080p)
http://192.144.113.132:1935/live/ViveTV/playlist.m3u8
#EXTINF:-1 tvg-id="WinSports.co",Win Sports (480p)
http://190.2.212.209:8050/play/a0n2
#EXTINF:-1 tvg-id="Zoom.co" http-referrer="https://canalzoom.org/senal-en-vivo",Zoom (1080p)
#EXTVLCOPT:http-referrer=https://canalzoom.org/senal-en-vivo
https://canalzoom.smoothcloud.co:3027/live/canalzoombr1live.m3u8
#EXTINF:-1 tvg-id="TDIColombia.co",TDI Colombia (720p)
https://streaming.amelbasoluciones.co:19360/tdicolombia/tdicolombia.m3u8
#EXTINF:-1 tvg-id="CanalCapital.co",Canal Capital (720p)
https://cdns.livewave.co:19360/canalcapital/canalcapital.m3u8
#EXTINF:-1 tvg-id="MulticanalTelevision.co",Multicanal Television (720p)
https://ssh101stream.ssh101.com/akamaissh101/ssh101/multicanal/playlist.m3u8
#EXTINF:-1 tvg-id="Telepacifico.co",Telepacifico (1080p)
https://play.cdn.enetres.net/6E5C615AA5FF4123ACAF0DAB57B7B8DC021/022/playlist.m3u8
#EXTINF:-1 tvg-id="NSTV.co",NSTV (720p)
https://cp.panelchs.com:1936/8038/8038/playlist.m3u8
#EXTINF:-1 tvg-id="NSTV.co@SD",NSTV (720p)
https://stmv4.voxtvhd.com.br/nstv/nstv/playlist.m3u8
#EXTINF:-1 tvg-id="NSTV.co",NSTV (720p)
http://138.186.23.7:22281/nstv/nstv/playlist.m3u8
#EXTINF:-1 tvg-id="Telepetroleo.co@SD",Telepetroleo
https://edge.teveo.net/live/AeAAAgAIAAE7A1IAyADIUCAAAAAAAAAAAmg0285AIAByAAAA/playlist.m3u8
#EXTINF:-1 tvg-id="CanalPyC.co@SD",Canal PyC
https://edge.teveo.net/live/AeAAAgAkAANqA1IAyADIUDAAAAGAAAAAAmg02rRAIAByAAAA/playlist.m3u8
#EXTINF:-1 tvg-id="EnlaceTelevision.co@SD",Enlace Television
https://edge.teveo.net/live/AeAAAgAFAADLA1IAyADIQCAAAAAAAAAAAmg0131AIAByAAAA/playlist.m3u8
#EXTINF:-1 tvg-id="SuramTV.co@SD",Suram TV
https://us.streaminghd.cl/suramtv/index.m3u8
#EXTINF:-1 tvg-id="MundoMas.co@SD",Mundo Mas
https://edge.teveo.net/live/AeAAAgA_AALTA1IAyADIUDAAAAGAAAAAAmg03eFAIAByAAAA/playlist.m3u8
#EXTINF:-1 tvg-id="Eureka.co",Eureka
https://cdns.livewave.co:19360/eurekatv/eurekatv.m3u8
#EXTINF:-1 tvg-id="SalsaGordaTelevision.co",Salsa Gorda Television (480p) [Not 24/7]
https://ssh101.bozztv.com/ssh101/qMUAZEy/playlist.m3u8
#EXTINF:-1 tvg-id="SalsaGordaTelevision.co",Salsa Gorda Television (480p) [Not 24/7]
https://ssh101stream.ssh101.com/akamaissh101/ssh101/qMUAZEy/playlist.m3u8
https://www.televinterserver.com:19360/salsagordatv/salsagordatv.m3u8

View File

@ -1,8 +1,8 @@
#EXTM3U
#EXTINF:-1 tvg-id="88Stereo.cr",88 Stereo (720p) [Not 24/7]
http://k3.usastreams.com/CableLatino/88stereo/playlist.m3u8
#EXTINF:-1 tvg-id="OPA.cr",¡OPA! (1080p)
https://opa.usastreams.com:3101/live/canalopalive.m3u8
#EXTINF:-1 tvg-id="OPA.cr@SD",¡OPA! (1080i) [Geo-blocked]
https://5fc584f3f19c9.streamlock.net:443/genteopa/videogenteopa/playlist.m3u8
#EXTINF:-1 tvg-id="AgrotendenciaTV.cr",Agrotendencia TV (1080p)
https://5fc584f3f19c9.streamlock.net/agrotendencia/videoagrotendencia_hls1/playlist.m3u8
#EXTINF:-1 tvg-id="AntenaSeisTV.cr",Antena Seis TV (720p) [Geo-blocked]
@ -29,8 +29,6 @@ https://alba-cr-repretel-c11.stream.mediatiquestream.com/index.m3u8
http://tvn.obix.tv:1935/TVN/CH14.stream_720p/playlist.m3u8
#EXTINF:-1 tvg-id="Canal17TVNosara.cr",Canal 17 TV Nosara
https://acceso.radiosportstv.online:3430/hybrid/play.m3u8
#EXTINF:-1 tvg-id="CaribeTVCR.cr",Caribe TV CR (720p)
https://rpn3.bozztv.com/ssh101/ssh101/sinart/playlist.m3u8
#EXTINF:-1 tvg-id="CartagoMediosTV.cr",Cartago Medios TV (720p)
https://tvdatta.com:3384/live/cartagomedioslive.m3u8
#EXTINF:-1 tvg-id="ColosalTV.cr",Colosal TV (720p) [Not 24/7]
@ -41,23 +39,15 @@ https://s1.tvdatta.com:3156/live/jimeneztvlive.m3u8
https://panel2.streamingtv-mediacp.online:1936/rudcmzwtnh/rudcmzwtnh/playlist.m3u8
#EXTINF:-1 tvg-id="CotoBrusTV.cr",Coto Brus TV (720p)
https://cloudvideo.servers10.com:8081/8030/index.m3u8
#EXTINF:-1 tvg-id="CristoVisionCanal31.cr",Cristo Visión Canal 31 (720p)
https://3a310f6ec721e6b362fcd22772b57f36a2fe6bb2.tabeelcr.com:8080/cristovision31/iptv.m3u8
#EXTINF:-1 tvg-id="Enlace.cr",Enlace (720p)
https://livecdn.enlace.plus/enlace/smil:enlace-hd.smil/playlist.m3u8
#EXTINF:-1 tvg-id="EnlaceJuvenil.cr",Enlace Juvenil (720p)
https://11554-1.b.cdn13.com/EJTV/smil:ejtv-hd.smil/playlist.m3u8
#EXTINF:-1 tvg-id="ExtremaTV.cr",Extrema TV (720p)
https://627bb251f23c7.streamlock.net:444/ExtremaTV/ExtremaTV/playlist.m3u8
#EXTINF:-1 tvg-id="FaroPuntarenasTV.cr",Faro Puntarenas TV (720p) [Not 24/7]
https://rpn3.bozztv.com/ssh101/ssh101/faroptv/playlist.m3u8
#EXTINF:-1 tvg-id="FUTV.cr" http-referrer="https://www.futvcr.com/",FUTV Costa Rica (720p)
#EXTVLCOPT:http-referrer=https://www.futvcr.com/
http://45.190.187.226:58092/play/a00q
#EXTINF:-1 tvg-id="GarabitoTV.cr",Garabito TV (720p)
https://59ef525c24caa.streamlock.net/garabitoTV/garabitotv/playlist.m3u8
#EXTINF:-1 tvg-id="GuatusoTV.cr",Guatuso TV (720p)
https://5cf4a2c2512a2.streamlock.net/8162/8162/master.m3u8
#EXTINF:-1 tvg-id="TicaVision.cr",HBTV TicaVisión (1080p)
https://62fc643fbf1aa.streamlock.net/HBTV/HBTV/playlist.m3u8
#EXTINF:-1 tvg-id="IQChannel.cr",IQ Channel (720p)
@ -68,12 +58,6 @@ http://k4.usastreams.com/limontv1/limontv1/playlist.m3u8
https://lstv.duckdns.org:449/hls/lstv.m3u8
#EXTINF:-1 tvg-id="LuzNacienteTV.cr",Luz Naciente TV (720p)
https://streeming.protoscr.com:3858/live/streeminglive.m3u8
#EXTINF:-1 tvg-id="MasCiclismoTV.cr",Más Ciclismo TV (720p)
https://ssh101.bozztv.com/ssh101/masciclismo/playlist.m3u8
#EXTINF:-1 tvg-id="MasCiclismoTV.cr",Más Ciclismo TV (720p)
https://vcp8.myplaytv.com:1936/masciclismo/masciclismo/playlist.m3u8
#EXTINF:-1 tvg-id="MeganetTV.cr",Meganet TV (720p)
https://250weu.bozztv.com/ssh101/ssh101/meganettv/playlist.m3u8
#EXTINF:-1 tvg-id="MetaVersusCR.cr",MetaVersus CR (480p)
https://vivo.solumedia.com:19360/metaversus/metaversus.m3u8
#EXTINF:-1 tvg-id="MultizonasTV.cr",Multizonas TV (720p)
@ -82,14 +66,10 @@ https://cloudvideo.servers10.com:8081/8068/index.m3u8
https://59ef525c24caa.streamlock.net/nicoyatv/nicoyatv/playlist.m3u8
#EXTINF:-1 tvg-id="NorteInformativoTV.cr",Norte Informativo TV (240p)
https://videohd.live:19360/8076/8076.m3u8
#EXTINF:-1 tvg-id="OldiesHits.cr",Oldies Hits (360p)
https://video01.logicahost.com.br/oldieshits/oldieshits/playlist.m3u8
#EXTINF:-1 tvg-id="QuinceUCR.cr",Quince UCR (720p) [Not 24/7]
http://163.178.170.127:1935/quinceucr/quinceucr/playlist.m3u8
#EXTINF:-1 tvg-id="RadioPuertoTV.cr",Radio Puerto TV (720p)
https://cloudvideo.servers10.com:8081/8256/index.m3u8
#EXTINF:-1 tvg-id="RetroTVPalmares.cr",Retro TV Palmarés (360p) [Not 24/7]
https://250weu.bozztv.com/ssh101/ssh101/tvretropalmares/playlist.m3u8
#EXTINF:-1 tvg-id="RetroxTV.cr@SD",Retrox TV (720p)
https://acceso.radiosportstv.online:3259/live/retroxtvlive.m3u8
#EXTINF:-1 tvg-id="RTTV.cr",RTTV (720p) [Not 24/7]
@ -116,34 +96,20 @@ https://5d16127744872.streamlock.net/TVUNO/TVUNO/playlist.m3u8
https://59ef525c24caa.streamlock.net/telebrunca/telebrunca/playlist.m3u8
#EXTINF:-1 tvg-id="Telefides.cr",Telefides (720p)
https://s2.cwebtv.net:4433/telefides/telefides/playlist.m3u8
#EXTINF:-1 tvg-id="TeleredTelevision.cr@SD",Telered Television (480p) [Not 24/7]
https://k20.usastreams.com:8081/telered/index.m3u8
#EXTINF:-1 tvg-id="Telesistema.cr",Telesistema (480p) [Not 24/7]
https://59ef525c24caa.streamlock.net/ARBtv/ARBtv/playlist.m3u8
#EXTINF:-1 tvg-id="TeleSURCostaRica.cr",TeleSUR Costa Rica (720p) [Not 24/7]
https://s1.tvdatta.com:3582/live/telesurlive.m3u8
#EXTINF:-1 tvg-id="Teletica7.cr" http-referrer="https://bradmax.com/client/embed-player/c7c83ebb46fa89529a7383d933e2038729f8e4c9_13428?id=tv7&mediaUrl=https://cdn01.teletica.com/TeleticaLiveStream/Stream/playlist_dvr.m3u8&mediaUrl2=https://6zklxk9bdw9b-hls-live.5centscdn.com/TeleticaLiveStream/d072c3a8dde8622c607ecd258fd628e8.sdp/playlist_dvr.m3u8",Teletica 7 (720p) [Geo-blocked]
#EXTVLCOPT:http-referrer=https://bradmax.com/client/embed-player/c7c83ebb46fa89529a7383d933e2038729f8e4c9_13428?id=tv7&mediaUrl=https://cdn01.teletica.com/TeleticaLiveStream/Stream/playlist_dvr.m3u8&mediaUrl2=https://6zklxk9bdw9b-hls-live.5centscdn.com/TeleticaLiveStream/d072c3a8dde8622c607ecd258fd628e8.sdp/playlist_dvr.m3u8
https://cdn01.teletica.com/TeleticaLiveStream/Stream/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="TicaTVPlus.cr",Tica TV+ (288p)
https://593b04c4c5670.streamlock.net/portalfoxmix/portalfoxmix/.m3u8
#EXTINF:-1 tvg-id="TigoSports.cr",Tigo Sports (Costa Rica)
https://acceso.radiosportstv.online:3795/stream/play.m3u8
#EXTINF:-1 tvg-id="TreceCostaRicaTelevision.cr",Trece Costa Rica Televisión (720p) [Not 24/7]
https://rpn3.bozztv.com/ssh101/ssh101/sinart13/playlist.m3u8
#EXTINF:-1 tvg-id="Trivision36.cr" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Trivisión 36 (1080p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160
https://liveingesta118.cdnmedia.tv/trivision36live/smil:dvrlive.smil/playlist.m3u8?DVR=
#EXTINF:-1 tvg-id="TVCurre.cr",TV Curré (720p) [Not 24/7]
http://k6.usastreams.online/Tvcurre/Tvcurre/playlist.m3u8
#EXTINF:-1 tvg-id="TVSantaCruz.cr",TV Santa Cruz (720p) [Not 24/7]
https://rtmp.info/tvsantacruz/envivo/playlist.m3u8
#EXTINF:-1 tvg-id="TVSurCanal9.cr",TV Sur Canal 9 (620p) [Not 24/7]
http://tv.ticosmedia.com:1935/TVSUR/TVSUR/playlist.m3u8
#EXTINF:-1 tvg-id="TVSurCanal14.cr",TV Sur Canal 14 (1080p)
https://k20.usastreams.com:8081/tvsur/index.m3u8
#EXTINF:-1 tvg-id="TVPlus.cr",TV+ Canal 54 (480p)
https://59ef525c24caa.streamlock.net/Tvpluscr/Tvpluscr/playlist.m3u8
#EXTINF:-1 tvg-id="UrbanoTV.cr",Urbano TV (720p)
https://59ef525c24caa.streamlock.net/tvurbano/tvurbano/playlist.m3u8
#EXTINF:-1 tvg-id="VideoTourChannel.cr",Video Tour Channel (480p) [Not 24/7]
@ -160,5 +126,16 @@ https://stmv.streamingvip.click/xpressojovenradiotv/xpressojovenradiotv/playlist
https://acceso.radiosportstv.online:3022/stream/play.m3u8
#EXTINF:-1 tvg-id="ZurquiTV.cr",Zurquí TV (720p)
https://videoserver.tmcreativos.com:19360/gesfnvpamn/gesfnvpamn.m3u8
#EXTINF:-1 tvg-id="RetroxTV.cr",Retrox TV (720p)
https://ssh101stream.ssh101.com/akamaissh101/ssh101/tvtvtv/playlist.m3u8
#EXTINF:-1 tvg-id="GAMTVcr.cr@SD",GAMTV.cr (720p)
https://v2.azulstream.com:8081/gamtv/gamtv/index.m3u8
#EXTINF:-1 tvg-id="Canal3KMKTV.cr@SD",Canal 3 KMK TV (1280p) [Not 24/7]
https://s3.tvdatta.com:3030/live/kmk3live.m3u8
#EXTINF:-1 tvg-id="TicaVision.cr@SD",TicaVision
https://5eac7b031d945.streamlock.net/TICAVISION/TICAVISION/playlist.m3u8
#EXTINF:-1 tvg-id="ColosalTV.cr@SD",Colosal TV
https://5eac7b031d945.streamlock.net/COLOSAL/COLOSAL/playlist.m3u8
#EXTINF:-1 tvg-id="Canal17TVNosara.cr@HD",Canal 17 TV Nosara (720p)
https://latamvdo.com:3870/hybrid/play.m3u8
#EXTINF:-1 tvg-id="TeleredTelevision.cr" http-referrer="https://teleredtelevision.com/",Telered Television (576p) [Geo-blocked]
#EXTVLCOPT:http-referrer=https://teleredtelevision.com/
https://k20.usastreams.com:8081/telered/index.m3u8

View File

@ -1,8 +1,6 @@
#EXTM3U
#EXTINF:-1 tvg-id="RadioTVSalOne.cv",Radio TV Sal One (720p)
https://lon.rtsp.me/r3ZnG6WN2HIRxPARhAirIQ/1713628621/hls/9QdykDAy.m3u8
#EXTINF:-1 tvg-id="TCSMTV.cv",TCSM (1080p)
https://blueeyecaboverde.com/cam1/memfs/e8e6696b-2102-45b9-9b5c-f9c101266d90.m3u8
#EXTINF:-1 tvg-id="TIVER.cv",TIVER (576p)
https://cdn.live.br1.jmvstream.com/w/AVJ-13550/playlist/playlist.m3u8
#EXTINF:-1 tvg-id="TVCidade.cv",TV Cidade (614p)

View File

@ -1,8 +1,6 @@
#EXTM3U
#EXTINF:-1 tvg-id="BonceTV.cw",Bonce TV (480p) [Not 24/7]
https://seswa.bonce.tv/hls/bonceswa.m3u8
#EXTINF:-1 tvg-id="",Curaçao Meterological Department
https://media.streambrothers.com:19360/8272/8272.m3u8
#EXTINF:-1 tvg-id="",Intermediate League Curaçao [Geo-blocked]
https://streannlivecariflix.cachefly.net/cariflix12/cariflix12/playlist.m3u8
#EXTINF:-1 tvg-id="NosPais.cw",Nos Païs (720p) [Not 24/7]

View File

@ -3,11 +3,6 @@
https://sc-kuzeykibrissmarttv.ercdn.net/adatv/bant1/playlist.m3u8
#EXTINF:-1 tvg-id="AlfaSport.cy",Alfa Sport (1080p) [Not 24/7]
https://dev.aftermind.xyz/edge-hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqx
#EXTINF:-1 tvg-id="AlfaSport.cy",Alfa Sport (1080p) [Not 24/7]
https://dev.aftermind.xyz/hls/unitrust/alfasports/index.m3u8?token=8TXWzhY3h6jrzqEqx
#EXTINF:-1 tvg-id="AlphaTVCyprus.cy" http-referrer="http://player.cloudskep.com/alphatmp/alphacy",Alpha TV Cyprus (720p) [Geo-blocked]
#EXTVLCOPT:http-referrer=http://player.cloudskep.com/alphatmp/alphacy
http://l4.cloudskep.com/alphatmp/acy/playlist.m3u8
#EXTINF:-1 tvg-id="ANT1Cyprus.cy",ANT1 Cyprus (1080p)
http://l2.cloudskep.com/ant1cm2/abr/playlist.m3u8
#EXTINF:-1 tvg-id="BRT1.cy",BRT 1 (720p) [Not 24/7]
@ -34,26 +29,16 @@ https://sc-kuzeykibrissmarttv.ercdn.net/kibrisgenctv/bant1/playlist.m3u8
https://sc-kuzeykibrissmarttv.ercdn.net/kanalt/bantp1/playlist.m3u8
#EXTINF:-1 tvg-id="KibrisTV.cy",Kibris TV (576p) [Not 24/7]
https://sc-kuzeykibrissmarttv.ercdn.net/kibristv/bant1/playlist.m3u8
#EXTINF:-1 tvg-id="OmegaChannel.cy",Omega Channel (1080p)
http://l1.cloudskep.com/tst/omcy/playlist.m3u8
#EXTINF:-1 tvg-id="OMONOIATV.cy",OMONOIA TV (684p)
http://62.233.57.226:8001/play/a00b00
#EXTINF:-1 tvg-id="OneChannelCyprus.cy",One Channel Cyprus (576p)
http://62.210.211.188:2095/play/a00e
#EXTINF:-1 tvg-id="RIK1.cy",RIK 1
http://l6.cloudskep.com/tvb6/rik1-1/mpeg.2ts
#EXTINF:-1 tvg-id="RIK2.cy",RIK 2
http://l6.cloudskep.com/tvb6/rik2-1/mpeg.2ts
#EXTINF:-1 tvg-id="RIKHD.cy",RIK HD (720p)
http://l6.cloudskep.com/tvb6/rikhd1/mpeg.2ts
#EXTINF:-1 tvg-id="RIKSat.cy",RΙΚ Sat (CYBC S) (720p) [Not 24/7]
https://l3.cloudskep.com/cybcsat/abr/playlist.m3u8
#EXTINF:-1 tvg-id="Sat7Arabic.cy",Sat 7 Arabic (240p)
https://svs.itworkscdn.net/sat7arabiclive/sat7arabic.smil/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="Sat7Kids.cy",Sat 7 Kids (1080p)
https://svs.itworkscdn.net/sat7kidslive/sat7kids.smil/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="Sat7Pars.cy",Sat 7 Pars (720p)
https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="Sat7Turk.cy",Sat 7 Türk (720p)
https://svs.itworkscdn.net/sat7turklive/sat7turk.smil/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="SigmaTV.cy",Sigma TV (576p) [Not 24/7]
@ -62,5 +47,5 @@ https://sl2.sigmatv.com/hls/live.m3u8
https://sc-kuzeykibrissmarttv.ercdn.net/tv2020/bantp1/playlist.m3u8
#EXTINF:-1 tvg-id="VouliTV.cy",Vouli TV (1080p) [Not 24/7]
https://dev.aftermind.xyz/edge-hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqx
#EXTINF:-1 tvg-id="VouliTV.cy",Vouli TV (1080p) [Not 24/7]
https://dev.aftermind.xyz/hls/unitrust/voulitv/index.m3u8?token=8TXWzhY3h6jrzqEqx
#EXTINF:-1 tvg-id="Sat7Pars.cy",Sat7 Pars (1080p)
https://svs.itworkscdn.net/sat7parslive/sat7pars.smil/playlist.m3u8

View File

@ -39,8 +39,6 @@ https://vysilani.zaktv.cz/broadcast/hls/ptv/index.m3u8
https://stream.polar.cz/polar2/polarlive2-1/playlist.m3u8
#EXTINF:-1 tvg-id="PolarTV.cz",Polar TV (1080p)
https://stream.polar.cz/polar/polarlive-1/playlist.m3u8
#EXTINF:-1 tvg-id="PrahaTV.cz",Praha TV (1080p)
https://stream.polar.cz/prahatv/prahatvlive-1/playlist.m3u8
#EXTINF:-1 tvg-id="RetroMusicTV.cz",Retro Music Television (360p)
https://stream.mediawork.cz/retrotv/retrotvHQ1/playlist.m3u8
#EXTINF:-1 tvg-id="RetroMusicTV.cz",Retro Music TV (360p)
@ -69,3 +67,9 @@ http://78.130.250.2:8023/play/a02q/index.m3u8
http://78.130.250.2:8023/play/a02c/index.m3u8
#EXTINF:-1 tvg-id="CanalPlusSport2.cz",Canal+ Sport 2 (1080i)
http://78.130.250.2:8023/play/a02w/index.m3u8
#EXTINF:-1 tvg-id="SlagerMuzika.cz@SD",Slager Muzika
https://stream-23.mazana.tv/slagrmuzika.m3u8s
#EXTINF:-1 tvg-id="SlagerOriginal.cz@SD",Slager Original
https://stream-13.mazana.tv/slagroriginal.m3u8s
#EXTINF:-1 tvg-id="CurrentTimeTV.cz@SD",Current Time TV
https://rfe-ingest.akamaized.net/hls/live/2033043/tvmc05/master.m3u8

View File

@ -15,8 +15,8 @@ https://cdn6.goprimetime.info/feed/202306140918/LC18/index.m3u8
https://ma.anixa.tv/clips/stream/anixesd/index.m3u8
#EXTINF:-1 tvg-id="AnixeHDSerie.de",Anixe HD Serie (360p)
https://ma.anixa.tv/clips/stream/anixehd/index.m3u8
#EXTINF:-1 tvg-id="ARDalpha.de",ARD-alpha (720p)
http://livestreams.br.de/i/bralpha_germany@119899/master.m3u8
#EXTINF:-1 tvg-id="ARDalpha.de@SD",ARD-alpha (720p)
https://mcdn.br.de/br/fs/ard_alpha/hls/de/master.m3u8
#EXTINF:-1 tvg-id="ARDalpha.de",ARD-alpha (720p) [Not 24/7]
https://brlive-lh.akamaihd.net/i/bralpha_germany@119899/master.m3u8
#EXTINF:-1 tvg-id="AristoTV.de",Aristo TV (360p)
@ -47,9 +47,9 @@ https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high
https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/BLKonline_high/playlist.m3u8
#EXTINF:-1 tvg-id="BLKRegionalTV.de",BLK TV Hohenmölsen (1080p)
https://58bd5b7a98e04.streamlock.net/medienasa-live/_definst_/mp4:BLKonline_high/playlist.m3u8?ref=medienportal-sachsen-
#EXTINF:-1 tvg-id="BRFernsehenNord.de",BR Fernsehen Nord (720p)
#EXTINF:-1 tvg-id="BRFernsehen.de@Nord",BR Fernsehen Nord (720p)
https://mcdn.br.de/br/fs/bfs_nord/hls/de/master.m3u8
#EXTINF:-1 tvg-id="BRFernsehenSud.de",BR Fernsehen Süd (720p)
#EXTINF:-1 tvg-id="BRFernsehen.de@Sud",BR Fernsehen Süd (720p)
https://brcdn.vo.llnwd.net/br/fs/bfs_sued/hls/de/master.m3u8
#EXTINF:-1 tvg-id="SachsenFernsehenChemnitz.de",Chemnitz Fernsehen (1080p)
https://chemnitz.iptv-playoutcenter.de/chemnitz/chemnitzfernsehen.stream_1/playlist.m3u8
@ -57,22 +57,16 @@ https://chemnitz.iptv-playoutcenter.de/chemnitz/chemnitzfernsehen.stream_1/playl
https://cira-tv.akamaized.net/hls/stream_0.m3u8
#EXTINF:-1 tvg-id="DasErste.de",Das Erste (1080p)
https://derste247liveint.akamaized.net/hls/live/662735/daserste_int/master.m3u8
#EXTINF:-1 tvg-id="DasErste.de",Das Erste (1080p) [Geo-blocked]
https://mcdn.daserste.de/daserste/de/master.m3u8
#EXTINF:-1 tvg-id="DASDING908.de",DASDING 90.8 (720p)
https://swrdasdingvr-hls.akamaized.net/hls/live/2018681/dasdingvr/master.m3u8
#EXTINF:-1 tvg-id="DeluxeDance.de",Deluxe Dance (1080p)
https://sdn-global-live-streaming-packager-cache.3qsdn.com/64733/64733_264_live.m3u8
#EXTINF:-1 tvg-id="DeluxeFlashback.de",Deluxe Flashback (1080p)
https://sdn-global-live-streaming-packager-cache.3qsdn.com/65185/65185_264_live.m3u8
#EXTINF:-1 tvg-id="DeluxeLounge.de",Deluxe Lounge (1080p)
https://stream.ads.ottera.tv/playlist.m3u8?network_id=2489
#EXTINF:-1 tvg-id="DeluxeLounge.de",Deluxe Lounge (720p)
http://jmp2.uk/sam-CHAJ0500413A.m3u8
#EXTINF:-1 tvg-id="DeluxeMusic.de",Deluxe Music (720p)
https://sdn-global-live-streaming-packager-cache.3qsdn.com/13456/13456_264_live.m3u8
#EXTINF:-1 tvg-id="DeluxeRap.de",Deluxe Rap (1080p)
https://sdn-global-live-streaming-packager-cache.3qsdn.com/65183/65183_264_live.m3u8
#EXTINF:-1 tvg-id="",Deluxe Rock (1080p)
https://sdn-global-live-streaming-packager-cache.3qsdn.com/65181/65181_264_live.m3u8
#EXTINF:-1 tvg-id="DMF.de@SD",DMF (1080p) [Not 24/7]
https://d-m-f.iptv-playoutcenter.de/dmf/dmf1/playlist.m3u8
#EXTINF:-1 tvg-id="DF1.de",DF1 (720p)
@ -133,16 +127,12 @@ https://hse24trend.akamaized.net/hls/live/2006597/hse24trend/playlist.m3u8
https://relay2.cdn.fem-net.de/hls/loop/istuff_live/istuff_live-720p.m3u8
#EXTINF:-1 tvg-id="Juwelo.de",Juwelo (720p)
https://sdn-global-live-streaming-packager-cache.3qsdn.com/7441/7441_264_live.m3u8
#EXTINF:-1 tvg-id="kabeleins.de",kabel eins (576p)
https://s6.hopslan.com/kabel1x1/index.m3u8
#EXTINF:-1 tvg-id="Kanal12SprembergTV.de",Kanal12 Spremberg TV (404p) [Not 24/7]
https://58de7a369a9c4.streamlock.net/sprembergtv/live/playlist.m3u8
#EXTINF:-1 tvg-id="KanalAvrupa.de",Kanal Avrupa (1080p)
https://api-tv27.yayin.com.tr/kanalavrupa/index.m3u8
#EXTINF:-1 tvg-id="KaufBeiTV.de",KaufBei TV (576p)
https://api.alpaca.t62a.com/hls/9103/index.m3u8
#EXTINF:-1 tvg-id="KhaterehTV.de",Khatereh TV (720p)
https://castor.streamthatvideo.co:8081/khaterehtv/index.m3u8
#EXTINF:-1 tvg-id="KiKA.de",KiKA (1080p) [Geo-blocked]
https://kikageohls.akamaized.net/hls/live/2022693/livetvkika_de/master.m3u8
#EXTINF:-1 tvg-id="KiKA.de",KiKA (1080p) [Not 24/7]
@ -165,11 +155,11 @@ https://streaming.magentamusik.de/csm/573870/magentamusik1/index.m3u8
https://rrr.sz.xlcdn.com/?account=mceutv&file=mc2&output=playlist.m3u8&protocol=https&service=wowza&type=live
#EXTINF:-1 tvg-id="MDF1.de",MDF.1 (1080p)
http://58bd5b7a98e04.streamlock.net/medienasa-live/mdf1_high/playlist.m3u8
#EXTINF:-1 tvg-id="MDRFernsehenSachsen.de",MDR Fernsehen Sachsen (1080p) [Geo-blocked]
#EXTINF:-1 tvg-id="MDRFernsehen.de@Sachsen",MDR Fernsehen Sachsen (1080p) [Geo-blocked]
https://mdrtvsnhls.akamaized.net/hls/live/2016928/mdrtvsn/index.m3u8
#EXTINF:-1 tvg-id="MDRFernsehenSachsenAnhalt.de",MDR Fernsehen Sachsen-Anhalt (1080p) [Geo-blocked]
#EXTINF:-1 tvg-id="MDRFernsehen.de@SachsenAnhalt",MDR Fernsehen Sachsen-Anhalt (1080p) [Geo-blocked]
https://mdrtvsahls.akamaized.net/hls/live/2016879/mdrtvsa/index.m3u8
#EXTINF:-1 tvg-id="MDRFernsehenThuringen.de",MDR Fernsehen Thüringen (1080p) [Geo-blocked]
#EXTINF:-1 tvg-id="MDRFernsehen.de@Thuringen",MDR Fernsehen Thüringen (1080p) [Geo-blocked]
https://mdrtvthhls.akamaized.net/hls/live/2016880/mdrtvth/index.m3u8
#EXTINF:-1 tvg-id="MeieTV.de",MeieTV (720p)
https://stream.meietv.de/live/meietv.m3u8
@ -185,13 +175,13 @@ https://mytvplus.iptv-playoutcenter.de/mytvplus/mytvplus.stream_1/playlist.m3u8
https://s.ok54.de/nahetv/webstream/playlist.m3u8
#EXTINF:-1 tvg-id="NDRFernsehenInternational.de",NDR Fernsehen International (720p)
https://ndrint.akamaized.net/hls/live/2020766/ndr_int/index.m3u8
#EXTINF:-1 tvg-id="NDRFernsehenHamburg.de",NDR Hamburg (720p)
#EXTINF:-1 tvg-id="NDRFernsehen.de@Hamburg",NDR Hamburg (720p)
https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_hh/master.m3u8
#EXTINF:-1 tvg-id="NDRFernsehenMecklenburgVorpommern.de",NDR Mecklenburg-Vorpommern (720p)
#EXTINF:-1 tvg-id="NDRFernsehen.de@MecklenburgVorpommern",NDR Mecklenburg-Vorpommern (720p)
https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_mv/master.m3u8
#EXTINF:-1 tvg-id="NDRFernsehenNiedersachsen.de",NDR Niedersachsen (720p)
#EXTINF:-1 tvg-id="NDRFernsehen.de@Niedersachsen",NDR Niedersachsen (720p)
https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_nds/master.m3u8
#EXTINF:-1 tvg-id="NDRFernsehenSchleswigHolstein.de",NDR Schleswig-Holstein (720p)
#EXTINF:-1 tvg-id="NDRFernsehen.de@SchleswigHolstein",NDR Schleswig-Holstein (720p)
https://mcdn.ndr.de/ndr/hls/ndr_fs/ndr_sh/master.m3u8
#EXTINF:-1 tvg-id="Nickelodeon.de",Nick Germany (1080p) [Geo-blocked]
https://0d26a00dfbb1.airspace-cdn.cbsivideo.com/nick1999/master/nick1999.m3u8
@ -325,9 +315,9 @@ https://5857499ee635b.streamlock.net/radiowesertv-live/mp4:livestreamTV/playlist
http://58bd5b7a98e04.streamlock.net/medienasa-live/ran1_high/playlist.m3u8
#EXTINF:-1 tvg-id="RAN1.de",RAN1 (1080p)
https://58bd5b7a98e04.streamlock.net/medienasa-live/mp4:ran1_high/playlist.m3u8
#EXTINF:-1 tvg-id="rbbFernsehenBerlin.de",RBB Berlin (1080p) [Geo-blocked]
#EXTINF:-1 tvg-id="rbbFernsehen.de@Berlin",RBB Berlin (1080p) [Geo-blocked]
https://rbb-hls-berlin.akamaized.net/hls/live/2017824/rbb_berlin/index.m3u8
#EXTINF:-1 tvg-id="rbbFernsehenBrandenburg.de",RBB Brandenburg (1080p) [Geo-blocked]
#EXTINF:-1 tvg-id="rbbFernsehen.de@Brandenburg",RBB Brandenburg (1080p) [Geo-blocked]
https://rbb-hls-brandenburg.akamaized.net/hls/live/2017825/rbb_brandenburg/master.m3u8
#EXTINF:-1 tvg-id="RBW.de",RBW (1080p)
http://58bd5b7a98e04.streamlock.net/medienasa-live/rbw_high/playlist.m3u8
@ -414,7 +404,7 @@ https://srfs.akamaized.net/hls/live/689649/srfsgeo/index.m3u8
https://58de7a369a9c4.streamlock.net/srf/stream_720p/playlist.m3u8
#EXTINF:-1 tvg-id="Studio47.de",Studio 47 (576p)
https://h057.video-stream-hosting.de/studio47-live/_definst_/mp4:livestream/playlist.m3u8
#EXTINF:-1 tvg-id="SuperRTLHD.de" http-referrer="https://www.2ix2.com/super-rtl-live/",Super RTL HD (720p)
#EXTINF:-1 tvg-id="RTLSuper.de@HD" http-referrer="https://www.2ix2.com/super-rtl-live/",Super RTL HD (720p)
#EXTVLCOPT:http-referrer=https://www.2ix2.com/super-rtl-live/
https://forsizero.github.io/iptv/m3u/superrtlhd.m3u
#EXTINF:-1 tvg-id="SWR3VisualRadio.de",SWR 3 Visual Radio (720p)
@ -461,27 +451,27 @@ http://178.219.128.68:64888/VOX
https://wdrfs247.akamaized.net/hls/live/681509/wdr_msl4_fs247/index.m3u8
#EXTINF:-1 tvg-id="WDR1Live.de",WDR 1 Live (720p)
https://wdrfsww247.akamaized.net/hls/live/2009628/wdr_msl4_fs247ww/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenAachen.de",WDR Fernsehen Aachen (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Aachen",WDR Fernsehen Aachen (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018019-b/wdrlz_aachen/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenBielefeld.de",WDR Fernsehen Bielefeld (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Bielefeld",WDR Fernsehen Bielefeld (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018026-b/wdrlz_bielefeld/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenBonn.de",WDR Fernsehen Bonn (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Bonn",WDR Fernsehen Bonn (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018021-b/wdrlz_bonn/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenDortmund.de",WDR Fernsehen Dortmund (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Dortmund",WDR Fernsehen Dortmund (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018022-b/wdrlz_dortmund/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenDuisburg.de",WDR Fernsehen Duisburg (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Duisburg",WDR Fernsehen Duisburg (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018024-b/wdrlz_duisburg/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenDusseldorf.de",WDR Fernsehen Düsseldorf (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Dusseldorf",WDR Fernsehen Düsseldorf (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018023-b/wdrlz_duesseldorf/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenEssen.de",WDR Fernsehen Essen (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Essen",WDR Fernsehen Essen (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018027-b/wdrlz_essen/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenKoln.de",WDR Fernsehen Köln (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Koln",WDR Fernsehen Köln (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2023550-b/wdrlz_koeln/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenMunster.de",WDR Fernsehen Münster (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Munster",WDR Fernsehen Münster (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018025-b/wdrlz_muensterland/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenSiegen.de",WDR Fernsehen Siegen (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Siegen",WDR Fernsehen Siegen (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018020-b/wdrlz_siegen/master.m3u8
#EXTINF:-1 tvg-id="WDRFernsehenWuppertal.de",WDR Fernsehen Wuppertal (720p) [Geo-blocked]
#EXTINF:-1 tvg-id="WDRFernsehen.de@Wuppertal",WDR Fernsehen Wuppertal (720p) [Geo-blocked]
https://wdrlokalzeit.akamaized.net/hls/live/2018028-b/wdrlz_wuppertal/master.m3u8
#EXTINF:-1 tvg-id="WELT.de",WELT
https://s6.hopslan.com/n24X/index.m3u8
@ -501,3 +491,41 @@ https://zdf-hls-16.akamaized.net/hls/live/2016499/de/high/master.m3u8
https://ef56ef401101403a8b06f1dec29ef1eb.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/Samsung-de_ZeeOne/playlist.m3u8
#EXTINF:-1 tvg-id="ZweiMusicTelevision.de",ZWEI2 Music (1080p)
https://cdne.folxplay.tv/folx-trz/streams/ch-2/master.m3u8
#EXTINF:-1 tvg-id="KaufBeiTV.de@SD",KaufBei TV
https://elephant.t62a.com/hls/8103/index.m3u8
#EXTINF:-1 tvg-id="DasErste.de@HD",Das Erste HD (1080p)
https://daserste-live.ard-mcdn.de/daserste/live/hls/int/master.m3u8
#EXTINF:-1 tvg-id="labor14.de@HD",labor14 (720p)
https://5acade5fc0c29.streamlock.net/OKGera/tmbz_live_high.stream/playlist.m3u8
#EXTINF:-1 tvg-id="RTLZwei.de@HD",RTL Zwei HD
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/518354068?profile=pass
#EXTINF:-1 tvg-id="RTL.de@SD",RTL
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/1492521887?profile=pass
#EXTINF:-1 tvg-id="sixx.de@SD",sixx
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/197699361?profile=pass
#EXTINF:-1 tvg-id="Voxup.de@SD",Voxup
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/1205817593?profile=pass
#EXTINF:-1 tvg-id="ProSiebenMaxx.de@HD",ProSieben Maxx HD
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/1753487641?profile=pass
#EXTINF:-1 tvg-id="kabeleins.de@SD",kabel eins
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/192391842?profile=pass
#EXTINF:-1 tvg-id="RTLup.de@HD",RTLup HD
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/124681379?profile=pass
#EXTINF:-1 tvg-id="VOX.de@HD",VOX
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/44434500?profile=pass
#EXTINF:-1 tvg-id="ZDFneo.de@HD",ZDFneo HD (720p)
https://cachehsi1a.netplus.ch/live/eds/zdfneohd/browser-dash/zdfneohd.mpd
#EXTINF:-1 tvg-id="ZDFinfo.de@HD",ZDFinfo HD (720p)
https://cachehsi1a.netplus.ch/live/eds/zdfinfohd/browser-dash/zdfinfohd.mpd
#EXTINF:-1 tvg-id="ZDF.de@HD",ZDF HD (720p)
https://cachehsi1a.netplus.ch/live/eds/zdfhd/browser-dash/zdfhd.mpd
#EXTINF:-1 tvg-id="DasErste.de" http-user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.10 Safari/605.1.1",Das Erste (720p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.10 Safari/605.1.1
https://cachehsi1a.netplus.ch/live/eds/daserstehd/browser-dash/daserstehd.mpd
#EXTINF:-1 tvg-id="ProSieben.de" http-user-agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.10 Safari/605.1.1",ProSieben (1080p)
#EXTVLCOPT:http-user-agent=Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.10 Safari/605.1.1
http://lafamilia2024.direct.quickconnect.to:9981/stream/channelid/452854763?profile=pass
#EXTINF:-1 tvg-id="RTLSuper.de@SD",RTL Super
https://trn09.bozztv.com/gin-superrtl/index.m3u8
#EXTINF:-1 tvg-id="WDRFernsehen.de@Koln",WDR Fernsehen (720p)
https://wdr-live.ard-mcdn.de/wdr/live/hls/de/master.m3u8

View File

@ -13,7 +13,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/655ca57e4261ca00080b3a04/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ac0873-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ba8090e5-75c3-49e1-b27f-57399848d7ed
#EXTINF:-1 tvg-id="",Assassination Classroom
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65a7d99f4a10d800086083a9/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ac0874-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=8cf3451c-2f6e-495e-93bc-62d48d70c6bc
#EXTINF:-1 tvg-id="PlutoTVAuctionHunters.us@SD",Auction Hunters
#EXTINF:-1 tvg-id="AuctionHunters.us@SD",Auction Hunters
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5ede45d077746000072be0fe/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ac2f80-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=b4e4d851-50d8-4e9c-9824-31d78816509e
#EXTINF:-1 tvg-id="",Auf Achse
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/61fbf91afb1b10000880dd08/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ac2f81-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=601f4d3b-4861-4283-9b4f-d09024aaa219
@ -139,7 +139,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/64
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/654a2bfeab05240008a12881/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ad6804-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=08e0fbef-c298-4024-b6f0-c9a111ea0795
#EXTINF:-1 tvg-id="",Germany Shore
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6447dea7e94c380008dba94c/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ad6805-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=5c4dcd23-a017-4d7e-a0f1-ce0220928f16
#EXTINF:-1 tvg-id="GoldstarTVGermany.us@Germany",Goldstar TV
#EXTINF:-1 tvg-id="GoldstarTV.de@Germany",Goldstar TV
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6192396135f3910007fc5fc7/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ad6806-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=9ec1275e-0641-49e2-81e6-6d37a37b7bd3
#EXTINF:-1 tvg-id="",Hausmeister Krause
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/622f6faf65be650007f57aab/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ad6807-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=e7001824-448d-4432-b0f6-f73039f34e53
@ -219,8 +219,6 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/62
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5ede448d3d50590007a4419e/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ae2b58-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=d3f62f1d-7d8d-4d3f-a141-db9f502deb6b
#EXTINF:-1 tvg-id="NickSpace.us@Germany",Nick Space
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/619b82cc70a9ba00074429e2/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ae5260-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=c6835637-a922-4815-9f33-c332f95fd25c
#EXTINF:-1 tvg-id="NickelodeonUkrainePlutoTV.ua@SD",Nick Ukraine
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/622882350f6aad0008c76e77/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ae5261-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=b3b9970c-0d30-47d7-83dd-c40190676ffa
#EXTINF:-1 tvg-id="",Nurse Jackie
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65a67c7a07e03a00088de834/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84ae5262-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=ec5a40a8-d64f-4615-99e0-e3e39645f7e3
#EXTINF:-1 tvg-id="PacificBlue.us@Germany",Pacific Blue
@ -311,7 +309,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5d
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5cd149f021cb6c55e258bbe8/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84aeeea5-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=57a04ab4-08c0-4114-8c90-0153ccf85d53
#EXTINF:-1 tvg-id="PlutoTVSpace.us@Germany",Pluto TV Space
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/61409f8d6feb30000766b675/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84aeeea6-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=aee0c343-6689-49c1-9090-319522e3c837
#EXTINF:-1 tvg-id="PlutoTVStarTrek.us@Germany",Pluto TV Star Trek
#EXTINF:-1 tvg-id="StarTrek.us@Germany",Pluto TV Star Trek
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6152ee71bf99590007893a11/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84aeeea7-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=3329cc1b-d91f-4194-b516-92fbd807049b
#EXTINF:-1 tvg-id="PlutoTVTrueCrime.us@Germany",Pluto TV True Crime
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/615333098185f00008715a56/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=84aeeea8-4b92-11ef-aece-533610f1ea34&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=96f45124-9486-4038-a177-6f5206a39041

View File

@ -1,11 +1 @@
#EXTM3U
#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p)
https://insighttv-samsung-de.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p)
https://inwonder-samsung-de.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p)
https://sofy-ger-samsung.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Tastemade Deutschland (720p)
https://tastemade-de-samsung.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="XITE.nl",Xite (720p)
https://xite-samsung-de.amagi.tv/playlist.m3u8

View File

@ -1 +1,3 @@
#EXTM3U
#EXTM3U
#EXTINF:-1 tvg-id="RTD4.dj@SD",RTD 4
http://dvrfl05.bozztv.com/gin-rtddjibouti/index.m3u8

View File

@ -1,19 +1,3 @@
#EXTM3U
#EXTINF:-1 tvg-id="AfricanewsEnglish.fr",AfricaNews English (720p)
https://rakuten-africanews-1-dk.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="BloombergTV.us",Bloomberg TV US (1080p)
https://bloomberg-bloomberg-1-dk.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsEnglish.fr",Euronews English (720p)
https://rakuten-euronews-1-dk.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsEnglish.fr",Euronews English
https://rakuten-euronews-1-dk.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@Denmark",Rakuten Action (720p)
https://rakuten-action-10-dk.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@Denmark",Rakuten Comedy (720p)
https://rakuten-comedy-10-dk.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es@Denmark",Rakuten Drama (720p)
https://rakuten-drama-10-dk.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Denmark",Rakuten Family (720p)
https://rakuten-family-10-dk.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVSpotlight.es@Denmark",Rakuten Spotlight (720p)
https://rakuten-spotlight-10-dk.samsung.wurl.tv/playlist.m3u8

View File

@ -20,8 +20,8 @@ https://5790d294af2dc.streamlock.net/alcarrizostv/alcarrizostv/playlist.m3u8
https://vsrv2.az-streamingserver.com:3149/live/alegretvlive.m3u8
#EXTINF:-1 tvg-id="AltantoTV.do",Altanto TV (720p)
https://streaming.altantotv.domiplay.net/hls/0/stream.m3u8
#EXTINF:-1 tvg-id="Ame47.do",Amé 47 (720p)
https://ss9.domint.net:3040/ame_str/amecanal47/playlist.m3u8
#EXTINF:-1 tvg-id="Ame47.do@SD",Ame 47 (576p)
https://ss2.tvrdomi.com:1936/ame47/ame47/playlist.m3u8
#EXTINF:-1 tvg-id="AnimeZoneTV.do",Anime Zone TV (480p)
http://animezonetv.net/hls/stream.m3u8
#EXTINF:-1 tvg-id="Antena7.do",Antena 7 (480p) [Not 24/7] [Geo-blocked]
@ -38,16 +38,16 @@ https://inliveserver.com:1936/11548/11548/playlist.m3u8
https://ss5.domint.net:3034/astv_str/asmartv/playlist.m3u8
#EXTINF:-1 tvg-id="BajoTechoTV.do",Bajo Techo TV (1080p) [Not 24/7]
https://rdn.essastream.com:3042/live/bajotechotvlive.m3u8
#EXTINF:-1 tvg-id="BebetoTV.do",Bebeto TV (1080p)
https://ss5.domint.net:3170/cotv_str/colometv/playlist.m3u8
#EXTINF:-1 tvg-id="BebetoTV.do@SD",Bebeto TV (720p)
https://ss2.tvrdomi.com:1936/colometv/colometv/playlist.m3u8
#EXTINF:-1 tvg-id="Bellavision.do",Bellavisión (1080p)
https://rdn.essastream.com:3110/live/bellavision8hdlive.m3u8
#EXTINF:-1 tvg-id="",Boca Chica TV
https://vdo1.streamgato.us:3977/live/lavozsincensuratvlive.m3u8
#EXTINF:-1 tvg-id="BonaoTV.do",Bonao TV (720p)
https://ss5.domint.net:3026/btv_str/bonao/playlist.m3u8
#EXTINF:-1 tvg-id="BonchesLatinosTV.do",Bonches Latinos TV (720p)
https://ss5.domint.net:3030/aba_str/bonche/playlist.m3u8
#EXTINF:-1 tvg-id="BonaoTV.do@SD",Bonao TV (720p)
https://bonaotv.com/stream2/index.m3u8
#EXTINF:-1 tvg-id="BonchesLatinosTV.do@SD",Bonches Latinos TV (720p)
https://5790d294af2dc.streamlock.net/latinostv/latinostv/playlist.m3u8
#EXTINF:-1 tvg-id="Boreal.do",Boreal (720p)
https://cdn.borealtelevision.com:3712/live/borealtelevisionhdlive.m3u8
#EXTINF:-1 tvg-id="",Cacique TV
@ -84,8 +84,8 @@ https://ss3.domint.net:3146/ctv_str/cangrejotv/playlist.m3u8
https://59ef525c24caa.streamlock.net/ctn/ctn/playlist.m3u8
#EXTINF:-1 tvg-id="Carivision.do",Carivision (1080p)
https://ss5.domint.net:3174/car_str/carivision/playlist.m3u8
#EXTINF:-1 tvg-id="CascaraTV.do",Cáscara TV (1080p)
https://ss3.domint.net:3144/ctv_str/cascaratv/playlist.m3u8
#EXTINF:-1 tvg-id="CascaraTV.do@SD",Cascara TV (720p)
https://ss2.tvrdomi.com:1936/cascaratv/cascaratv/playlist.m3u8
#EXTINF:-1 tvg-id="CDN.do",CDN (720p)
https://rtmp-live-ingest-us-east-1-universe-dacast-com.akamaized.net/transmuxv1/streams/ae3e71b4-52af-d834-7388-fc75f9401a03.m3u8
#EXTINF:-1 tvg-id="CDNDeportes.do",CDN Deporte (720p)
@ -112,8 +112,8 @@ https://cloudflare.streamgato.us:3253/live/canalcocotvlive.m3u8
https://vdo2.streamgato.us:3313/live/codigotvlive.m3u8
#EXTINF:-1 tvg-id="ColimdoTV.do",ColimdoT TV (720p)
https://cnn.livestreaminggroup.info:3132/live/colimdotvlive.m3u8
#EXTINF:-1 tvg-id="ColorVision.do",Color Visión (720p) [Not 24/7]
https://ds.tvabierta.net/memfs/eb78f429-c05e-4c37-b8c1-18713f6af9ba_output_0.m3u8?session=XnzXXA9CvKVMgqK2nbfqC5
#EXTINF:-1 tvg-id="ColorVision.do",Color Visión (576p) [Not 24/7]
https://cors-proxy.cooks.fyi/http://190.123.76.22:8000/play/a024/index.m3u8
#EXTINF:-1 tvg-id="ConstanzaTV.do",ConstanzaTV (720p)
https://ssh101-fl.bozztv.com/ssh101/ctv8hd/index.m3u8
#EXTINF:-1 tvg-id="Coral39.do",Coral 39 (720p)
@ -175,8 +175,8 @@ https://ss2.domint.net:3200/gdm_str/gdmtv/playlist.m3u8
https://cnn.livestreaminggroup.info:3050/live/gettvlive.m3u8
#EXTINF:-1 tvg-id="GHTelevision.do",GH Television (1080p)
https://tv.ghtelevision.com:3018/live/ghtelevisionlive.m3u8
#EXTINF:-1 tvg-id="GiTelevision.do",Gi Television (720p)
https://ssh101.bozztv.com/ssh101/rctvhd103/chunks.m3u8
#EXTINF:-1 tvg-id="GiTelevision.do@SD",Gi Television (720p)
https://gitelevision.moxstream.live/live/DIEEFIh506fL8huspvl0f0c2PZF3/index.m3u8
#EXTINF:-1 tvg-id="",Global Social TV (720p)
https://ss9.domint.net:3042/gstv_str/globalsocialtv/playlist.m3u8
#EXTINF:-1 tvg-id="GlobalTV.do",Global TV (720p)
@ -185,8 +185,6 @@ https://ss3.domint.net:3136/gtv_str/globalhd/playlist.m3u8
https://imagenuniversaltv.net:3820/live/guacaratvlive.m3u8
#EXTINF:-1 tvg-id="GuaymateTV.do@SD",Guaymate [Not 24/7]
https://5790d294af2dc.streamlock.net/8100/8100/playlist.m3u8
#EXTINF:-1 tvg-id="GuaymateTV.do",Guaymate TV (720p)
https://ssh101stream.ssh101.com/akamaissh101/ssh101/guaymatetv/playlist.m3u8
#EXTINF:-1 tvg-id="HainaVision.do",Haina Vision (720p)
https://cdn.streamingcpanel.com:3447/live/hainavisionlive.m3u8
#EXTINF:-1 tvg-id="HermanasMirabalTV.do",Hermanas Mirabal TV (720p) [Not 24/7]
@ -217,8 +215,8 @@ https://ss5.domint.net:3184/mia_str/lamiatv/playlist.m3u8
https://streamunoapp.com:3983/live/larutatvlive.m3u8
#EXTINF:-1 tvg-id="",La Voz de Jesus (720p)
https://stream.gia.tv/giatvplayout7/giatv-208429/playlist.m3u8
#EXTINF:-1 tvg-id="LaVozdeMaria.do",La Voz de María (720p)
https://627bb251f23c7.streamlock.net:444/LaVozdeMaria/live/playlist.m3u8
#EXTINF:-1 tvg-id="LaVozdeMaria.do@SD",La Voz de Maria (720p)
https://live.lavozdemaria.com:3436/live/lavozdemarialive.m3u8
#EXTINF:-1 tvg-id="LaVozdeMaria.do",La Voz de María (720p)
https://uni01rtmp.tulix.tv/playout2multi9/lavozdemaria.stream/playlist.m3u8
#EXTINF:-1 tvg-id="LaVozdelTropico.do",La Voz del Trópico (480p) [Not 24/7]
@ -342,7 +340,7 @@ https://rdn.essastream.com:3160/live/sanisidrotvlive.m3u8
https://vdo1.streamgato.us:3677/live/telemileniolive.m3u8
#EXTINF:-1 tvg-id="SensacionTV.do",Sensación TV (360p)
https://ss5.domint.net:3002/stv_str/sensaciontv/playlist.m3u8
#EXTINF:-1 tvg-id="SiembraTV.ve@SD",Siembra TV (720p)
#EXTINF:-1 tvg-id="SiembraTV.do@SD",Siembra TV (720p)
https://streamunoapp.com:3809/live/siembratvlive.m3u8
#EXTINF:-1 tvg-id="SimavisionCanal18.do",Sima Vision TV (720p)
https://soportedvb.click:3668/live/simavisiontvlive.m3u8
@ -362,8 +360,8 @@ https://ss2.domint.net:3236/stv_str/supertv55/playlist.m3u8
https://ss2.domint.net:3132/stv_str/supremateve/playlist.m3u8
#EXTINF:-1 tvg-id="",Taino TV (720p)
https://tvdatta.com:3602/stream/play.m3u8
#EXTINF:-1 tvg-id="TeleAntillas.do",Tele Antillas (480p)
https://ds.tvabierta.net/memfs/9fe21fdc-a270-425e-acf4-e34eaea644a4_output_0.m3u8?session=bCZB5ZyNEQ2gsFkDSGfZ9x
#EXTINF:-1 tvg-id="TeleAntillas.do@SD",Tele Antillas (480p)
https://cors-proxy.cooks.fyi/http://190.123.76.22:8000/play/a043/index.m3u8
#EXTINF:-1 tvg-id="",Tele Dominicana TV (720p)
https://vdopanel.jlahozconsulting.com/p/3417/hybrid/play.m3u8
#EXTINF:-1 tvg-id="",Tele Jaravacoa TV (720p)
@ -394,8 +392,8 @@ https://ss9.domint.net:3054/tf_str/telefuturo/playlist.m3u8
https://vpss2003.streamprolive.com/hls/live.m3u8
#EXTINF:-1 tvg-id="Telemax.do",Telemax (1080p)
https://vdo2.streamgato.us:3673/live/telemaxlive.m3u8
#EXTINF:-1 tvg-id="Telemicro.do",Telemicro (480p)
https://ds.tvabierta.net/memfs/f74d5027-040c-4374-8905-2edfbca29552_output_0.m3u8?session=ky7m27J7JoM7jLpEQvN7m4
#EXTINF:-1 tvg-id="Telemicro.do@SD",Telemicro (480p)
https://cors-proxy.cooks.fyi/http://190.123.76.22:8000/play/a023/index.m3u8
#EXTINF:-1 tvg-id="Telemilenio.do",Telemilenio (720p) [Not 24/7]
http://cm.hostlagarto.com:8081/Telemilenio/Telemilenio.myStream/playlist.m3u8
#EXTINF:-1 tvg-id="Telenord8.do",Telenord 8 (1080p) [Not 24/7]
@ -521,3 +519,20 @@ https://5790d294af2dc.streamlock.net/Zonavisiontv/Zonavisiontv/playlist.m3u8
https://lb00zdigital.streamprolive.com/mnt/hls/live.m3u8
#EXTINF:-1 tvg-id="AvivamientoTV.do",Avivamiento TV (480p)
https://ssh101.bozztv.com/ssh101/avivamientotv/playlist.m3u8
#EXTINF:-1 tvg-id="CDN.do@SD",CDN
https://rtmp-live-ingest-us-east-1-universe-dacast-com.akamaized.net/transmuxv1/streams/7ed9a111-1110-47df-3bd8-85a9e0a15e3c.m3u8
#EXTINF:-1 tvg-id="GuaymateTV.do@SD",Guaymate TV (720p)
https://live20.bozztv.com/akamaissh101/ssh101/guaymatetv/playlist.m3u8
#EXTINF:-1 tvg-id="CanaTVDigital.do@SD",Cana TV Digital
https://stream.hostuis.com:19360/canatvdigital/canatvdigital.m3u8
#EXTINF:-1 tvg-id="TVCanalSur.do@SD",TV Canal Sur (1080p)
https://streamtvs.tvcanalsur.com.do/hls/stream/index.m3u8
#EXTINF:-1 tvg-id="Teleunion.do@SD" http-referrer="https://teleuniontvrd.com/portal/",Teleunion (1080p)
#EXTVLCOPT:http-referrer=https://teleuniontvrd.com/portal/
http://server2grupocam.com:1945/teleunion/TU/playlist.m3u8
#EXTINF:-1 tvg-id="Antena7.do",Antena 7 (480p)
https://cors-proxy.cooks.fyi/http://190.123.76.22:8000/play/a044/index.m3u8
#EXTINF:-1 tvg-id="AdoramTV.do",Adoram TV (720p)
https://live20.bozztv.com/giatv/giatv-adoram/adoram/chunks.m3u8
#EXTINF:-1 tvg-id="RETV.do@SD",R&E TV (720p)
https://live.ryetv.net/livelan/stream.m3u8

View File

@ -8,11 +8,7 @@ https://live.creacast.com/cna/smil:cna.smil/playlist.m3u8
#EXTINF:-1 tvg-id="ElwataniaTV.dz" http-referrer="https://player.castr.com/live_1b36cfb0ba2411ee9700956e0f7084c8",Elwatania TV (720p) [Not 24/7]
#EXTVLCOPT:http-referrer=https://player.castr.com/live_1b36cfb0ba2411ee9700956e0f7084c8
https://stream.castr.com/62c18c3f14d09a0b7e5355a5/live_1b36cfb0ba2411ee9700956e0f7084c8/index.fmp4.m3u8
#EXTINF:-1 tvg-id="TV2.dz",TV2 (480p)
https://tgn.bozztv.com/dvrfl05/gin-canalalgerie/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="TV4.dz",TV4 (576p)
https://tgn.bozztv.com/dvrfl05/ga-algeria4/index.m3u8
#EXTINF:-1 tvg-id="TV6.dz",TV6 (1080p)
https://tgn.bozztv.com/dvrfl05/ga-algeria6/index.m3u8
#EXTINF:-1 tvg-id="TV3.dz",TV3
http://69.64.57.208/canalalgerie/playlist.m3u8
#EXTINF:-1 tvg-id="TV3.dz@SD",TV3
https://fl1002.bozztv.com/ga-algeria3/index.m3u8
#EXTINF:-1 tvg-id="4KidsTV.dz@SD",4Kids TV
http://149.100.19.147:8000/play/a02t

View File

@ -154,3 +154,9 @@ https://cloud37.ecuatel.com/vostv/live/manifest.m3u8
https://video2.makrodigital.com/wuanplus/wuanplus/playlist.m3u8
#EXTINF:-1 tvg-id="ZaracayTV.ec",Zaracay TV (1080p) [Not 24/7]
https://video2.makrodigital.com/zaracay/zaracay/playlist.m3u8
#EXTINF:-1 tvg-id="WuanPlus.ec@SD",Wuan+
https://7.innovatestream.pe:19360/ecuadortest/ecuadortest.m3u8
#EXTINF:-1 tvg-id="UCSGTV.ec@SD",UCSG TV
https://stream.catomedia.net/catomedia-app/index.m3u8
#EXTINF:-1 tvg-id="UnsionTV.ec",Unsion TV (1080p)
http://provedores.unsion.tv:8081/srt/1/playlist.m3u8

View File

@ -1,12 +1,8 @@
#EXTM3U
#EXTINF:-1 tvg-id="AghapyTV.eg",Aghapy TV (1080p) [Not 24/7]
https://5b622f07944df.streamlock.net/aghapy.tv/aghapy.smil/playlist.m3u8
#EXTINF:-1 tvg-id="AlGhadPlus.eg",Al Ghad Plus
https://playlist.fasttvcdn.com/pl/ykvm3f2fhokwxqsurp9xcg/alghad-plus/playlist.m3u8
#EXTINF:-1 tvg-id="AlGhadTV.eg",Al Ghad TV (1080p)
https://eazyvwqssi.erbvr.com/alghadtv/alghadtv.m3u8
#EXTINF:-1 tvg-id="AlHayatTV.us",Al Hayat TV (720p)
http://media.islamexplained.com:1935/live/_definst_mp4:ahme.stream/playlist.m3u8
#EXTINF:-1 tvg-id="AlQaheraNews.eg",Al Qahera News (1080p) [Not 24/7]
https://bcovlive-a.akamaihd.net/d30cbb3350af4cb7a6e05b9eb1bfd850/eu-west-1/6057955906001/playlist.m3u8
#EXTINF:-1 tvg-id="AlfathAtfalTV.eg",Alfath Atfal TV (576p)
@ -15,8 +11,6 @@ https://alfat7-q.com:5443/LiveApp/streams/434833549141598440488987.m3u8
https://alfat7-q.com:5443/LiveApp/streams/986613792230697141226562.m3u8
#EXTINF:-1 tvg-id="AlfathTV.eg",Alfath TV (576p)
https://alfat7-q.com:5443/LiveApp/streams/515112551489055772942045.m3u8
#EXTINF:-1 tvg-id="AlhayatTV.eg",Alhayat TV (720p)
https://cdn3.wowza.com/5/OE5HREpIcEkySlNT/alhayat-live/ngrp:livestream_all/playlist.m3u8
#EXTINF:-1 tvg-id="AlShoub.eg",AlShoub (720p)
https://alshoobtv.rp.tactivemedia.com/alshoobtv/live/playlist.m3u8
#EXTINF:-1 tvg-id="ATVSat.us",ATVSat (1080p) [Not 24/7]
@ -39,19 +33,52 @@ https://cdn.bestream.io:19360/elfaro1/elfaro1.m3u8
https://5d658d7e9f562.streamlock.net/koogi.tv/koogi.smil/playlist.m3u8
#EXTINF:-1 tvg-id="MBCMasr.eg",MBC Masr (1080p)
https://mbc1-enc.edgenextcdn.net/out/v1/d5036cabf11e45bf9d0db410ca135c18/index.m3u8
#EXTINF:-1 tvg-id="MBCMasr2.eg",MBC Masr 2 (1080p)
https://shls-masr2-ak.akamaized.net/out/v1/f683685242b549f48ea8a5171e3e993a/index.m3u8
#EXTINF:-1 tvg-id="MBCMasr2.eg@SD",MBC Masr 2 (1080p)
https://shd-gcp-live.edgenextcdn.net/live/bitmovin-mbc-masr-2/754931856515075b0aabf0e583495c68/index.m3u8
#EXTINF:-1 tvg-id="NogoumFMTV.eg",NogoumFMTV (672p) [Not 24/7]
https://nogoumtv.nrpstream.com/hls/stream.m3u8
#EXTINF:-1 tvg-id="OnE.eg",On E (1080p)
https://bcovlive-a.akamaihd.net/3dc60bab470f4c9fbf00408ecb7c3d7a/eu-west-1/6057955906001/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="PNCDrama.eg",PNC Drama (1080p)
https://d35j504z0x2vu2.cloudfront.net/v1/master/0bc8e8376bd8417a1b6761138aa41c26c7309312/pnc-drama/playlist.m3u8
#EXTINF:-1 tvg-id="RotanaCinemaEgypt.eg",Rotana Cinema Egypt (1080p)
https://rotana.hibridcdn.net/rotana/cinemamasr_net-7Y83PP5adWixDF93/playlist.m3u8
#EXTINF:-1 tvg-id="TeN.eg",TeN (720p) [Geo-blocked]
https://weyyak-live.akamaized.net/weyyak_ten_tv/index.m3u8
#EXTINF:-1 tvg-id="RotanaCinemaEgypt.eg" http-referrer="https://rotana.net/",Rotana Cinema Egypt (1080p)
#EXTVLCOPT:http-referrer=https://rotana.net/
https://rotana.hibridcdn.net/rotananet/cinemamasr_net-7Y83PP5adWixDF93/playlist.m3u8
#EXTINF:-1 tvg-id="TheKingdomSat.eg",The Kingdom Sat (720p)
https://bcovlive-a.akamaihd.net/0e524e1838ed411dad0a674d18e07914/eu-central-1/6415808954001/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="WatanTV.eg",Watan TV (1080p)
https://rp.tactivemedia.com/watantv_source/live/playlist.m3u8
#EXTINF:-1 tvg-id="DMC.eg",DMC (1080p)
https://bcovlive-a.akamaihd.net/ba3169004d40484b9ff29e194964c9e8/eu-west-1/6057955906001/playlist.m3u8
#EXTINF:-1 tvg-id="CBCSofra.eg",CBC Sofra (1080p)
https://bcovlive-a.akamaihd.net/753a1f2c951b4fb3914f30e1deb147d8/us-west-2/6057955906001/playlist.m3u8
#EXTINF:-1 tvg-id="CBC.eg",CBC (1080p)
https://bcovlive-a.akamaihd.net/0c223ac0a9d34b30b100cb92ee83b70a/us-west-2/6057955906001/playlist.m3u8
#EXTINF:-1 tvg-id="OnDrama.eg@SD",On Drama
https://fl1002.bozztv.com/ga-ondrama/index.m3u8
#EXTINF:-1 tvg-id="AlNaharDrama.eg@SD",Al-Nahar Drama
https://fl1002.bozztv.com/ga-alnahardrama/index.m3u8
#EXTINF:-1 tvg-id="CBCDrama.eg@SD",CBC Drama
https://fl1002.bozztv.com/ga-cbcdrama/index.m3u8
#EXTINF:-1 tvg-id="AlMasriyah.eg@SD",Al Masriyah
https://fl1002.bozztv.com/ga-almasriya/index.m3u8
#EXTINF:-1 tvg-id="TeN.eg@SD",TeN
https://live20.bozztv.com/gin-36bay3/ga-tentv/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="AlhayatTV.eg@SD",Alhayat TV
https://fl1002.bozztv.com/ga-alhayah/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="AlKaheraWalNas.eg@SD",Al Kahera Wal Nas
https://live20.bozztv.com/gin-36bay3/ga-alkahera/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="AlNahar.eg@SD",Al-Nahar
https://fl1002.bozztv.com/ga-alnahar/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="ElMehwarChannel.eg@SD",El Mehwar Channel
https://fl1002.bozztv.com/ga-elmehwar/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="DMCDrama.eg@SD",DMC Drama (720p)
https://fl1002.bozztv.com/ga-dmcdrama/index.m3u8
#EXTINF:-1 tvg-id="DMC.eg@SD",DMC (720p)
https://fl1002.bozztv.com/ga-dmc/index.m3u8
#EXTINF:-1 tvg-id="CBC.eg@SD",CBC (1080i)
https://fl1002.bozztv.com/ga-cbc/index.m3u8
#EXTINF:-1 tvg-id="AlhayatDrama.eg@SD",Alhayat Drama
https://fl1002.bozztv.com/ga-alhayahseries/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="AlShoub.eg@SD",AlShoub (720p)
https://play.tactivemedia.com/memfs/c5919b97-5329-4b84-91b2-613c6ed9953e.m3u8

3
streams/er.m3u Normal file
View File

@ -0,0 +1,3 @@
#EXTM3U
#EXTINF:-1 tvg-id="ERiTV1.er@SD",ERi-TV 1 (576p)
https://jmc-live.ercdn.net/eritreatv/eritreatv.m3u8

View File

@ -3,13 +3,11 @@
https://directes-tv-int.3catdirectes.cat/live-origin/canal324-hls/master.m3u8
#EXTINF:-1 tvg-id="Canal7TeleValencia.es",7 TeleValencia (576p)
https://play.cdn.enetres.net/9E9557EFCEBB43A89CEC8FBD3C500247022/028/playlist.m3u8
#EXTINF:-1 tvg-id="La7.es",7 Televisión Región de Murcia (1080p)
https://rtv-murcia-live.globalmest.com/principal/smil:principal.smil/playlist.m3u8
#EXTINF:-1 tvg-id="8LaMarinaTV.es",8 La Marina TV (576p)
https://streaming005.gestec-video.com/hls/canal24.m3u8
#EXTINF:-1 tvg-id="8madridTV.es",8madrid TV (720p)
http://185.189.225.150:85/8madrid/index.m3u8
#EXTINF:-1 tvg-id="9laLomaTV.es",9 la Loma TV (1080p)
#EXTINF:-1 tvg-id="9laLomaTV.es",9 la Loma TV (1080p) [Geo-blocked]
https://9laloma.tv/live.m3u8
#EXTINF:-1 tvg-id="12tv.es" http-referrer="https://www.12tv.es/",12tv
#EXTVLCOPT:http-referrer=https://www.12tv.es/
@ -19,8 +17,6 @@ https://cloud.streamingconnect.tv/hls/12tv/12tv2.m3u8
https://cloud.fastchannel.es/mic/manifiest/hls/12tv/12tv.m3u8
#EXTINF:-1 tvg-id="24HorasInternacional.es",24 Horas Internacional [Geo-blocked]
https://rtvelivestream.akamaized.net/rtvesec/24h/24h_main_dvr.m3u8
#EXTINF:-1 tvg-id="28kanala.es",28 kanala (720p) [Not 24/7]
https://5940924978228.streamlock.net/8157/8157/master.m3u8
#EXTINF:-1 tvg-id="101tvAntequera.es" http-referrer="https://www.101tv.es/antequera/",101tv Antequera
#EXTVLCOPT:http-referrer=https://www.101tv.es/antequera/
https://www.streaming101tv.es:19360/antequera/antequera.m3u8
@ -28,52 +24,22 @@ https://www.streaming101tv.es:19360/antequera/antequera.m3u8
https://www.streaming101tv.es:19360/axarquia/axarquia.m3u8
#EXTINF:-1 tvg-id="101tvCadiz.es",101tv Cádiz (1080p)
https://streaming101tv.es:19360/cadiz/cadiz.m3u8
#EXTINF:-1 tvg-id="101tvMalaga.es",101tv Málaga (1080p)
https://limited38.todostreaming.es/live/101tv-web101tv.m3u8
#EXTINF:-1 tvg-id="101tvRonda.es",101tv Ronda (1080p)
https://streaming101tv.es/hls/webronda.m3u8
#EXTINF:-1 tvg-id="101tvSevilla.es",101tv Sevilla (1080p)
https://streaming101tv.es/hls/websevilla.m3u8
#EXTINF:-1 tvg-id="APunt.es",À Punt (720p)
https://bcovlive-a.akamaihd.net/1e7e91116b104391a4f22e13a694d94f/eu-central-1/6057955885001/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="APunt.es",À Punt (720p)
https://bcovlive-a.akamaihd.net/469e448f034b4d46afa4bcac53297d60/eu-central-1/6057955885001/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="ActivaTV.es",Activa TV (720p)
https://streamtv.mediasector.es/hls/activatv/index.m3u8
#EXTINF:-1 tvg-id="AfortunadasTV.es",Afortunadas TV (720p)
https://cloudvideo.servers10.com:8081/8108/index.m3u8
#EXTINF:-1 tvg-id="AlacantiTV.es",Alacantí TV (576p) [Not 24/7]
https://streaming01.gestec-video.com/hls/artequatreAlacanti.m3u8
#EXTINF:-1 tvg-id="AlcarriaTV.es",Alcarria TV (576p) [Not 24/7]
http://217.182.77.27/live/alcarriatv-livestream.m3u8
#EXTINF:-1 tvg-id="AlcarriaTV.es",Alcarria TV (576p) [Not 24/7]
https://cls.alcarria.tv/alcarriatv/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="AMC.us@Spain",AMC (Spain) (720p)
http://vegafibratv.com:8085/AMC/index.m3u8
#EXTINF:-1 tvg-id="Antena3.es",Antena 3 (720p)
http://185.189.225.150:85/Antena3HD/index.m3u8
#EXTINF:-1 tvg-id="Antena3.es",Antena 3 (480p)
http://181.78.109.48:8000/play/a00f/index.m3u8
#EXTINF:-1 tvg-id="AquiNoHayQuienViva.es",Aqui No Hay Quien Viva (720p)
https://fast-channels.atresmedia.com/648ef3951756b0e425af83cc/648ef3951756b0e425af83cc.m3u8
#EXTINF:-1 tvg-id="ArabiTV.es",Arabí TV (1080p)
https://streamtv2.elitecomunicacion.cloud:3956/live/arabitvlive.m3u8
https://streamtv2.elitecomunicacion.cloud:3628/live/arabitv2025live.m3u8
#EXTINF:-1 tvg-id="AragonTV.es",Aragón TV (720p) [Not 24/7]
https://cartv.streaming.aranova.es/hls/live/aragontv_canal1.m3u8
#EXTINF:-1 tvg-id="Atreseries.es",Atreseries (480p)
http://181.78.109.48:8000/play/a00l/index.m3u8
#EXTINF:-1 tvg-id="AtresplayerClasicos.es",Atresplayer Clasicos (1080p)
https://fast-channels.atresmedia.com/648ef12c2bfab0e4507e0d61/648ef12c2bfab0e4507e0d61.m3u8
#EXTINF:-1 tvg-id="AtresplayerComedia.es",Atresplayer Comedia (1080p)
https://fast-channels.atresmedia.com/648ef23d2bfab0e4557e0d61/648ef23d2bfab0e4557e0d61.m3u8
#EXTINF:-1 tvg-id="AtresplayerInquietos.es",Atresplayer Inquietos (1080p)
https://fast-channels.atresmedia.com/648ef3162bfab0e4587e0d61/648ef3162bfab0e4587e0d61.m3u8
#EXTINF:-1 tvg-id="AtresplayerMulticine.es",Atresplayer Multicine (1080p)
https://fast-channels.atresmedia.com/648ef18c1756b0e41daf83cc/648ef18c1756b0e41daf83cc.m3u8
#EXTINF:-1 tvg-id="AXN.es",AXN (1080p)
http://181.78.109.48:8000/play/a05u/index.m3u8
#EXTINF:-1 tvg-id="AXN.es",AXN (480p)
http://181.78.109.48:8000/play/a023/index.m3u8
#EXTINF:-1 tvg-id="BabyTV.uk@Spain",BabyTV (Spain) (1080p)
http://185.189.225.150:85/BabyTV/index.m3u8
#EXTINF:-1 tvg-id="BailenTV.es",Bailén TV (720p) [Not 24/7]
@ -112,8 +78,6 @@ https://5940924978228.streamlock.net/Directo2/Directo2/playlist.m3u8
#EXTINF:-1 tvg-id="Canal10Emporda.es",Canal 10 Empordà (360p) [Not 24/7]
http://ventdelnord.tv:8080/escala/directe.m3u8
#EXTINF:-1 tvg-id="24Horas.es",Canal 24 Horas (720p)
https://rtvelivestream-clnx.rtve.es/rtvesec/24h/24h_main_dvr.m3u8
#EXTINF:-1 tvg-id="24Horas.es",Canal 24 Horas (720p)
https://ztnr.rtve.es/ztnr/1694255.m3u8
#EXTINF:-1 tvg-id="24HorasCanarias.es",Canal 24 Horas Canarias (720p)
https://rtvelivestream.akamaized.net/rtvesec/can/24h_can_main_dvr.m3u8
@ -154,8 +118,6 @@ https://liveingesta318.cdnmedia.tv/canalreustvlive/smil:live.smil/playlist.m3u8
https://cdnlivevlc.codev8.net/aytosanroquelive/smil:channel1.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalSierradeCadiz.es",Canal Sierra de Cádiz (1080p) [Not 24/7]
https://s.emisoras.tv:8081/sierradecadiz/index.m3u8
#EXTINF:-1 tvg-id="CanalSurAndalucia.es",Canal Sur Andalucía (1080p) [Not 24/7]
https://cdnlive.codev8.net/rtvalive/smil:channel1.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalSur2.es",Canal Sur Andalucía 2 (720p)
https://cdnlive.codev8.net/rtvalive/smil:channel22.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalTaronjaAnoia.es" http-user-agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36 CrKey/1.44.191160",Canal Taronja Anoia (1080p) [Not 24/7]
@ -243,12 +205,8 @@ https://liveingesta318.cdnmedia.tv/9tvlive/smil:live.smil/playlist.m3u8?DVR=
https://directes-tv-cat.3catdirectes.cat/live-origin/c33-super3-hls/master.m3u8
#EXTINF:-1 tvg-id="El33SX3.es",El 33 SX3 (1080p) [Geo-blocked]
https://directes-tv-es.3catdirectes.cat/live-origin/c33-super3-hls/master.m3u8
#EXTINF:-1 tvg-id="ElClubdelaComedia.es",El Club de la Comedia (1080p)
https://fast-channels.atresmedia.com/648f47f7a2ffb0e40aeff3ad/648f47f7a2ffb0e40aeff3ad.m3u8
#EXTINF:-1 tvg-id="ElConfidencialTV.es",El Confidencial TV (1080p)
https://daqnsnf5phf17.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-sde7fypd1420w-prod/fast-channel-elconfidencial/fast-channel-elconfidencial.m3u8
#EXTINF:-1 tvg-id="ElHormiguero.es",El Hormiguero (1080p)
https://fast-channels.atresmedia.com/648ef5882bfab0e4627e0d61/648ef5882bfab0e4627e0d61.m3u8
#EXTINF:-1 tvg-id="ElPaisTV.es",EL PAÍS TV (1080p)
https://d2xqbi89ghm9hh.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-79fx3huimw4xc-ssai-prd/fast-channel-el-pais.m3u8
#EXTINF:-1 tvg-id="ElToroTV.es",El Toro TV (720p)
@ -257,8 +215,6 @@ https://streaming-1.eltorotv.com/lb0/eltorotv-streaming-web/index.m3u8
https://elche7tv.gestec-video.com/hls/canal2.m3u8
#EXTINF:-1 tvg-id="EmpordaTV.es",Empordà TV (1080p)
https://video3.lhdserver.es/empordatv2/live.m3u8
#EXTINF:-1 tvg-id="EquipodeInvestigacion.es",Equipo de Investigacion (1080p)
https://fast-channels.atresmedia.com/648ef5551756b0e429af83cc/648ef5551756b0e429af83cc.m3u8
#EXTINF:-1 tvg-id="ErloTelebista.es",Erlo Telebista (720p)
https://5940924978228.streamlock.net/8159/8159/master.m3u8
#EXTINF:-1 tvg-id="Esport3.es",Esport3 (1080p) [Geo-blocked]
@ -287,12 +243,8 @@ https://media2.streambrothers.com:1936/8150/8150/playlist.m3u8
http://185.189.225.150:85/fdf/index.m3u8
#EXTINF:-1 tvg-id="Fibwi.es",Fibwi (1080p) [Not 24/7]
https://hostcdn3.fibwi.com/fibwi_diario/index.fmp4.m3u8
#EXTINF:-1 tvg-id="FisicaoQuimica.es",Fisica o Quimica (1080p)
https://fast-channels.atresmedia.com/648ef50a2bfab0e4607e0d61/648ef50a2bfab0e4607e0d61.m3u8
#EXTINF:-1 tvg-id="FitelTV.es",Fitel TV (1080p)
https://tv.mywifisocial.es/live.m3u8
#EXTINF:-1 tvg-id="Flooxer.es",Flooxer (1080p)
https://fast-channels.atresmedia.com/5c1285e47ed1a861f8125285/5c1285e47ed1a861f8125285.m3u8
#EXTINF:-1 tvg-id="FuengirolaTV.es",Fuengirola TV (360p) [Not 24/7]
https://secure.todostreaming.es/live/nerja-livestream.m3u8
#EXTINF:-1 tvg-id="FuerteventuraTV.es",Fuerteventura TV (1080p)
@ -325,12 +277,8 @@ https://interalmeria.tv/directo/live.m3u8
https://streamingtvi.gestec-video.com/hls/tvixa.m3u8
#EXTINF:-1 tvg-id="JuntadeCastillayLeon.es",Junta de Castilla y León (1080p) [Not 24/7]
https://16escalones-live2.flumotion.com/chunks.m3u8
#EXTINF:-1 tvg-id="Kidz.es",Kidz Atresmedia (720p) [Geo-blocked]
https://fast-channels.atresmedia.com/648c271d2bfab0e4177a0d61/648c271d2bfab0e4177a0d61.m3u8
#EXTINF:-1 tvg-id="La1.es",La 1 (720p)
https://ztnr.rtve.es/ztnr/1688877.m3u8
#EXTINF:-1 tvg-id="La1.es",La 1 (720p) [Not 24/7]
https://rtvelivestream.akamaized.net/rtvesec/la1/la1_main_dvr.m3u8
#EXTINF:-1 tvg-id="La1Canarias.es",La 1 Canarias (720p)
https://ztnr.rtve.es/ztnr/5190066.m3u8
#EXTINF:-1 tvg-id="La1Canarias.es",La 1 Canarias (720p) [Not 24/7]
@ -399,8 +347,6 @@ https://shls-live-ak.akamaized.net/out/v1/b06a89a463764d3688cda337d40dc5bf/index
https://streaming013.gestec-video.com/hls/negociostv.m3u8
#EXTINF:-1 tvg-id="Neox.es",Neox (576p)
http://185.189.225.150:85/neox/index.m3u8
#EXTINF:-1 tvg-id="Nickelodeon.es",Nickelodeon (480p)
http://181.78.109.48:8000/play/a05a/index.m3u8
#EXTINF:-1 tvg-id="Nickelodeon.es",Nickelodeon (Spain) (576p)
http://185.189.225.150:85/nickelodeon/index.m3u8
#EXTINF:-1 tvg-id="NoroesteTV.es",Noroeste TV (1080p) [Not 24/7]
@ -612,14 +558,6 @@ https://emision.arpamedia.es:4343/hls/tvsanvicenteweb.m3u8
https://streaming.tvt.es:8080/hls/tvb_interno/live.m3u8
#EXTINF:-1 tvg-id="TVCentroAndalucia.es",TVCentro Andalucía (720p) [Not 24/7]
https://5fa5de1a545ae.streamlock.net/8052/8052/playlist.m3u8
#EXTINF:-1 tvg-id="TVEInternacionalAmerica.es",TVE Internacional America (1080p)
https://rtvelivestream.akamaized.net/rtvesec/int/tvei_ame_main.m3u8
#EXTINF:-1 tvg-id="TVEInternacionalAsiaOceania.es",TVE Internacional Asia-Oceania [Geo-blocked]
https://rtvelivestream.akamaized.net/rtvesec/int/tvei_asia_main.m3u8
#EXTINF:-1 tvg-id="TVEInternacionalEuropeAsia.es",TVE Internacional Europe-Asia [Geo-blocked]
https://rtvelivestream.akamaized.net/rtvesec/int/tvei_eu_main.m3u8
#EXTINF:-1 tvg-id="TVEStarHD.es",TVE Star HD (1080p)
https://rtvelivestream.akamaized.net/rtvesec/int/star_main.m3u8
#EXTINF:-1 tvg-id="TelevisiondeGalicia.es",TVG (720p)
https://europa-crtvg.flumotion.com/crtvg/europa_high/playlist.m3u8
#EXTINF:-1 tvg-id="TVG2.es",TVG2 (720p) [Not 24/7]
@ -687,7 +625,35 @@ https://janus.xpbroadcasting.com:8443/hls/xptvUS.m3u8
#EXTINF:-1 tvg-id="ZafraTV.es" http-referrer="https://player.streamingconnect.com/",Zafra TV (1080p)
#EXTVLCOPT:http-referrer=https://player.streamingconnect.com/
https://cloud.fastchannel.es/mic/manifiest/hls/radiotvzafra/radiotvzafra.m3u8
#EXTINF:-1 tvg-id="BomCine.es",Bom Cine (720p)
https://tsw.streamingwebtv24.it:1936/inteccdn3/inteccdn3/playlist.m3u8
#EXTINF:-1 tvg-id="Squirrel.es",Squirrel (1080p)
https://tsw.streamingwebtv24.it:1936/inteccdn1/inteccdn1/playlist.m3u8
#EXTINF:-1 tvg-id="28kanala.es@SD",28 kanala
https://streaming.28kanala.eus/hls/z.m3u8
#EXTINF:-1 tvg-id="BarcaTV.es@SD",Barca TV
https://live20.bozztv.com/dvrfl06/astv/astv-barca/index.m3u8
#EXTINF:-1 tvg-id="APunt.es@SD",A Punt
https://bcovlive-a.akamaihd.net/8499d938ef904e39b58a4adec2ddeada/eu-west-1/6057955885001/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="Teledeporte.es@HEVC",Teledeporte HEVC
https://d2a02gfcid1k4a.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-clihr3vf54f9j/Teledeporte_ES.m3u8
#EXTINF:-1 tvg-id="La1.es@HEVC",La 1 HEVC
https://dh6vo1bovy43s.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-x3gcl32l5ffq2/La_1_ES.m3u8
#EXTINF:-1 tvg-id="CanalSurAndalucia.es@HEVC",Canal Sur Andalucia HEVC
https://d35x6iaiw8f75z.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-kbwsl0jk1bvoo/canal_sur_andalucia_es.m3u8
#EXTINF:-1 tvg-id="CanalSurAndalucia.es@SD",Canal Sur Andalucia
https://live-24-canalsur.interactvty.pro/9bb0f4edcb8946e79f5017ddca6c02b0/26af5488cda642ed2eddd27a6328c93b9c03e9181b9d0a825147a7d978e69202.m3u8
#EXTINF:-1 tvg-id="101tvSevilla.es" http-referrer="https://player.instantvideocloud.net/",101tv Sevilla
#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/
https://liveingesta318.cdnmedia.tv/101weblive/smil:sevilla.smil/playlist.m3u8
#EXTINF:-1 tvg-id="101tvMalaga.es" http-referrer="https://player.instantvideocloud.net/",101tv Malaga
#EXTVLCOPT:http-referrer=https://player.instantvideocloud.net/
https://liveingesta318.cdnmedia.tv/101weblive/smil:malaga.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CanalSurNoticias.es@SD",Canal Sur Noticias
https://cdnlive.codev8.net/rtvalive/smil:channel42.smil/playlist.m3u8
#EXTINF:-1 tvg-id="24Horas.es@HEVC",24 Horas HEVC
https://d3pfmk89wc0vm9.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-nlow3qkp9tmdm/24H_ES.m3u8
#EXTINF:-1 tvg-id="Clan.es@HEVC",Clan HEVC
https://d3nnqrdb77sy13.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-eimbp20cszixb/Clan_ES.m3u8
#EXTINF:-1 tvg-id="La2.es@HEVC",La 2 HEVC
https://di2qeq48iv8ps.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-o8u23e6v7vptv/La_2_ES.m3u8
#EXTINF:-1 tvg-id="HOLAPlay.es@SD",HOLA! Play (1080p)
https://hola-play-2108fd06-86d4-44e8-9867-c35b4895a1c1-es.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6433/master.m3u8
#EXTINF:-1 tvg-id="Syfy.es@SD",Syfy
http://185.189.225.150:85/syfy/index.m3u8

View File

@ -12,23 +12,11 @@ https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aabee6f4a2c0007
#EXTINF:-1 tvg-id="PlutoTVAnimales.us@Spain",Pluto TV Animales (288p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dd834c66fe2ca0009303b8d/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId=
#EXTINF:-1 tvg-id="PlutoTVCineAccion.us@Spain",Pluto TV Cine Acción (720p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5d8d164d92e97a5e107638d2&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=904&terminate=false&userId=
#EXTINF:-1 tvg-id="PlutoTVCineAccion.us@Spain",Pluto TV Cine Acción (720p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcb62e63d4d8f0009f36881/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId=
#EXTINF:-1 tvg-id="PlutoTVCineAccion.us@Spain",Pluto TV Cine Acción (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac2591dd8880007bb7d6d/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCineAccion.us@Spain",Pluto TV Cine Acción (240p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d164d92e97a5e107638d2/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCineClasico.us@Spain",Pluto TV Cine Clásico (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/61373bb45168fe000773eecd/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us@Spain",Pluto TV Cine Estelar (720p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5dcde437229eff00091b6c30/master.m3u8?advertisingId=&appName=web&appVersion=5.14.0-0f5ca04c21649b8c8aad4e56266a23b96d73b83a&app_name=web&clientDeviceType=0&clientID=6fbead95-26b1-415d-998f-1bdef62d10be&clientModelNumber=na&deviceDNT=false&deviceId=6fbead95-26b1-415d-998f-1bdef62d10be&deviceLat=19.4358&deviceLon=-99.1441&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=88.0.4324.150&marketingRegion=VE&serverSideAds=false&sessionID=b8e5a857-714a-11eb-b532-0242ac110002&sid=b8e5a857-714a-11eb-b532-0242ac110002&userId=
#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us@Spain",Pluto TV Cine Estelar (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us@Spain",Pluto TV Cine Estelar (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1ac1f1b66c76000790ef27/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCineEstelar.us@Spain",Pluto TV Cine Estelar (684p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5cf968040ab7d8f181e6a68b/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5cf968040ab7d8f181e6a68b&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=901&terminate=false&userId=
#EXTINF:-1 tvg-id="PlutoTVCocina.us@Spain",Pluto TV Cocina (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d8d0fbaa8742fa3093899da/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVCocina.us@Spain",Pluto TV Cocina (720p)
@ -65,7 +53,7 @@ https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5f1214a63
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aab1d29b39600073e243f/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aab1d29b39600073e243f&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=910&terminate=false&userId=
#EXTINF:-1 tvg-id="",Pluto TV MTV Catfish (Spain) (720p) [Not 24/7]
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1ab3c7778230000735cf41/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1ab3c7778230000735cf41&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=305&terminate=false&userId=
#EXTINF:-1 tvg-id="PlutoTVMTVMusicMadeinSpain.us",Pluto TV MTV Music Made in Spain (720p) [Not 24/7]
#EXTINF:-1 tvg-id="MTVMusicMadeinSpain.us@Spain",Pluto TV MTV Music Made in Spain (720p) [Not 24/7]
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60a26a056d55b30007918d5a/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&serverSideAds=false&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="",Pluto TV MTV Originals (Spain) (480p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5f1aadf373bed3000794d1d7/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5f1aadf373bed3000794d1d7&deviceLat=41.1167&deviceLon=1.2500&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=ES&serverSideAds=false&sid=300&terminate=false&userId=
@ -77,9 +65,9 @@ https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5d93b4d71
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60016a60a8e3520008e0d331/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&is_lat=1&platform=web&rdid=channel&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVTelenovelas.us@Spain",Pluto TV Telenovelas (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/60b4c06717da110007ee1af6/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&serverSideAds=false&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us",Pluto TV The Walking Dead ESP (720p)
#EXTINF:-1 tvg-id="TheWalkingDeadenEspanol.us",Pluto TV The Walking Dead ESP (720p)
https://service-stitcher.clusters.pluto.tv/stitch/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=&appName=web&appStoreUrl=&appVersion=DNT&app_name=&architecture=&buildVersion=&deviceDNT=0&deviceId=5e82bb378601b80007b4bd78&deviceLat=&deviceLon=&deviceMake=web&deviceModel=web&deviceType=web&deviceVersion=DNT&includeExtendedEvents=false&marketingRegion=US&serverSideAds=false&sid=925&terminate=false&userId=
#EXTINF:-1 tvg-id="PlutoTVTheWalkingDeadESP.us",Pluto TV The Walking Dead ESP (720p)
#EXTINF:-1 tvg-id="TheWalkingDeadenEspanol.us",Pluto TV The Walking Dead ESP (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/5e82bb378601b80007b4bd78/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS
#EXTINF:-1 tvg-id="PlutoTVToonsClasico.us@Spain",Pluto TV Toons Clásico (720p)
https://service-stitcher.clusters.pluto.tv/v1/stitch/embed/hls/channel/609e7e423e9173000706a681/master.m3u8?advertisingId=channel&appName=rokuchannel&appVersion=1.0&bmodel=bm1&channel_id=channel&content=channel&content_rating=ROKU_ADS_CONTENT_RATING&content_type=livefeed&coppa=false&deviceDNT=1&deviceId=channel&deviceMake=rokuChannel&deviceModel=web&deviceType=rokuChannel&deviceVersion=1.0&embedPartner=rokuChannel&genre=ROKU_ADS_CONTENT_GENRE&is_lat=1&platform=web&rdid=channel&studio_id=viacom&tags=ROKU_CONTENT_TAGS

View File

@ -1,6 +1,4 @@
#EXTM3U
#EXTINF:-1 tvg-id="",¡HOLA! Play (1080p)
https://hola-play-2108fd06-86d4-44e8-9867-c35b4895a1c1-es.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6433/master.m3u8
#EXTINF:-1 tvg-id="DoctorWho.us@Spain",BBC Doctor Who (1080p)
https://amg00793-amg00793c15-rakuten-es-5359.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="BBCDrama.uk@Spain",BBC Drama (1080p)

View File

@ -1,28 +1,6 @@
#EXTM3U
#EXTINF:-1 tvg-id="Caillou.fr",Caillou
https://dhx-caillou-1-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsSpanish.fr",Euronews en Español (720p)
https://rakuten-euronews-4-es.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="",iHola Play
https://rakuten-hola-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="PeopleAreAwesome.us",People are Awesome
https://jukin-peopleareawesome-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es",Rakuten Action Movies
https://rakuten-actionmovies-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es",Rakuten Comedy Movies
https://rakuten-comedymovies-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es",Rakuten Drama
https://rakuten-tvshows-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es",Rakuten Family
https://rakuten-family-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVSpotlight.es",Rakuten Spotlight
https://rakuten-spotlight-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p)
https://sofytv-samsunges.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="SuperToons.bg",Supertoons TV
https://kedoo-supertoonstv-2-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Tastemade.us",Tastemade
https://tastemade-es16tm-samsung.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="ThePetCollective.us@Spain",The Pet Collective
https://the-pet-collective-international-es.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="TraceSportStars.fr",Trace Sport Stars (1080p) [Geo-blocked]

View File

@ -13,3 +13,5 @@ https://rumble.com/live-hls-dvr/4c14o3/playlist.m3u8
https://ffs3.gulfsat.com/Nesiha-TV/video.m3u8
#EXTINF:-1 tvg-id="WaltaTV.et",Walta TV (614p)
https://live.zergaw.et/hls/1234.m3u8
#EXTINF:-1 tvg-id="MerejaTV.et@SD",Mereja TV
https://g4wlkqp8l23a-hls-live.5centscdn.com/MerejaTV/955ad3298db330b5ee880c2c9e6f23a0.sdp/playlist.m3u8

View File

@ -32,8 +32,6 @@ https://live.streaming.a2d.tv/asset/20025962.isml/.m3u8
https://streaming.nartv.fi/live/ngrp:NAR_TV.stream_all/playlist.m3u8
#EXTINF:-1 tvg-id="NationalGeographic.fi",National Geographic (Finland) (720p) [Geo-blocked]
https://live-fi.tvkaista.net/national-geographic/live.m3u8?hd=true
#EXTINF:-1 tvg-id="NavahangTV.fi",Navahang TV (720p)
https://hls.navahang.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="Nelonen.fi",Nelonen (720p)
https://live-fi.tvkaista.net/nelonen/live.m3u8
#EXTINF:-1 tvg-id="NopolaNews.fi",Nopola News (1080p) [Not 24/7]
@ -62,3 +60,5 @@ https://yletv.akamaized.net/hls/live/622367/yletvteemafemfin/playlist.m3u8
https://yletvworld.akamaized.net/hls/live/622547/yletvteemafemw/index.m3u8
#EXTINF:-1 tvg-id="YleX.fi",YleX Studio Live (720p)
https://ylestudiolive.akamaized.net/hls/live/2007826/ylestudiolive-YleX/master.m3u8
#EXTINF:-1 tvg-id="NavahangTV.fi",Navahang TV (720p)
https://hls.navahang.live/hls/stream.m3u8

View File

@ -1,37 +1,37 @@
#EXTM3U
#EXTINF:-1 tvg-id="",5-Minute Craft (1080p)
https://soul-5mincrafteng-rakuten.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Top Gear Finland (1080p)
https://amg00793-amg00793c49-rakuten-fi-5848.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Celeb Reality (720p)
https://d3453fcf.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWV1X0NlbGViUmVhbGl0eUlOVExfSExT/playlist.m3u8
#EXTINF:-1 tvg-id="",Come Dine With Me (1080p)
https://amg00654-itv-amg00654c2-rakuten-uk-1281.playouts.now.amagi.tv/playlist/amg00654-itvstudiosfast-comedinewithmeukglobal-rakutenuk/playlist.m3u8
#EXTINF:-1 tvg-id="Crime360.us@SD",Crime 360 (720p)
https://94a3e237.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWV1X0NyaW1lMzYwX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="DontTellTheBride.us@SD",Don't Tell The Bride (1080p)
https://lds-donttellbride-rakuten.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Ghost (720p)
https://9485e5d3.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWV1X0dob3N0SU5UTF9ITFM/playlist.m3u8
#EXTINF:-1 tvg-id="",InTravel (1080p)
https://amg00861-amg00861c10-rakuten-uk-3152.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",NatureTime (1080p)
https://bamusa-naturetime-emea-eng-rakuten.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@Finland",Rakuten TV Action Movies (1080p)
https://bca5a421a70c46ad911efd0a4767c4bf.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6075/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@Finland",Rakuten TV Comedy Movies (1080p)
https://a300af98e00746e2acf2346f43e47bd1.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6191/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es@Finland",Rakuten TV Drama Movies (1080p)
https://d7e8ee3c924d4305a0c1840fe94c5d36.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6102/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Finland",Rakuten TV Family Movies (1080p)
https://758ee983d61e400381dea6fa8154f4e0.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6227/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVNordicFilms.es@Finland",Rakuten TV Nordic Films (1080p)
https://4aa9ef08b70d4b0c8f3519c5950b1930.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6303/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Romance Movies Finland (1080p)
https://romance-rakuten-tv-fi.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6744/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVTopMovies.es@Finland",Rakuten TV Top Movies (1080p)
https://1d1b0d4cb6ae4c31985d13221795695b.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6057/master.m3u8
#EXTINF:-1 tvg-id="TrueCrimeNow.us@SD",True Crime Now (1080p)
https://amg00376-magellan-amg00376c11-rakuten-us-1700.playouts.now.amagi.tv/playlist/amg00376-magellantv-truecrimenowww-rakutenus/playlist.m3u8
#EXTINF:-1 tvg-id="",World of Love Island (1080p)
https://worldofloveisland-rakuten.amagi.tv/playlist.m3u8
#EXTM3U
#EXTINF:-1 tvg-id="",5-Minute Craft (1080p)
https://soul-5mincrafteng-rakuten.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Top Gear Finland (1080p)
https://amg00793-amg00793c49-rakuten-fi-5848.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Celeb Reality (720p)
https://d3453fcf.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWV1X0NlbGViUmVhbGl0eUlOVExfSExT/playlist.m3u8
#EXTINF:-1 tvg-id="",Come Dine With Me (1080p)
https://amg00654-itv-amg00654c2-rakuten-uk-1281.playouts.now.amagi.tv/playlist/amg00654-itvstudiosfast-comedinewithmeukglobal-rakutenuk/playlist.m3u8
#EXTINF:-1 tvg-id="Crime360.us@SD",Crime 360 (720p)
https://94a3e237.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWV1X0NyaW1lMzYwX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="DontTellTheBride.us@SD",Don't Tell The Bride (1080p)
https://lds-donttellbride-rakuten.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Ghost (720p)
https://9485e5d3.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWV1X0dob3N0SU5UTF9ITFM/playlist.m3u8
#EXTINF:-1 tvg-id="",InTravel (1080p)
https://amg00861-amg00861c10-rakuten-uk-3152.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",NatureTime (1080p)
https://bamusa-naturetime-emea-eng-rakuten.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@Finland",Rakuten TV Action Movies (1080p)
https://bca5a421a70c46ad911efd0a4767c4bf.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6075/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@Finland",Rakuten TV Comedy Movies (1080p)
https://a300af98e00746e2acf2346f43e47bd1.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6191/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es@Finland",Rakuten TV Drama Movies (1080p)
https://d7e8ee3c924d4305a0c1840fe94c5d36.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6102/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Finland",Rakuten TV Family Movies (1080p)
https://758ee983d61e400381dea6fa8154f4e0.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6227/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVNordicFilms.es@Finland",Rakuten TV Nordic Films (1080p)
https://4aa9ef08b70d4b0c8f3519c5950b1930.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6303/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Romance Movies Finland (1080p)
https://romance-rakuten-tv-fi.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6744/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVTopMovies.es@Finland",Rakuten TV Top Movies (1080p)
https://1d1b0d4cb6ae4c31985d13221795695b.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6057/master.m3u8
#EXTINF:-1 tvg-id="TrueCrimeNow.us@SD",True Crime Now (1080p)
https://amg00376-magellan-amg00376c11-rakuten-us-1700.playouts.now.amagi.tv/playlist/amg00376-magellantv-truecrimenowww-rakutenus/playlist.m3u8
#EXTINF:-1 tvg-id="",World of Love Island (1080p)
https://worldofloveisland-rakuten.amagi.tv/playlist.m3u8

View File

@ -1,11 +1,3 @@
#EXTM3U
#EXTINF:-1 tvg-id="AfricanewsEnglish.fr",AfricaNews English (720p)
https://rakuten-africanews-1-fi.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p)
https://bloomberg-quicktake-1-fi.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="BloombergTV.us",Bloomberg TV US (1080p)
https://bloomberg-bloomberg-1-fi.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsEnglish.fr",Euronews English (720p)
https://rakuten-euronews-1-fi.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Finland",Rakuten Family (Finland) (720p)
https://rakuten-family-12-fi.samsung.wurl.tv/playlist.m3u8

View File

@ -1,3 +1,7 @@
#EXTM3U
#EXTINF:-1 tvg-id="KringvarpForoya.fo",KVF (720p) [Not 24/7]
https://w1.kringvarp.fo/uttanlands/smil:uttanlands.smil/playlist.m3u8
#EXTINF:-1 tvg-id="KVFTingvarp.fo@SD",KVF Tingvarp
https://live.kringvarp.fo/kvf-2_utland/720/playlist.m3u8
#EXTINF:-1 tvg-id="KVFSjonvarp.fo@SD",KVF Sjonvarp
https://live.kringvarp.fo/uttanlands/720/playlist.m3u8

View File

@ -2,53 +2,33 @@
#EXTINF:-1 tvg-id="6ter.fr",6ter
https://origin-caf900c010ea8046.live.6cloud.fr/out/v1/29c7a579af3348b48230f76cd75699a5/dash_short_cenc10_6ter_hd_index.mpd
#EXTINF:-1 tvg-id="20MinutesTV.fr",20 Minutes TV (1080p)
https://lives.digiteka.com/stream/86d3e867-a272-496b-8412-f59aa0104771/index.m3u8
https://live-20minutestv.digiteka.com/1961167769/index.m3u8
#EXTINF:-1 tvg-id="A12TV.ci@SD",A12 TV (720p)
https://video1.getstreamhosting.com:1936/8420/8420/playlist.m3u8
#EXTINF:-1 tvg-id="ADNTVPlus.fr",ADN TV+ (1080p) [Geo-Blocked]
https://samsunguk-adn-samsung-fre-qfrlc.amagi.tv/playlist/samsunguk-adn-samsung-fre/playlist.m3u8
#EXTINF:-1 tvg-id="Africa24.fr",Africa 24 (540p)
https://edge12.vedge.infomaniak.com/livecast/ik:africa24/manifest.m3u8
#EXTINF:-1 tvg-id="Africa24English.fr",Africa 24 English (1080p)
https://edge17.vedge.infomaniak.com/livecast/ik:africa24sport/manifest.m3u8
#EXTINF:-1 tvg-id="Africa24.fr",Africa 24 (1080p)
https://africa24.vedge.infomaniak.com/livecast/ik:africa24/manifest.m3u8
#EXTINF:-1 tvg-id="Africa24Sport.fr",Africa 24 Sport (1080p)
https://africa24.vedge.infomaniak.com/livecast/ik:africa24sport/manifest.m3u8
#EXTINF:-1 tvg-id="AlpedHuezTV.fr",Alpe dHuez TV (720p) [Not 24/7]
https://edge.vedge.infomaniak.com/livecast/ik:adhtv/chunklist.m3u8
https://edge13.vedge.infomaniak.com/livecast/ik:adhtv/manifest.m3u8
#EXTINF:-1 tvg-id="AntenneReunion.fr",Antenne Réunion (720p) [Not 24/7]
https://live-antenne-reunion.zeop.tv/live/c3eds/antreunihd/hls_fta/antreunihd.m3u8?location=ZEOP01
#EXTINF:-1 tvg-id="arte.fr",Arte (1080p) [Geo-blocked]
https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/tf1plus/arte.m3u8
#EXTINF:-1 tvg-id="arte.fr",Arte (720p) [Geo-blocked]
https://artesimulcast.akamaized.net/hls/live/2031003/artelive_fr/index.m3u8
#EXTINF:-1 tvg-id="AssembleeNationale.fr",Assemblée Nationale (1080p) [Not 24/7]
http://anorigin.vodalys.com/live/live36/index36_12856975.m3u8?DVR=
#EXTINF:-1 tvg-id="BblackAfrica.fr",Bblack! Africa (1080p)
http://livevideo.vedge.infomaniak.com/livecast/ik:bblackafrica/manifest.m3u8
#EXTINF:-1 tvg-id="BblackCaribbean.fr",Bblack! Caribbean (1080p)
http://livevideo.vedge.infomaniak.com/livecast/ik:bblackcaribbean/manifest.m3u8
#EXTINF:-1 tvg-id="BblackClassik.fr",Bblack! Classik (1080p)
http://livevideo.vedge.infomaniak.com/livecast/ik:bblackclassik/manifest.m3u8
#EXTINF:-1 tvg-id="BIPTV.fr",BIP TV (480p) [Not 24/7]
https://biptv.tv/live/biptvstream_orig/index.m3u8
https://www.biptv.tv/live/biptvstream.m3u8
#EXTINF:-1 tvg-id="BrionnaisTV.fr",Brionnais TV (720p)
https://stream2.mandarine.media/brionnaistv/brionnaistv/playlist.m3u8
#EXTINF:-1 tvg-id="CStar.fr",C Star (1080p)
http://213.246.39.14:8070/cstar/index.m3u8
#EXTINF:-1 tvg-id="Canal32.fr",Canal 32 (1080p)
http://livevideo.vedge.infomaniak.com/livecast/ik:canal32/manifest.m3u8
#EXTINF:-1 tvg-id="Canal32.fr",Canal 32 (480p)
https://edge13.vedge.infomaniak.com/livecast/ik:canal32/manifest.m3u8
https://event.vedge.infomaniak.com/livecast/ik:canal32_4/manifest.m3u8
#EXTINF:-1 tvg-id="CannesLerinsTV.fr",Cannes Lérins TV (1080p)
https://vdo2.pro-fhi.net:3628/live/uppodsfqlive.m3u8
#EXTINF:-1 tvg-id="CDirect.fr",CDirect (360p)
http://51.254.199.122:8080/cdirectTV/index.m3u8
#EXTINF:-1 tvg-id="CentralTV.fr",Central TV (614p) [Not 24/7]
http://cdn2.ujjina.com:1935/iptvcentraltv/livecentraltvtv/playlist.m3u8
#EXTINF:-1 tvg-id="Cherie25.fr",Chérie 25 (1080p)
https://cherie25.nrjaudio.fm/hls/live/2038375/c25/FHD.m3u8
#EXTINF:-1 tvg-id="CNews.fr",CNews (1080p) [Geo-blocked]
https://raw.githubusercontent.com/LeBazarDeBryan/XTVZ_/main/Stream/Live/CNews.m3u8
#EXTINF:-1 tvg-id="D5tv.fr",D5tv (1080p)
https://live.creacast.com/d5tv/smil:d5tv.smil/playlist.m3u8
#EXTINF:-1 tvg-id="DBMTV.fr",DBM (1080p)
https://edge.vedge.infomaniak.com/livecast/ik:dbmtv/manifest.m3u8
#EXTINF:-1 tvg-id="DBMTV.fr",DBM TV (1080p)
https://dbmtv.vedge.infomaniak.com/livecast/dbmtv/playlist.m3u8
#EXTINF:-1 tvg-id="Equidia.fr@SD",Equidia (1080p)
@ -57,10 +37,6 @@ https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/equidia/live2.
https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/equidia/racingmag.m3u8
#EXTINF:-1 tvg-id="EreTV.fr",Ère TV (1080p)
https://mn-nl.mncdn.com/awraastv/awraastv_hd.smil/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsEnglish.fr@HD",Euronews English HD (1080p)
http://stream01.vnet.am/Channel_119/mono.m3u8
#EXTINF:-1 tvg-id="FashionTVCzechSlovak.fr",FashionTV Czech&Slovak (450p) [Not 24/7]
http://lb.streaming.sk/fashiontv/stream/playlist.m3u8
#EXTINF:-1 tvg-id="France2.fr",France 2 (1080p)
http://69.64.57.208/france2/mono.m3u8
#EXTINF:-1 tvg-id="France2.fr",France 2 (1080p) [Geo-blocked]
@ -143,10 +119,8 @@ http://mv2.tvfrancophonie.org/live/Stream1/playlist.m3u8
https://5421175365ea3.streamlock.net/live/smil:switch.smil/playlist.m3u8
#EXTINF:-1 tvg-id="FunRadio.fr",Fun Radio (720p)
https://livevideo.infomaniak.com/streaming/livecast/funradiovisionhd/playlist.m3u8
#EXTINF:-1 tvg-id="FX2.fr",FX2 Farsi
https://toonixhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="GenerationsTV.fr",Generations TV (576p)
https://edge.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8
https://event.vedge.infomaniak.com/livecast/ik:generation-tv/manifest.m3u8
#EXTINF:-1 tvg-id="HANDICAPTV.fr",HANDICAP TV France
https://srv.webtvmanager.fr:3697/stream/play.m3u8
#EXTINF:-1 tvg-id="HolyGodTV.fr",HolyGod TV (720p)
@ -171,34 +145,18 @@ https://figarotv-live.freecaster.com/live/freecaster/figarotv.m3u8
https://static.lefigaro.fr/secom/tnt.m3u8
#EXTINF:-1 tvg-id="LittoralFMTV.fr",Littoral FM (720p)
https://live.creacast.com/littoralfm-ch1/stream/playlist.m3u8
#EXTINF:-1 tvg-id="MCM.fr",MCM
http://213.246.39.14:8070/MCM/index.m3u8
#EXTINF:-1 tvg-id="MDL.fr",MDL (720p)
http://tv.mondeduloisir.fr:1935/tixtv/smil:web.smil/playlist.m3u8
#EXTINF:-1 tvg-id="MTV.fr",MTV (1080p)
http://213.246.39.14:8070/MTV/index.m3u8
#EXTINF:-1 tvg-id="MTV.fr",MTV France (720p) [Not 24/7]
http://190.2.155.162:8080/mtvfrance/mpegts
#EXTINF:-1 tvg-id="MTVHits.fr",MTV Hits France (720p)
http://178.170.47.109/MTVHITS/index.m3u8
#EXTINF:-1 tvg-id="MTVHits.fr",MTV Hits France (720p) [Not 24/7]
http://190.2.155.162:8080/mtvhit/mpegts
#EXTINF:-1 tvg-id="MuseumTVFrench.fr",Museum TV (1080p)
https://live2.creacast.com/museum-france/smil:museum-france.smil/master.m3u8
#EXTINF:-1 tvg-id="MuseumTVEnglish.fr",Museum TV English (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01492-secomsasmediart-museumtven-xiaomi/playlist.m3u8
#EXTINF:-1 tvg-id="MyZenTV.fr",MyZen TV (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01255-secomcofites-my-myzen-en-plex/playlist.m3u8
#EXTINF:-1 tvg-id="NancyWebTV.fr",Nancy Web TV (394p) [Not 24/7]
https://edge.vedge.infomaniak.com/livecast/ik:nancy-webtv/manifest.m3u8
#EXTINF:-1 tvg-id="NLMTV.fr",NLM TV (720p)
https://ktismaservers.in:3394/stream/play.m3u8
#EXTINF:-1 tvg-id="P2MTV.fr",P2M TV (720p)
https://vdo2.pro-fhi.net:3207/stream/play.m3u8
#EXTINF:-1 tvg-id="PersianaLatino.fr",Persiana Latino (720p)
https://latinohls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaTwo.fr",Persiana Two (720p)
https://twohls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="RMCDecouverte.fr",RMC Découverte (1080p)
https://d2mt8for1pddy4.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-6uronj7gzvy4j/index.m3u8
#EXTINF:-1 tvg-id="RMCStory.fr",RMC Story (1080p)
@ -209,6 +167,8 @@ https://sp1564435593.mytvchain.info/live/sp1564435593/index.m3u8
https://sp1564435593.mytvchain.info/live/sp1564435593_720/index.m3u8
#EXTINF:-1 tvg-id="SportenFrance.fr",Sport En France (360p)
https://sp1564435593.mytvchain.info/live/sp1564435593_360/index.m3u8
#EXTINF:-1 tvg-id="T18.fr",T18 (1080p)
https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/t18/t18-dm.m3u8
#EXTINF:-1 tvg-id="TebeoTV.fr",Tébéo TV (1080p)
https://start-1.direct.live/hls/tebeo.m3u8
#EXTINF:-1 tvg-id="TebeSud.fr",TébéSud (1080p)
@ -223,14 +183,10 @@ https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/tf1plus/tf1.m3
https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/tf1plus/tf1sf.m3u8
#EXTINF:-1 tvg-id="TFX.fr",TFX (720p) [Geo-blocked]
https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/tf1plus/tfx.m3u8
#EXTINF:-1 tvg-id="TiVi5Monde.fr",TiVi5Monde (1080p)
http://154.197.91.168:7001/play/a0dz/index.m3u8
#EXTINF:-1 tvg-id="TiVi5Monde.fr",TiVi5 Monde [Geo-blocked]
https://ott.tv5monde.com/Content/HLS/Live/channel(tivi5)/variant.m3u8
#EXTINF:-1 tvg-id="TMC.fr",TMC (720p) [Geo-blocked]
https://raw.githubusercontent.com/Paradise-91/ParaTV/main/streams/tf1plus/tmc.m3u8
#EXTINF:-1 tvg-id="TraceLatina.fr",Trace Latina
http://185.234.217.27:8002/play/a02f/index.m3u8
#EXTINF:-1 tvg-id="TV3V.fr",TV3V (720p)
https://tv3v.hdr-tv.com/live/tv3v/livestream/master.m3u8
#EXTINF:-1 tvg-id="TV5MondeAsia.fr",TV5 Monde Asia (Asie) (1080p) [Geo-blocked]
@ -283,3 +239,23 @@ https://live-cdn-stream-euw1.bfmb.bct.nextradiotv.com/master.m3u8
https://live-cdn-stream-euw1.bfmtv.bct.nextradiotv.com/master.m3u8
#EXTINF:-1 tvg-id="MonteCarloDigitalTelevision.fr",Monte Carlo Digital Television (1080p)
https://fl718492-exthls-p1.flovp.com/fl718492/live/live.m3u8
#EXTINF:-1 tvg-id="PuissanceTV.fr@SD",Puissance TV
https://event.vedge.infomaniak.com/livecast/ik:puissancetelevision/manifest.m3u8
#EXTINF:-1 tvg-id="LEquipe.fr",L'Equipe (1080p)
https://dshn8inoshngm.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-gac2i63dmu8b7/LEquipe_FR.m3u8
#EXTINF:-1 tvg-id="LEquipe.fr@Live2",L'Equipe Live2
https://d2l55nvfkhk4sg.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-jg7go1lqzgpny-ssai-prd/master.m3u8
#EXTINF:-1 tvg-id="LEquipe.fr@Live1",L'Equipe Live1
https://d3awaj0f2u3w26.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-gy7euubgydp20-ssai-prd/master.m3u8
#EXTINF:-1 tvg-id="AfricanewsFrench.fr@SD",Africanews French (720p)
https://2767164d5ee04887b96812a9eea74d32.mediatailor.eu-west-1.amazonaws.com/v1/manifest/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6573/44d3df93-4a3e-43e0-990f-a5d196bbe3aa/5.m3u8
#EXTINF:-1 tvg-id="France5.fr@HD",France 5 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/france5hd/browser-dash/france5hd.mpd
#EXTINF:-1 tvg-id="France4.fr@HD",France 4 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/france4hd/browser-dash/france4hd.mpd
#EXTINF:-1 tvg-id="France3.fr@HD",France 3 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/france3hd/browser-dash/france3hd.mpd
#EXTINF:-1 tvg-id="France2.fr@HD",France 2 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/france2hd/browser-dash/france2hd.mpd
#EXTINF:-1 tvg-id="TF1.fr@HD",TF1 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/tf1hd/browser-dash/tf1hd.mpd

View File

@ -1,8 +1,10 @@
#EXTM3U
#EXTINF:-1 tvg-id="4KurdHD.fr",Persiana 4Kurd
#EXTINF:-1 tvg-id="4Kurd.fr",Persiana 4Kurd
https://4kuhls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaCinema.fr",Persiana Cinema
https://cinehls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaCinema.fr",Persiana Cinema
https://todayhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaComedy.fr",Persiana Comedy
https://comedyhls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaFamily.fr",Persiana Family
@ -28,10 +30,10 @@ https://scihls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaSonnati.fr",Persiana Sonnati
https://sonhls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaSports.fr",Persiana Sport
https://persiana.mastercast.cloud/memfs/f1accec0-3b52-476b-ada9-65f74ead985e.m3u8
#EXTINF:-1 tvg-id="PersianaSports.fr",Persiana Sports (720p)
https://af.ayas.ir/hls2/persiana.m3u8
https://edge06.776740.ir.cdn.ir/hls2/persiana.m3u8
#EXTINF:-1 tvg-id="PersianaTurkiye.fr",Persiana Turkiye
https://turkhls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PokerTV.fr",Poker TV (720p)
https://hls.pokertvfa.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaLatino.fr",Persiana Latino (720p)
https://latinohls.persiana.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianaTwo.fr",Persiana Two (720p)
https://twohls.persiana.live/hls/stream.m3u8

View File

@ -25,7 +25,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/61
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/63b579961bdba100071214cb/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e06ff23-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=410cc83b-4396-41a0-b726-70e8f1e3fea4
#EXTINF:-1 tvg-id="",Car Chase
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/65bd05483a11680007813560/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e074d43-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=e6543233-9385-400c-9f39-b1ad35070504
#EXTINF:-1 tvg-id="PlutoTVCatfish.us@SD",CATFISH TV
#EXTINF:-1 tvg-id="CatfishTVShow.us@SD",CATFISH TV
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5f8eb66537867f0007146953/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e04b530-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=49bb6c77-a3e5-4314-90b2-4494da60cda0
#EXTINF:-1 tvg-id="CBSNews247.us",CBS News 24/7
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6231ec93779a9d00079ba8e2/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e0689f3-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=fed25d80-74f3-47d1-a87b-51755ac6ef8a
@ -195,7 +195,7 @@ http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/5f
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/625ec7a1c853fd00073b38fd/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e0689f7-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=73335f0a-bb15-4a60-b2d2-8eaac6dadf6f
#EXTINF:-1 tvg-id="PlutoTVSports.us@France",Pluto TV Sports
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/6081310e48d3200007afaf3b/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e05c6a5-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=aa2cd1f8-5f20-441d-97cb-63e4c1c5e4f6
#EXTINF:-1 tvg-id="PlutoTVStarTrek.us@France",Pluto TV Star Trek
#EXTINF:-1 tvg-id="StarTrek.us@France",Pluto TV Star Trek
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/61f93af0b253440007c54ad8/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e0689f0-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=84850a7e-c30d-4988-863c-25f2007665d9
#EXTINF:-1 tvg-id="",Pluto TV Super Kids
http://cfd-v4-service-channel-stitcher-use1-1.prd.pluto.tv/stitch/hls/channel/652557d93fd33c000802f995/master.m3u8?appName=web&appVersion=unknown&clientTime=0&deviceDNT=0&deviceId=8e072636-1f2c-11ef-86d8-5d587df108c6&deviceMake=Chrome&deviceModel=web&deviceType=web&deviceVersion=unknown&includeExtendedEvents=false&serverSideAds=false&sid=3cdbfc7d-6e82-40c4-be54-7974658b4cc2

View File

@ -1,34 +1,8 @@
#EXTM3U
#EXTINF:-1 tvg-id="",BBC Doctor Who
https://bbceu-doctorwho-3-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="BBCDrama.uk@France",BBC Drama
https://bbceu-bbcdrama-1-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Bloomberg TV+ UHD (2160p)
https://bloomberg-bloombergtv-1-fr.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="Caillou.fr",Caillou
https://dhx-caillou-2-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsFrench.fr",Euronews Français (720p)
https://euronews-euronews-french-3-us.plex.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsFrench.fr",Euronews Français (720p)
https://rakuten-euronews-2-fr.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="",Mytime Movies (1080p)
https://mytimefrance-rakuten-samsung.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@France",Rakuten Action Movies (720p)
https://rakuten-actionmovies-7-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@France",Rakuten Comedy Movies (720p)
https://rakuten-comedymovies-7-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@France",Rakuten Family (720p)
https://rakuten-family-7-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVSpotlight.es@France",Rakuten Spotlight (720p)
https://rakuten-spotlight-7-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Shows (720p)
https://rakuten-tvshows-7-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p)
https://sofytv-samsungfr.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Stormcast Novelas TV
https://stormcast-telenovelatv-1-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="SuperToons.bg",Supertoons TV
https://kedoo-supertoonstv-3-fr.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="TNTV.pf",TNTV (1080p)
https://tntv-samsung-fr.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="WildSideTV.fr",Wildside TV (720p)

View File

@ -29,3 +29,31 @@ http://31.146.5.178:8087/play/a00b/index.m3u8
http://31.146.5.178:8087/play/a00a/index.m3u8
#EXTINF:-1 tvg-id="Rustavi2.ge",Rustavi 2
http://31.146.5.178:8087/play/a008/index.m3u8
#EXTINF:-1 tvg-id="Ertsulovneba.ge@SD",Ertsulovneba
https://stream.sstv.ge/live/sstv/playlist.m3u8
#EXTINF:-1 tvg-id="KavkasiaTV.ge@SD",Kavkasia TV
http://dvrfl05.bozztv.com/gin-kavkasia/index.m3u8
#EXTINF:-1 tvg-id="MaraoTV.ge@SD",Marao TV
http://dvrfl05.bozztv.com/gin-marao/index.m3u8
#EXTINF:-1 tvg-id="Adjarasport1.ge@SD",Adjarasport 1
https://live20.bozztv.com/dvrfl05/gin-adjara/index.m3u8
#EXTINF:-1 tvg-id="KartuliTV.ge@SD",Kartuli TV (480p)
http://dvrfl05.bozztv.com/gin-qartulitv/index.m3u8
#EXTINF:-1 tvg-id="ObieqtiviTV.ge@SD",Obieqtivi TV
https://live20.bozztv.com/dvrfl05/gin-obieqtivitv/index.m3u8
#EXTINF:-1 tvg-id="SilkUniversal.ge@SD",Silk Universal
http://dvrfl05.bozztv.com/gin-silkuniversal/index.m3u8
#EXTINF:-1 tvg-id="MtavariArkhi.ge@SD",Mtavari Arkhi
https://live20.bozztv.com/dvrfl05/gin-mtavariarxi/index.m3u8
#EXTINF:-1 tvg-id="EuronewsGeorgia.ge@SD",Euronews Georgia
http://dvrfl05.bozztv.com/gin-euronewsgeorgia/index.m3u8
#EXTINF:-1 tvg-id="TV25.ge@SD",TV 25
http://dvrfl05.bozztv.com/gin-tv25/index.m3u8
#EXTINF:-1 tvg-id="TVPirveli.ge@SD",TV Pirveli
http://dvrfl05.bozztv.com/gin-tvpirveli/index.m3u8
#EXTINF:-1 tvg-id="ComedyTV.ge@SD",Comedy TV
http://dvrfl05.bozztv.com/gin-comedyarxi/index.m3u8
#EXTINF:-1 tvg-id="Rustavi2.ge@SD",Rustavi 2
http://dvrfl05.bozztv.com/gin-rustavi2/index.m3u8
#EXTINF:-1 tvg-id="PosTV.ge@SD",Pos TV
http://dvrfl05.bozztv.com/gin-postv/index.m3u8

View File

@ -43,3 +43,49 @@ https://live.mediageneral.digital/live/livestream.m3u8
http://69.64.57.208/joyprime/playlist.m3u8
#EXTINF:-1 tvg-id="JoyNews.gh",Joy News
http://69.64.57.208/joynews/playlist.m3u8
#EXTINF:-1 tvg-id="FishTV.gh",Fish TV
https://tv.localstreamgh.com/fishtv/index.m3u8
#EXTINF:-1 tvg-id="",G-eye TV
https://online.geyetv.com/hls/stream.m3u8
#EXTINF:-1 tvg-id="MabeshTV.gh@SD",Mabesh TV
https://tv.localstreamgh.com/MabeshTV/index.m3u8
#EXTINF:-1 tvg-id="GhOneTV.gh@SD",Gh One TV
https://g2qd3exjy7an-hls-live.5centscdn.com/ghonetv/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="UnitedTV.gh@SD",United TV
https://g2qd3exjy7an-hls-live.5centscdn.com/utvgha/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="TV3.gh@SD",TV3
https://g2qd3exjy7an-hls-live.5centscdn.com/webtv3/ghanatv.stream/playlist.m3u8
#EXTINF:-1 tvg-id="JoyPrime.gh@SD",Joy Prime
https://g2qd3exjy7an-hls-live.5centscdn.com/joyprim/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="MOGPATV.gh@SD",MOGPA TV
https://bk7l2r2nyx53-hls-live.5centscdn.com/ablazetv/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="MaranathaTV.gh@SD",Maranatha TV
https://media.streambrothers.com:1936/8298/8298/playlist.m3u8
#EXTINF:-1 tvg-id="OTV.gh@SD",OTV
https://5dcabf026b188.streamlock.net/OceansTV/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="GTV.gh@SD",GTV
https://g2qd3exjy7an-hls-live.5centscdn.com/gtvghana/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="GTVSportsPlus.gh@SD",GTV Sports +
https://g2qd3exjy7an-hls-live.5centscdn.com/gtvsport/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="AtinkaTV.gh@SD",Atinka TV
https://g2qd3exjy7an-hls-live.5centscdn.com/atinkkatv/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="MetroTV.gh@SD",Metro TV
https://g2qd3exjy7an-hls-live.5centscdn.com/metrotvg/ghanaweb.stream/playlist.m3u8
#EXTINF:-1 tvg-id="MaxTV.gh@SD",Max TV
https://tv.qixapps.com/hls/006bea00-06e8-440e-babe-0a588e1138f2.m3u8
#EXTINF:-1 tvg-id="MOGPATVPlus.gh@SD",MOGPA TV Plus
https://bk7l2r2nyx53-hls-live.5centscdn.com/mogpatvplus/2567a5ec9705eb7ac2c984033e06189d.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="KessbenTV.gh@SD",Kessben TV
https://live20.bozztv.com/dvrfl06/astv/astv-kessben/index.m3u8
#EXTINF:-1 tvg-id="TVXyz.gh@SD",TV Xyz
https://live20.bozztv.com/dvrfl06/astv/astv-xyzghana/index.m3u8
#EXTINF:-1 tvg-id="AdomTV.gh@SD",Adom TV
https://live20.bozztv.com/dvrfl06/astv/astv-adom/index.m3u8
#EXTINF:-1 tvg-id="RoyalTV.gh@SD",Royal TV
https://live20.bozztv.com/dvrfl06/astv/astv-royaltv/index.m3u8
#EXTINF:-1 tvg-id="FireTV.gh@SD",Fire TV
https://live20.bozztv.com/dvrfl06/astv/astv-rock/index.m3u8
#EXTINF:-1 tvg-id="PreciousTV.gh@SD",Precious TV
https://live20.bozztv.com/dvrfl06/astv/astv-precious/index.m3u8
#EXTINF:-1 tvg-id="ElijahTV.gh@SD",Elijah TV
https://live20.bozztv.com/dvrfl06/astv/astv-elijah/index.m3u8

View File

@ -5,7 +5,7 @@ https://guineetvdirect.online:3320/live/atvguineelive.m3u8
https://edge11.vedge.infomaniak.com/livecast/ik:espacetv/manifest.m3u8
#EXTINF:-1 tvg-id="KabackTV.gn",Kaback TV (720p)
https://guineetvdirect.online:3842/live/kabacktvlive.m3u8
#EXTINF:-1 tvg-id="KalacTV.gn",Kalac TV (1080p)
https://edge.vedge.infomaniak.com/livecast/ik:kalactv/manifest.m3u8
#EXTINF:-1 tvg-id="KalacTV.gn@SD",Kalac TV (1080p)
https://edge13.vedge.infomaniak.com/livecast/ik:kalactv/chunklist_w280736538.m3u8
#EXTINF:-1 tvg-id="RTG1.gn",RTG 1
http://69.64.57.208/rtg/playlist.m3u8

View File

@ -279,3 +279,13 @@ https://vod.streams.ovh:3037/stream/play.m3u8
http://l3.cloudskep.com/cybcsat/abr/playlist.m3u8
#EXTINF:-1 tvg-id="ARTTV.gr",ART TV
https://rtmp.win:3696/live/arttvgrlive.m3u8
#EXTINF:-1 tvg-id="Tilemousiki.gr@SD",Tilemousiki
https://live20.bozztv.com/akamaissh101/ssh101/tilemousiki/playlist.m3u8
#EXTINF:-1 tvg-id="ExtacyTV.gr@SD",Extacy TV
https://fr.crystalweb.net:1936/extacytv/extacytv/playlist.m3u8
#EXTINF:-1 tvg-id="ANT1.gr@HD",ANT1 HD (1080p)
http://31.121.110.30:4000/play/a028/index.m3u8
#EXTINF:-1 tvg-id="ERT3.gr@HD",ERT3 HD (1080p)
http://31.121.110.30:4000/play/a029/index.m3u8
#EXTINF:-1 tvg-id="ERT2.gr@HD",ERT2 HD (1080p)
http://31.121.110.30:4000/play/a02a/index.m3u8

View File

@ -3,8 +3,8 @@
https://stream.alojamientowebgt.com:3656/live/tv45live.m3u8
#EXTINF:-1 tvg-id="504TV.hn",504 TV (720p)
https://mediacp.us:8081/504tvhn/index.m3u8
#EXTINF:-1 tvg-id="ActivaTV.hn",Activa TV (720p)
https://videoserver.tmcreativos.com:19360/mbcrtzxnxd/mbcrtzxnxd.m3u8
#EXTINF:-1 tvg-id="ActivaTV.hn@SD",Activa TV (720p)
https://streamtv.mediasector.es/hls/activatv/index.m3u8
#EXTINF:-1 tvg-id="AlfaOmegaVision.hn",Alfa & Omega Vision (480p) [Not 24/7]
https://srv.panelcast.net/dorian/dorian/playlist.m3u8
#EXTINF:-1 tvg-id="AlsaciasTelevision.hn",Alsacias Televisión (ATV | Canal 28) (720p)
@ -109,8 +109,8 @@ https://stream.oursnetworktv.com/latin/Tv39Talanga/playlist.m3u8
https://stream.oursnetworktv.com/latin/TierraDeValientes/playlist.m3u8
#EXTINF:-1 tvg-id="Telavision.hn",Telavisión (720p)
https://stream.oursnetworktv.com/latin/telaVision/playlist.m3u8
#EXTINF:-1 tvg-id="Teleceiba.hn",Teleceiba (1080p)
https://astra.teleceiba.com:8443/play/a004/index.m3u8
#EXTINF:-1 tvg-id="Teleceiba.hn@SD",Teleceiba (1080p)
https://dvrfl03.bozztv.com/hondu-teleceiba/index.m3u8
#EXTINF:-1 tvg-id="TeleDanli.hn",TeleDanlí Canal 9 (720p) [Not 24/7]
https://cloud2.streaminglivehd.com:1936/8224/8224/playlist.m3u8
#EXTINF:-1 tvg-id="Telemas.hn",Telemás (720p)
@ -150,3 +150,27 @@ https://mediacp.us:8081/vallevision/index.m3u8
https://d3q93l5bumjyoq.cloudfront.net/index.m3u8
#EXTINF:-1 tvg-id="WaldivisionInternacional.hn",Waldivisión Internacional (480p)
https://cloud5.streaminglivehd.com:3114/live/tnnhonduraslive.m3u8
#EXTINF:-1 tvg-id="RSVHonduras.hn@SD",RSV Honduras
https://live20.bozztv.com/dvrfl03/hondu/hondu-rsvhonduras/index.m3u8
#EXTINF:-1 tvg-id="GoTV.hn@SD",Go TV
https://dvrfl03.bozztv.com/hondu/hondu-gotv/index.m3u8
#EXTINF:-1 tvg-id="CeibaVisionCanal36.hn@SD",Ceiba Vision Canal 36
https://dvrfl03.bozztv.com/hondu/hondu-ceibavisionhd/index.m3u8
#EXTINF:-1 tvg-id="HCH.hn@SD",HCH
https://dvrfl03.bozztv.com/hondu-hchtv/index.m3u8
#EXTINF:-1 tvg-id="DTV.hn@SD",DTV
https://dvrfl03.bozztv.com/hondu-dtelevision/index.m3u8
#EXTINF:-1 tvg-id="TeleProgreso.hn@SD",TeleProgreso
https://dvrfl03.bozztv.com/hondu-teleprogreso/index.m3u8
#EXTINF:-1 tvg-id="CHTV.hn@SD",CHTV
https://viewhn.com/chtv/live/playlist.m3u8
#EXTINF:-1 tvg-id="SulaTV.hn@SD",Sula TV
https://tv.webmedialive.com/sulatv/live/playlist.m3u8
#EXTINF:-1 tvg-id="RTV.hn@SD",RTV
https://dvrfl03.bozztv.com/hondu/hondu-rtvtv/index.m3u8
#EXTINF:-1 tvg-id="Telecadena7y4.hn@SD",Telecadena 7 y 4
https://dvrfl03.bozztv.com/hondu-telecadena/index.m3u8
#EXTINF:-1 tvg-id="TelevisionOlanchana.hn@SD",Television Olanchana
https://viewhn.com/canal30/live/playlist.m3u8
#EXTINF:-1 tvg-id="OlanchitoTVCanal23.hn@SD",Olanchito TV Canal 23
https://dvrfl03.bozztv.com/hondu/hondu-otvcanal23/index.m3u8

View File

@ -42,3 +42,17 @@ https://tvjadran.stream.agatin.hr:3412/live/tvjadranlive.m3u8
https://stream.agatin.hr:3727/live/tvnovalive.m3u8
#EXTINF:-1 tvg-id="TVZapad.hr",TV Zapad (1080p) [Not 24/7]
http://85.94.67.158/TVZAPAD/index.fmp4.m3u8
#EXTINF:-1 tvg-id="DiadoraTV.hr@SD",Diadora TV
https://diadoratv.stream/live/diadora/playlist.m3u8
#EXTINF:-1 tvg-id="RTL2.hr@SD",RTL 2 (1080p)
https://bpcdnmanprod.nexttv.ht.hr/bpk-tv/RTL2/default/index.mpd
#EXTINF:-1 tvg-id="RTL.hr@SD",RTL (1080p)
https://bpcdnmanprod.nexttv.ht.hr/bpk-tv/RTL/default/index.mpd
#EXTINF:-1 tvg-id="HRT4.hr@HD",HRT 4 HD (720p)
https://bpcdnmanprod.nexttv.ht.hr/bpk-tv/HRT4/default/index.mpd
#EXTINF:-1 tvg-id="HRT3.hr@HD",HRT 3 HD (720p)
https://bpcdnmanprod.nexttv.ht.hr/bpk-tv/HRT3/default/index.mpd
#EXTINF:-1 tvg-id="HRT2.hr@HD",HRT 2 HD (1080p)
https://bpcdnmanprod.nexttv.ht.hr/bpk-tv/HRT2/default/index.mpd
#EXTINF:-1 tvg-id="HRT1.hr@HD",HRT 1 HD (1080p)
https://bpcdnmanprod.nexttv.ht.hr/bpk-tv/HRT1/default/index.mpd

View File

@ -53,3 +53,9 @@ https://haititivi.com/haiti/telemix1/index.m3u8
http://lakay.online/public/telelabrise/index.m3u8
#EXTINF:-1 tvg-id="TVPanou.ht",TV Panou (720p) [Not 24/7]
http://tvpanoucom.srfms.com:1935/tvpanoucom/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="RadioTeleGinen.ht@SD",Radio Tele Ginen
https://dvrfl03.bozztv.com/hdirect/hdirect-teleginen/index.m3u8
#EXTINF:-1 tvg-id="TNH.ht@SD",TNH
https://dvrfl03.bozztv.com/hdirect/hdirect-tnhtv2/index.m3u8
#EXTINF:-1 tvg-id="Metropole.ht@SD",Metropole
https://dvrfl03.bozztv.com/hdirect/hdirect-telemetrolple2/index.m3u8

View File

@ -261,7 +261,15 @@ https://cloudfront44.lexanetwork.com:1344/relay01/HDE051.sdp/playlist.m3u8
https://cloudfront44.lexanetwork.com:1344/freerelay/zegtv.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="ZugloTV.hu",Zuglo TV (360p)
https://cloudfront44.lexanetwork.com:1344/freerelay/zuglotv.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="AXNSpin.hu@Poland",AXN Spin Poland (1080i)
http://nowatv.stream2.link:8080/live/64%3A1c%3Ab0%3Aa1%3A48%3Ac1/tfAjswfz6H/0577b50c-92ca-49bc-a769-48203eb96bfd.ts
#EXTINF:-1 tvg-id="TheFishingHuntingChannel.hu@SD",The Fishing & Hunting Channel (576i)
http://78.130.250.2:8023/play/a032/index.m3u8
#EXTINF:-1 tvg-id="Duna.hu@SD",Duna (720p)
https://cachehsi1a.netplus.ch/live/eds/duna/browser-dash/duna.mpd
#EXTINF:-1 tvg-id="RTLGold.hu@SD",RTL Gold (576p)
http://195.189.60.31:8003/play/a0dy/index.m3u8
#EXTINF:-1 tvg-id="DikhTV.hu@SD",Dikh TV (576p)
http://195.189.60.31:8003/play/a0gq/index.m3u8
#EXTINF:-1 tvg-id="M2.hu@SD",M2 (1080p)
http://195.189.60.31:8003/play/a0f1/index.m3u8
#EXTINF:-1 tvg-id="M1.hu@SD",M1 (576p)
http://195.189.60.31:8003/play/a09o/index.m3u8

View File

@ -205,65 +205,65 @@ http://103.30.1.14:8080/hls/live.m3u8
http://103.18.181.69:1935/golive/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="TVRParlemen.id",TVR Parlemen (720p) [Not 24/7]
https://ssv1.dpr.go.id/golive/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="TVRIAceh.id",TVRI Aceh (720p)
#EXTINF:-1 tvg-id="TVRI.id@Aceh",TVRI Aceh (720p)
https://ott-balancer.tvri.go.id/live/eds/Aceh/hls/Aceh.m3u8
#EXTINF:-1 tvg-id="TVRIBali.id",TVRI Bali (480p)
#EXTINF:-1 tvg-id="TVRI.id@Bali",TVRI Bali (480p)
https://ott-balancer.tvri.go.id/live/eds/Bali/hls/Bali.m3u8
#EXTINF:-1 tvg-id="TVRIBangkaBelitung.id",TVRI Bangka Belitung (480p)
#EXTINF:-1 tvg-id="TVRI.id@BangkaBelitung",TVRI Bangka Belitung (480p)
https://ott-balancer.tvri.go.id/live/eds/Babel/hls/Babel.m3u8
#EXTINF:-1 tvg-id="TVRIBengkulu.id",TVRI Bengkulu (480p)
#EXTINF:-1 tvg-id="TVRI.id@Bengkulu",TVRI Bengkulu (480p)
https://ott-balancer.tvri.go.id/live/eds/Bengkulu/hls/Bengkulu.m3u8
#EXTINF:-1 tvg-id="TVRIDKIJakarta.id",TVRI DKI Jakarta (720p) [Not 24/7]
#EXTINF:-1 tvg-id="TVRI.id@DKIJakarta",TVRI DKI Jakarta (720p) [Not 24/7]
https://ott-balancer.tvri.go.id/live/eds/DKI/hls/DKI.m3u8
#EXTINF:-1 tvg-id="TVRIGorontalo.id",TVRI Gorontalo (480p)
#EXTINF:-1 tvg-id="TVRI.id@Gorontalo",TVRI Gorontalo (480p)
https://ott-balancer.tvri.go.id/live/eds/Gorontalo/hls/Gorontalo.m3u8
#EXTINF:-1 tvg-id="TVRIJambi.id",TVRI Jambi (720p) [Not 24/7]
#EXTINF:-1 tvg-id="TVRI.id@Jambi",TVRI Jambi (720p) [Not 24/7]
https://ott-balancer.tvri.go.id/live/eds/Jambi/hls/Jambi.m3u8
#EXTINF:-1 tvg-id="TVRIWestJava.id",TVRI Jawa Barat (480p)
#EXTINF:-1 tvg-id="TVRI.id@WestJava",TVRI Jawa Barat (480p)
https://ott-balancer.tvri.go.id/live/eds/Jabar/hls/Jabar.m3u8
#EXTINF:-1 tvg-id="TVRICentralJava.id",TVRI Jawa Tengah (720p)
#EXTINF:-1 tvg-id="TVRI.id@CentralJava",TVRI Jawa Tengah (720p)
https://ott-balancer.tvri.go.id/live/eds/Jateng/hls/Jateng.m3u8
#EXTINF:-1 tvg-id="TVRIEastJava.id",TVRI Jawa Timur (720p)
#EXTINF:-1 tvg-id="TVRI.id@EastJava",TVRI Jawa Timur (720p)
https://ott-balancer.tvri.go.id/live/eds/Jatim/hls/Jatim.m3u8
#EXTINF:-1 tvg-id="TVRIWestKalimantan.id",TVRI Kalimantan Barat (480p)
#EXTINF:-1 tvg-id="TVRI.id@WestKalimantan",TVRI Kalimantan Barat (480p)
https://ott-balancer.tvri.go.id/live/eds/Kalbar/hls/Kalbar.m3u8
#EXTINF:-1 tvg-id="TVRISouthKalimantan.id",TVRI Kalimantan Selatan (720p)
#EXTINF:-1 tvg-id="TVRI.id@SouthKalimantan",TVRI Kalimantan Selatan (720p)
https://ott-balancer.tvri.go.id/live/eds/Kalsel/hls/Kalsel.m3u8
#EXTINF:-1 tvg-id="TVRICentralKalimantan.id",TVRI Kalimantan Tengah (480p)
#EXTINF:-1 tvg-id="TVRI.id@CentralKalimantan",TVRI Kalimantan Tengah (480p)
https://ott-balancer.tvri.go.id/live/eds/Kalteng/hls/Kalteng.m3u8
#EXTINF:-1 tvg-id="TVRIEastKalimantan.id",TVRI Kalimantan Timur (720p)
#EXTINF:-1 tvg-id="TVRI.id@EastKalimantan",TVRI Kalimantan Timur (720p)
https://ott-balancer.tvri.go.id/live/eds/Kaltim/hls/Kaltim.m3u8
#EXTINF:-1 tvg-id="TVRILampung.id",TVRI Lampung (720p)
#EXTINF:-1 tvg-id="TVRI.id@Lampung",TVRI Lampung (720p)
https://ott-balancer.tvri.go.id/live/eds/Lampung/hls/Lampung.m3u8
#EXTINF:-1 tvg-id="TVRIMaluku.id",TVRI Maluku (480p)
#EXTINF:-1 tvg-id="TVRI.id@Maluku",TVRI Maluku (480p)
https://ott-balancer.tvri.go.id/live/eds/Ambon/hls/Ambon.m3u8
#EXTINF:-1 tvg-id="TVRINasional.id",TVRI Nasional (720p)
#EXTINF:-1 tvg-id="TVRI.id@Nasional",TVRI Nasional (720p)
https://ott-balancer.tvri.go.id/live/eds/Nasional/hls/Nasional.m3u8
#EXTINF:-1 tvg-id="TVRIWestNusaTenggara.id",TVRI Nusa Tenggara Barat (720p)
#EXTINF:-1 tvg-id="TVRI.id@WestNusaTenggara",TVRI Nusa Tenggara Barat (720p)
https://ott-balancer.tvri.go.id/live/eds/NTB/hls/NTB.m3u8
#EXTINF:-1 tvg-id="TVRIEastNusaTenggara.id",TVRI Nusa Tenggara Timur (480p)
#EXTINF:-1 tvg-id="TVRI.id@EastNusaTenggara",TVRI Nusa Tenggara Timur (480p)
https://ott-balancer.tvri.go.id/live/eds/NTT/hls/NTT.m3u8
#EXTINF:-1 tvg-id="TVRIPapua.id",TVRI Papua (480p)
#EXTINF:-1 tvg-id="TVRI.id@Papua",TVRI Papua (480p)
https://ott-balancer.tvri.go.id/live/eds/Papua/hls/Papua.m3u8
#EXTINF:-1 tvg-id="TVRIRiau.id",TVRI Riau (720p) [Not 24/7]
#EXTINF:-1 tvg-id="TVRI.id@Riau",TVRI Riau (720p) [Not 24/7]
https://ott-balancer.tvri.go.id/live/eds/Riau/hls/Riau.m3u8
#EXTINF:-1 tvg-id="TVRISport.id",TVRI Sport (720p)
https://ott-balancer.tvri.go.id/live/eds/SportHD/hls/SportHD.m3u8
#EXTINF:-1 tvg-id="TVRIWestSulawesi.id",TVRI Sulawesi Barat (720p)
#EXTINF:-1 tvg-id="TVRI.id@WestSulawesi",TVRI Sulawesi Barat (720p)
https://ott-balancer.tvri.go.id/live/eds/Sulbar/hls/Sulbar.m3u8
#EXTINF:-1 tvg-id="TVRISouthSulawesi.id",TVRI Sulawesi Selatan (480p)
#EXTINF:-1 tvg-id="TVRI.id@SouthSulawesi",TVRI Sulawesi Selatan (480p)
https://ott-balancer.tvri.go.id/live/eds/Sulsel/hls/Sulsel.m3u8
#EXTINF:-1 tvg-id="TVRICentralSulawesi.id",TVRI Sulawesi Tengah (720p)
#EXTINF:-1 tvg-id="TVRI.id@CentralSulawesi",TVRI Sulawesi Tengah (720p)
https://ott-balancer.tvri.go.id/live/eds/Sulteng/hls/Sulteng.m3u8
#EXTINF:-1 tvg-id="TVRISoutheastSulawesi.id",TVRI Sulawesi Tenggara (480p)
#EXTINF:-1 tvg-id="TVRI.id@SoutheastSulawesi",TVRI Sulawesi Tenggara (480p)
https://ott-balancer.tvri.go.id/live/eds/Sultra/hls/Sultra.m3u8
#EXTINF:-1 tvg-id="TVRIWestSumatra.id",TVRI Sumatera Barat (720p)
#EXTINF:-1 tvg-id="TVRI.id@WestSumatra",TVRI Sumatera Barat (720p)
https://ott-balancer.tvri.go.id/live/eds/Sumbar/hls/Sumbar.m3u8
#EXTINF:-1 tvg-id="TVRISouthSumatra.id",TVRI Sumatera Selatan (480p)
#EXTINF:-1 tvg-id="TVRI.id@SouthSumatra",TVRI Sumatera Selatan (480p)
https://ott-balancer.tvri.go.id/live/eds/Sumsel/hls/Sumsel.m3u8
#EXTINF:-1 tvg-id="TVRIWorld.id",TVRI World
https://ott-balancer.tvri.go.id/live/eds/TVRIWorld/hls/TVRIWorld.m3u8
#EXTINF:-1 tvg-id="TVRIYogyakarta.id",TVRI Yogyakarta (720p)
#EXTINF:-1 tvg-id="TVRI.id@Yogyakarta",TVRI Yogyakarta (720p)
https://ott-balancer.tvri.go.id/live/eds/Jogjakarta/hls/Jogjakarta.m3u8
#EXTINF:-1 tvg-id="UGTV.id",UGTV (720p)
https://cdn.gunadarma.ac.id/streams/ugtv/ingestugtv.m3u8
@ -271,3 +271,23 @@ https://cdn.gunadarma.ac.id/streams/ugtv/ingestugtv.m3u8
https://ams.juraganstreaming.com:5443/LiveApp/streams/wesaltv.m3u8
#EXTINF:-1 tvg-id="ZeeBioskop.id",Zee Bioskop (360p) [Geo-blocked]
http://vod.linknetott.swiftcontent.com/Content/HLS/Live/Channel(ch161)/index.m3u8
#EXTINF:-1 tvg-id="KidsTV.id",Kids TV
http://origin5.mediacdn.ru/live/kidstv/index.m3u8
#EXTINF:-1 tvg-id="RajawaliTV.id@SD",Rajawali TV
https://live.rtv.co.id/hls/rtv.m3u8
#EXTINF:-1 tvg-id="EfarinaTV.id@SD",Efarina TV
https://live.efarinatv.net/hls/stream.m3u8
#EXTINF:-1 tvg-id="ElshintaTV.id@SD",Elshinta TV
https://ams.juraganstreaming.com:5443/LiveApp/streams/elshintatv.m3u8
#EXTINF:-1 tvg-id="KawanuaTV.id@SD",Kawanua TV
https://63b2dc7196c38.streamlock.net/KAWANUATV/_definst_/myStream/playlist.m3u8
#EXTINF:-1 tvg-id="dTVi.id@SD",dTVi
https://e.siar.us/live/dtvi.m3u8
#EXTINF:-1 tvg-id="DAAITV.id@SD",DAAI TV
https://pull.daaiplus.com/live-DAAIPLUS/live-DAAIPLUS_HD.m3u8
#EXTINF:-1 tvg-id="DMTVMalang.id@SD",DM TV Malang
https://e.siar.us/live/dmtv.m3u8
#EXTINF:-1 tvg-id="BeritaSatuEnglish.id@SD",BeritaSatu English
https://beritasatu.secureswiftcontent.com/han/beritasatu/bsatu10008/srtoutput/manifest.m3u8
#EXTINF:-1 tvg-id="PONTV.id@SD",PONTV
https://63b2dc7196c38.streamlock.net/PONTV/_definst_/myStream/playlist.m3u8

View File

@ -15,9 +15,5 @@ https://d33zah5htxvoxb.cloudfront.net/el/live/cr4/hls.m3u8
https://d33zah5htxvoxb.cloudfront.net/el/live/dail/hls.m3u8
#EXTINF:-1 tvg-id="OireachtasTVSeanadEireann.ie",Oireachtas TV Seanad Éireann (720p)
https://d33zah5htxvoxb.cloudfront.net/el/live/seanad/hls.m3u8
#EXTINF:-1 tvg-id="RTE2.ie",RTE2 (720p)
http://154.58.225.25:9999/rte2/index.m3u8
#EXTINF:-1 tvg-id="RTEOne.ie",RTE One (1080p)
http://154.58.225.25:9999/rte1/index.m3u8
#EXTINF:-1 tvg-id="TG4.ie",TG4 (1080p)
https://dx4452e0qv6r9.cloudfront.net/tg4_vod_national.m3u8

View File

@ -1,13 +1,5 @@
#EXTM3U
#EXTINF:-1 tvg-id="AfricanewsEnglish.fr",AfricaNews English (720p)
https://rakuten-africanews-1-ie.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="AFVFamily.us",AFV Family
https://futuretoday-afv-family-2-ie.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="BloombergQuicktake.us",Bloomberg Quicktake (1080p)
https://bloomberg-quicktake-1-ie.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="BloombergTV.us",Bloomberg TV US (1080p)
https://bloomberg-bloomberg-1-ie.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsEnglish.fr",Euronews English (720p)
https://rakuten-euronews-1-ie.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="TheGuardian.uk",The Guardian
https://rakuten-guardian-1-ie.samsung.wurl.tv/playlist.m3u8

View File

@ -35,8 +35,6 @@ https://makan.media.kan.org.il/hls/live/2024680/2024680/master.m3u8
http://wowza.media-line.co.il/Musayof-Live/livestream.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="Now14.il",Now 14 (720p)
https://now14.g-mana.live/media/91517161-44ab-4e46-af70-e9fe26117d2e/mainManifest.m3u8
#EXTINF:-1 tvg-id="RanTVIsrael.il",Ran TV Israel (720p)
https://streaminglive.co.il:3730/live/raniamranilive.m3u8
#EXTINF:-1 tvg-id="RelevantTV.il",Relevant TV (1080p)
https://6180c994cb835402.mediapackage.eu-west-1.amazonaws.com/out/v1/f1339272dd24416ca60b00e69075d783/index.m3u8
#EXTINF:-1 tvg-id="Channel13.il",Reshet 13 (1080p)

View File

@ -407,10 +407,6 @@ https://rtmp.smartstream.video/news11/news11/playlist.m3u8
https://vidcdn.vidgyor.com/news24-origin/liveabr/playlist.m3u8
#EXTINF:-1 tvg-id="NewsLive.in",News Live (720p)
https://5b48d7e1b4bce.streamlock.net/myapp/newslive/playlist.m3u8
#EXTINF:-1 tvg-id="NewsNation.in",News Nation (720p)
https://livetv-channels.b-cdn.net/8006/playlist.m3u8
#EXTINF:-1 tvg-id="NickHDPlus.in",Nick HD+ (1080p)
https://prod-sports-north-gm.jiocinema.com/bpk-tv/Nick_HD_Plus_voot_MOB/Fallback/index.m3u8
#EXTINF:-1 tvg-id="NickHDPlus.in",Nick HD+
http://103.68.28.58:5001/live/1226.m3u8
#EXTINF:-1 tvg-id="NickJr.in",Nick Jr India (1080p)
@ -585,7 +581,7 @@ http://210.210.155.37/x6bnqe/s/s81/02.m3u8
https://d34z4embz0hjf6.cloudfront.net/out/v1/d55b3323a9f142638f897378f0b526fe/index.m3u8
#EXTINF:-1 tvg-id="Travelxp.in",Travelxp (720p)
https://27c980761ff9437d929e64647afe183a.mediatailor.us-east-1.amazonaws.com/v1/master/44f73ba4d03e9607dcd9bebdcb8494d86964f1d8/RakutenTV-eu_TravelXP/playlist.m3u8
#EXTINF:-1 tvg-id="TravelxpNetherlands.in",Travelxp Netherlands
#EXTINF:-1 tvg-id="Travelxp.in@Netherlands",Travelxp Netherlands
https://travelxp-travelxp-3-nl.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="TribeTV.in",Tribe TV (720p)
https://server.livelegitpro.in:9899/tribetv/tribetv/index.m3u8
@ -690,3 +686,39 @@ http://103.81.104.118/hls/stream8.m3u8
https://amg02159-kcglobal-amg02159c1-samsung-in-521.playouts.now.amagi.tv/playlist/amg02159-kcglobal-animax-samsungin/playlist.m3u8
#EXTINF:-1 tvg-id="ANNNews.in",ANN News (720p)
https://cdn.ottlive.co.in/annnews/index.m3u8
#EXTINF:-1 tvg-id="DangalTV.in@SD",Dangal TV (720p)
https://live-dangal.akamaized.net/liveabr/playlist.m3u8
#EXTINF:-1 tvg-id="MaxMiddleEast.in@SD",Max Middle East (720p)
https://tv.bdixtv24.com/toffee/live.php?id=b6192dbff21b&e=.m3u8
#EXTINF:-1 tvg-id="SonyPix.in@SD",Sony Pix (720p)
https://tv.bdixtv24.com/toffee/live.php?id=ea02096b0fbc&e=.m3u8
#EXTINF:-1 tvg-id="SonyMax2.in@SD",Sony Max 2 (720p)
https://tv.bdixtv24.com/toffee/live.php?id=420510be5c17&e=.m3u8
#EXTINF:-1 tvg-id="SonyEntertainmentTelevision.in@SD",Sony Entertainment Television (720p)
https://tv.bdixtv24.com/toffee/live.php?id=2bec2112b890&e=.m3u8
#EXTINF:-1 tvg-id="SonySAB.in@SD",Sony SAB (720p)
https://tv.bdixtv24.com/toffee/live.php?id=b7167fe646a4&e=.m3u8
#EXTINF:-1 tvg-id="Zee24Taas.in@SD",Zee 24 Taas (720p)
https://dgrvlduwztkd4.cloudfront.net/index_5.m3u8
#EXTINF:-1 tvg-id="ZillarBartaNews.in",ZillarBarta News (720p)
https://live-stream.utkalbongo.com/utkalbongo/stream18/hls/zillarbartalive.m3u8
#EXTINF:-1 tvg-id="ZBCinema.in",ZB Cinema (720p)
https://server.zillarbarta.com/ZBCINEMA/index.m3u8
#EXTINF:-1 tvg-id="ZBCartoon.in",ZB Cartoon (1080p)
https://server.zillarbarta.com/zbcatun/video.m3u8
#EXTINF:-1 tvg-id="ZBMusic.in",ZB Music (720p)
https://server.zillarbarta.com/zbmusic/index.m3u8
#EXTINF:-1 tvg-id="ZBBhakti.in",ZB Bhakti (720p)
https://server.zillarbarta.com/zbbhakti/index.m3u8
#EXTINF:-1 tvg-id="MakkalTV.in@SD",Makkal TV (576i)
https://5k8q87azdy4v-hls-live.wmncdn.net/MAKKAL/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="StarSports1.in@HD",Star Sports 1 HD [Geo-blocked]
http://41.205.93.154/STARSPORTS1/index.m3u8
#EXTINF:-1 tvg-id="DDAssam.in",DD Assam
https://d2lk5u59tns74c.cloudfront.net/out/v1/d380bf5c167b4319a46cdd8204bc26b2/index.m3u8
#EXTINF:-1 tvg-id="ZillarBartaNews.in",ZillarBarta News
https://server.zillarbarta.com/zillarbarta/index.m3u8
#EXTINF:-1 tvg-id="StarSports1Tamil.in@HD",Star Sports 1 Tamil HD
https://live20.bozztv.com/akamaissh101/ssh101/vboxsungosttamil/playlist.m3u8
#EXTINF:-1 tvg-id="StarSports1Tamil.in@HD",Star Sports 1 Tamil HD
https://live20.bozztv.com/akamaissh101/ssh101/crisungosttamil/playlist.m3u8

View File

@ -1,20 +1,8 @@
#EXTM3U
#EXTINF:-1 tvg-id="FailArmy.us",Failarmy International
https://failarmy-international-in.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Filmstream.nl",Filmstream
https://spi-filmstream-1-in.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="GoUSATV.us",Go USA
https://brandusa-gousa-1-in.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InsightTV.nl",Insight TV (720p)
https://insighttv-samsungindia.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InTrouble.nl",InTrouble (1080p)
https://introuble-samsungindia.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InWild.it@SD",InWild (720p)
https://inwild-samsungindia.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="InWonder.nl",InWonder (720p)
https://inwonder-samsungindia.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="MAVTV.us",Mav TV
https://mavtv-mavtvglobal-1-in.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="PeopleAreAwesome.us",People are Awesome
https://jukin-peopleareawesome-2-in.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="ThePetCollective.us@India",The Pet Collective

View File

@ -15,8 +15,6 @@ http://63b03f7689049.streamlock.net:1935/live/6/playlist.m3u8
http://63b03f7689049.streamlock.net:1935/live/19/playlist.m3u8
#EXTINF:-1 tvg-id="AlEtejah.iq",Al Etejah TV
http://63b03f7689049.streamlock.net:1935/live/33/playlist.m3u8
#EXTINF:-1 tvg-id="AlghadeerTV.iq",Al Ghadeer TV
http://63b03f7689049.streamlock.net:1935/live/2/playlist.m3u8
#EXTINF:-1 tvg-id="AlIraqia.iq",Al Iraqia (720p)
https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/playlist.m3u8
#EXTINF:-1 tvg-id="AlIraqiaNews.iq",Al Iraqia News (720p)
@ -64,8 +62,6 @@ http://77.36.160.164:1935/live4/thaghalayn/playlist.m3u8
https://cloud.odysee.live/content/f92670235a1ce2bce4cf77671cc4dcc2188baa1d/master.m3u8
#EXTINF:-1 tvg-id="AnwarTV2.iq",Anwar TV2 (288p)
http://63b03f7689049.streamlock.net:1935/live/13/playlist.m3u8
#EXTINF:-1 tvg-id="AVAFamily.iq",AVA Family
https://ca-rt.onetv.app:8443/AVAFamily/index-0.m3u8
#EXTINF:-1 tvg-id="BayyinatTV.iq",Bayyinat TV (404p)
https://nl2.livekadeh.com/hls2/Bayyinat.m3u8
#EXTINF:-1 tvg-id="BeitolAbbasTVChannel.iq",BeitolAbbas TV Channel (720p)
@ -128,8 +124,6 @@ https://kurdsat-news.akamaized.net/hls/kurdsat-news.m3u8
https://livefa.marjaeyattv.com/mtv_ar/playlist.m3u8
#EXTINF:-1 tvg-id="MarjaeyatTVEnglish.iq",Marjaeyat TV English (1080p)
https://livefa.marjaeyattv.com/mtv_en/playlist.m3u8
#EXTINF:-1 tvg-id="MarjaeyatTVPersian.iq",Marjaeyat TV Persian (240p) [Not 24/7]
https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8
#EXTINF:-1 tvg-id="MBCIraq.iq",MBC Iraq (1080p)
https://shd-gcp-live.edgenextcdn.net/live/bitmovin-mbc-iraq/e38c44b1b43474e1c39cb5b90203691e/index.m3u8
#EXTINF:-1 tvg-id="NRTTV.iq",NRT TV (720p) [Not 24/7]
@ -156,9 +150,13 @@ https://zindisorani.zaroktv.com.tr/hls/stream.m3u8
https://avr.host247.net/live/AvarTv/playlist.m3u8
#EXTINF:-1 tvg-id="EmanTv.iq",EmanTv (1080p)
https://avr.host247.net/live/emantv/playlist.m3u8
#EXTINF:-1 tvg-id="towheedtv.iq",towheedtv (720p)
https://avr.host247.net/live/towheedtv/playlist.m3u8
#EXTINF:-1 tvg-id="Mixkurdy.iq",Mixkurdy (1080p)
https://avr.host247.net/live/Mix-kurdy/playlist.m3u8
#EXTINF:-1 tvg-id="FarmodaTV.iq",FarmodaTV (1080p)
https://avr.host247.net/live/FarmodaTV/playlist.m3u8
#EXTINF:-1 tvg-id="IraqFuture.iq@SD",Iraq Future
https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_040/Stream/playlist.m3u8
#EXTINF:-1 tvg-id="MarjaeyatTVPersian.iq",Marjaeyat TV Persian (240p) [Not 24/7]
https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8
#EXTINF:-1 tvg-id="Kurdsat.iq@SD",Kurdsat
http://trn03.bozztv.com/gin-kurdsat/index.m3u8

View File

@ -1,34 +1,24 @@
#EXTM3U
#EXTINF:-1 tvg-id="",247 Box
#EXTINF:-1 tvg-id="towheedtv.ir",towheedtv (720p)
https://avr.host247.net/live/towheedtv/playlist.m3u8
#EXTINF:-1 tvg-id="AssiratTV.ir",Assirat TV (576p)
https://softverse.b-cdn.net/Assirat/assiratobs/playlist.m3u8
#EXTINF:-1 tvg-id="247BoxTV.ir",247 Box TV
https://hls.247box.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="AbalfadhlTV.ir",Abalfadhl TV (720p)
#EXTINF:-1 tvg-id="AbalfadhlTV.ir",Abalfadhl TV
https://t.northtelecom.org/ABALFADHLTV.m3u8
#EXTINF:-1 tvg-id="",AFN Music
https://bozztv.com/1gbw5/tintv2/tintv2/chunklist.m3u8
#EXTINF:-1 tvg-id="AFNTV.ir",AFN TV (720p) [Not 24/7]
#EXTINF:-1 tvg-id="AFNTV.ir",AFN TV (720p)
https://bozztv.com/1gbw5/tintv2/tintv2/playlist.m3u8
#EXTINF:-1 tvg-id="AlAlam.ir",Al Alam (360p) [Not 24/7]
#EXTINF:-1 tvg-id="AlAlam.ir",Al Alam (360p)
https://live2.alalam.ir/alalam.m3u8
#EXTINF:-1 tvg-id="AlWilayah.ir",Al Wilayah (720p) [Not 24/7]
#EXTINF:-1 tvg-id="AlWilayah.ir",Al Wilayah (720p)
https://nl.livekadeh.com/hls2/alwilayah_tv.m3u8
#EXTINF:-1 tvg-id="AsilTV.ir",Asil TV (720p)
https://live.asil.tv/asiltv/index.m3u8
#EXTINF:-1 tvg-id="AssiratTV.ir",Assirat TV (700p)
https://svs.itworkscdn.net/assiratvlive/assirat/playlist.m3u8
#EXTINF:-1 tvg-id="AVAFamily.ir",AVA Family (720p) [Not 24/7]
#EXTINF:-1 tvg-id="AVAFamily.ir",AVA Family (720p)
https://familyhls.avatv.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="HastiTV.uk",Hasti TV (1080p) [Not 24/7]
https://live.hastitv.com/hls/livetv.m3u8
#EXTINF:-1 tvg-id="",Health Media TV (720p)
https://6n3yowknl9ok-hls-live.5centscdn.com/HMN/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="HighVisionTV.us",High Vision
https://streamer1.connectto.com/HIGHVISION_WEB_1205/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="HighVisionTV.us",High Vision (1080p) [Not 24/7]
https://streamer1.connectto.com/HIGHVISION_WEB_1205/index.m3u8
#EXTINF:-1 tvg-id="HispanTV.ir",Hispan TV
https://cdnlive.presstv.ir/live/smil:live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="HodHodFarsiTV.ir",HodHod Farsi
https://hls.hodhod.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="iFilm2.ir",iFilm 2
https://live.presstv.ir/hls/ifilm2.m3u8
#EXTINF:-1 tvg-id="iFilmArabic.ir",iFilm Arabic
@ -39,8 +29,8 @@ https://live.presstv.ir/hls/ifilmen.m3u8
https://live.presstv.ir/hls/ifilmfa.m3u8
#EXTINF:-1 tvg-id="IranJewishTV.ir",Iran Jewish TV (720p)
http://iran620.com:1935/live/IranJewishTv/playlist.m3u8
#EXTINF:-1 tvg-id="IranPress.ir",Iran Press (480p) [Not 24/7]
https://ip2stream.iranpress.com/hls/ip2.m3u8
#EXTINF:-1 tvg-id="IranPress.ir",Iran Press (720p)
https://live.presstv.ir/hls/presstv_5_482/index.m3u8
#EXTINF:-1 tvg-id="TVITN.ir",ITN [Not 24/7]
https://ca-rt.onetv.app:8443/ITN/index-0.m3u8
#EXTINF:-1 tvg-id="MihanTV.ir",Mihan TV (720p)
@ -53,20 +43,14 @@ https://5acf9f9415a10.streamlock.net/live_transcoder/ngrp:mohabat.stream_all/pla
https://iptv.negahtv.com/negahtv/playlist.m3u8
#EXTINF:-1 tvg-id="OXIRTV.ir",OXIR TV (720p)
https://hls.oxir.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="",Payam Javan TV (720p) [Not 24/7]
https://uni01rtmp.tulix.tv/kensecure/pjtv.stream/playlist.m3u8
#EXTINF:-1 tvg-id="PayvandTV.ir",Payvand TV (720p) [Not 24/7]
https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8
#EXTINF:-1 tvg-id="",PBC Tapesh TV (720p) [Not 24/7]
https://iptv.tapesh.tv/tapesh/playlist.m3u8
#EXTINF:-1 tvg-id="PressTV.ir",Press TV
https://live.presstv.ir/hls/presstv.m3u8
#EXTINF:-1 tvg-id="PressTVFrench.ir",Press TV French (1080p)
https://live4.presstv.ir/live/smil:presstvfr.smil/playlist.m3u8
#EXTINF:-1 tvg-id="SNNTV.ir",SNN TV (720p) [Not 24/7]
https://live2.snn.ir/hls/snn.m3u8
#EXTINF:-1 tvg-id="",Tapesh Iran
https://iptv.tapesh.tv/tapeshiran/playlist.m3u8
https://live2.snn.ir/hls/snn2_hd720/index.m3u8
#EXTINF:-1 tvg-id="TBNNejatTV.ir",TBN Nejat TV (720p)
https://hls.nejat.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="VOX1.ir",VOX1 (720p) [Not 24/7]
@ -79,3 +63,50 @@ https://stream.sainaertebat.com/hls2/varzeshtest.m3u8
https://avr.host247.net/live/WiseHumanTv/playlist.m3u8
#EXTINF:-1 tvg-id="RasoulallahTv.ir",RasoulallahTv (1080p)
https://avr.host247.net/live/rasoulallahtv/playlist.m3u8
#EXTINF:-1 tvg-id="CaltexTV.ir",Caltex Music (720p)
https://video.caltexmusic.com/hls/caltextv.m3u8
#EXTINF:-1 tvg-id="ITVPersianMusic.ir",ITV Persian Music (1080p)
https://ca1.buximedia.com/itv/persian/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="ITVLife.ir",ITV Life (1080p)
https://ca1.buximedia.com/itv/life/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="PooyaTV.ir@SD",Pooya TV
http://dvrfl05.bozztv.com/gin-iribpooya/index.m3u8
#EXTINF:-1 tvg-id="SaharUrdu.ir@SD",Sahar Urdu
https://live20.bozztv.com/dvrfl05/gin-saharurdu/index.m3u8
#EXTINF:-1 tvg-id="VarzeshTV.ir@SD",Varzesh TV
http://trn03.bozztv.com/gin-iribvarzesh/index.m3u8
#EXTINF:-1 tvg-id="AmouzeshTV.ir@SD",Amouzesh TV
http://dvrfl05.bozztv.com/gin-iribamoozesh/index.m3u8
#EXTINF:-1 tvg-id="AyenehTV.ir@SD",Ayeneh TV
https://live20.bozztv.com/dvrfl05/gin-ayeneh/index.m3u8
#EXTINF:-1 tvg-id="IRINN.ir@SD",IRINN
https://live20.bozztv.com/dvrfl05/gin-irinn/index.m3u8
#EXTINF:-1 tvg-id="IRIBMostanad.ir@SD",IRIB Mostanad
https://live20.bozztv.com/dvrfl05/gin-iribmostanad/index.m3u8
#EXTINF:-1 tvg-id="iFilmEnglish.ir@SD",iFilm English
http://dvrfl05.bozztv.com/gin-ifilmeng/index.m3u8
#EXTINF:-1 tvg-id="SalamatTV.ir@SD",Salamat TV
https://live20.bozztv.com/dvrfl05/gin-iribsalamat/index.m3u8
#EXTINF:-1 tvg-id="TehranTV.ir@SD",Tehran TV
https://live20.bozztv.com/dvrfl05/gin-iribnasim/index.m3u8
#EXTINF:-1 tvg-id="Nasim.ir@SD",Nasim
https://live20.bozztv.com/dvrfl05/gin-irib5/index.m3u8
#EXTINF:-1 tvg-id="IRIB4.ir@SD",IRIB 4
https://live20.bozztv.com/dvrfl05/gin-irib4/index.m3u8
#EXTINF:-1 tvg-id="IRIB3.ir@SD",IRIB 3
https://live20.bozztv.com/dvrfl05/gin-irib3/index.m3u8
#EXTINF:-1 tvg-id="IRIB2.ir@SD",IRIB 2
https://live20.bozztv.com/dvrfl05/gin-irib2/index.m3u8
#EXTINF:-1 tvg-id="IRIB1.ir@SD",IRIB 1
https://live20.bozztv.com/dvrfl05/gin-irib1/index.m3u8
#EXTINF:-1 tvg-id="NegahTV.ir@SD",Negah TV
https://live20.bozztv.com/gin-36bay3/gp-negahtv/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="SaharAfghanistan.ir@SD",Sahar Afghanistan
https://live20.bozztv.com/gin-36bay3/gin-saharafgh/tracks-v1a1/mono.m3u8
#EXTINF:-1 tvg-id="HodHodFarsiTV.ir@SD",HodHod Farsi TV
https://live20.bozztv.com/gin-trn09/gp-hodhodtv/index.m3u8
#EXTINF:-1 tvg-id="PressTV.ir" http-referrer="https://odysee.com/",Press TV (720p)
#EXTVLCOPT:http-referrer=https://odysee.com/
https://cloud.odysee.live/content/26bcbcc342a5b143578f27dbfaf000201f06e417/master.m3u8
#EXTINF:-1 tvg-id="PressTV.ir",Press TV (720p)
https://rumble.com/live-hls/6s62fv/playlist.m3u8

View File

@ -7,7 +7,7 @@ https://lenz.splus.ir/PLTV/88888888/224/3221226675/index.m3u8
https://lenz.splus.ir/PLTV/88888888/224/3221226899/index.m3u8
#EXTINF:-1 tvg-id="AlAlam.ir",AlAlam
https://lenz.splus.ir/PLTV/88888888/224/3221226157/index.m3u8
#EXTINF:-1 tvg-id="",AlKawthar
#EXTINF:-1 tvg-id="AlKawtharTV.ir",AlKawthar
https://lenz.splus.ir/PLTV/88888888/224/3221226158/index.m3u8
#EXTINF:-1 tvg-id="AmouzeshTV.ir",Amouzesh
https://lenz.splus.ir/PLTV/88888888/224/3221226151/index.m3u8
@ -23,20 +23,18 @@ https://lenz.splus.ir/PLTV/88888888/224/3221226842/index.m3u8
https://lenz.splus.ir/PLTV/88888888/224/3221226637/index.m3u8
#EXTINF:-1 tvg-id="IRIB2.ir",IRIB2
https://lenz.splus.ir/PLTV/88888888/224/3221226176/index.m3u8
#EXTINF:-1 tvg-id="IRINN2.ir",IRIB2
https://lenz.splus.ir/PLTV/88888888/224/3221227020/index.m3u8
#EXTINF:-1 tvg-id="IRIB3.ir",IRIB3
#EXTINF:-1 tvg-id="IRIB3.ir",IRIB3 (1080p)
https://lenz.splus.ir/PLTV/88888888/224/3221226868/index.m3u8
#EXTINF:-1 tvg-id="IRIB4.ir",IRIB4
https://lenz.splus.ir/PLTV/88888888/224/3221226140/index.m3u8
#EXTINF:-1 tvg-id="",IRIB5
#EXTINF:-1 tvg-id="TehranTV.ir",IRIB5 Tehran TV
https://lenz.splus.ir/PLTV/88888888/224/3221226141/index.m3u8
#EXTINF:-1 tvg-id="IRINN.ir",IRINN
https://lenz.splus.ir/PLTV/88888888/224/3221226142/index.m3u8
#EXTINF:-1 tvg-id="IRINN2.ir",IRINN2
https://lenz.splus.ir/PLTV/88888888/224/3221227020/index.m3u8
#EXTINF:-1 tvg-id="IsfahanTV.ir",Isfahan
https://lenz.splus.ir/PLTV/88888888/224/3221226652/index.m3u8
#EXTINF:-1 tvg-id="JameJamTV1.ir",JameJam
https://lenz.splus.ir/PLTV/88888888/224/3221226178/index.m3u8
#EXTINF:-1 tvg-id="KermanTV.ir",Kerman
https://lenz.splus.ir/PLTV/88888888/224/3221226856/index.m3u8
#EXTINF:-1 tvg-id="KhozestanTV.ir",KhozestanTV
@ -45,7 +43,7 @@ https://lenz.splus.ir/PLTV/88888888/224/3221226415/index.m3u8
https://lenz.splus.ir/PLTV/88888888/224/3221226647/index.m3u8
#EXTINF:-1 tvg-id="",LenzAnimation
https://lenz.splus.ir/PLTV/88888888/224/3221227043/index.m3u8
#EXTINF:-1 tvg-id="",Mazandaran
#EXTINF:-1 tvg-id="TabarestanTV.ir",Mazandaran TV
https://lenz.splus.ir/PLTV/88888888/224/3221226786/index.m3u8
#EXTINF:-1 tvg-id="IRIBMostanad.ir",Mostanad
https://lenz.splus.ir/PLTV/88888888/224/3221226901/index.m3u8

View File

@ -7,7 +7,7 @@ https://ncdn.telewebion.com/aftab/live/playlist.m3u8
https://ncdn.telewebion.com/alborz/live/playlist.m3u8
#EXTINF:-1 tvg-id="AmouzeshTV.ir",Amouzesh
https://ncdn.telewebion.com/amouzesh/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Ara
#EXTINF:-1 tvg-id="AraTV.ir",Ara
https://ncdn.telewebion.com/ara/live/playlist.m3u8
#EXTINF:-1 tvg-id="AtrakTV.ir",Atrak
https://ncdn.telewebion.com/atrak/live/playlist.m3u8
@ -19,11 +19,11 @@ https://ncdn.telewebion.com/baran/live/playlist.m3u8
https://ncdn.telewebion.com/bushehr/live/playlist.m3u8
#EXTINF:-1 tvg-id="DenaTV.ir",Dena
https://ncdn.telewebion.com/dena/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Eshragh
#EXTINF:-1 tvg-id="EshraghNetwork.ir",Eshragh
https://ncdn.telewebion.com/eshragh/live/playlist.m3u8
#EXTINF:-1 tvg-id="FarsTV.ir",Fars
https://ncdn.telewebion.com/fars/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Habib
#EXTINF:-1 tvg-id="HabibTV.ir",Habib TV
https://ncdn.telewebion.com/habib/live/playlist.m3u8
#EXTINF:-1 tvg-id="HamedanTV.ir",Hamedan
https://ncdn.telewebion.com/sina/live/playlist.m3u8
@ -43,20 +43,16 @@ https://ncdn.telewebion.com/tv2/live/playlist.m3u8
https://ncdn.telewebion.com/tv3/live/playlist.m3u8
#EXTINF:-1 tvg-id="IRIB4.ir",IRIB4
https://ncdn.telewebion.com/tv4/live/playlist.m3u8
#EXTINF:-1 tvg-id="IRINN.ir",IRINN
#EXTINF:-1 tvg-id="IRINN.ir",IRINN Live Farsi News
https://ncdn.telewebion.com/irinn/live/playlist.m3u8
#EXTINF:-1 tvg-id="IRINN2.ir",IRINN2
#EXTINF:-1 tvg-id="IRINN2.ir",IRINN2 Live Farsi News
https://ncdn.telewebion.com/irinn2/live/playlist.m3u8
#EXTINF:-1 tvg-id="IsfahanTV.ir",Isfahan
https://ncdn.telewebion.com/esfahan/live/playlist.m3u8
#EXTINF:-1 tvg-id="JahanbinTV.ir",Jahanbin
https://ncdn.telewebion.com/jahanbin/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Jam
#EXTINF:-1 tvg-id="JamTV.ir",Jam TV
https://ncdn.telewebion.com/jam/live/playlist.m3u8
#EXTINF:-1 tvg-id="JameJamTV1.ir",JameJam
https://ncdn.telewebion.com/jjtv1/live/playlist.m3u8
#EXTINF:-1 tvg-id="JameJamTV3.ir",JameJam3
https://ncdn.telewebion.com/jjtv3/live/playlist.m3u8
#EXTINF:-1 tvg-id="KermanTV.ir",Kerman
https://ncdn.telewebion.com/kerman/live/playlist.m3u8
#EXTINF:-1 tvg-id="KhalijeFarsTV.ir",Khalij-e Fars
@ -75,13 +71,13 @@ https://ncdn.telewebion.com/kordestan/live/playlist.m3u8
https://ncdn.telewebion.com/mahabad/live/playlist.m3u8
#EXTINF:-1 tvg-id="IRIBMostanad.ir",Mostanad
https://ncdn.telewebion.com/mostanad/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Nama
#EXTINF:-1 tvg-id="NamaTV.ir",Nama TV
https://ncdn.telewebion.com/nama/live/playlist.m3u8
#EXTINF:-1 tvg-id="NamayeshTV.ir",Namayesh
https://ncdn.telewebion.com/namayesh/live/playlist.m3u8
#EXTINF:-1 tvg-id="Nasim.ir",Nasim
https://ncdn.telewebion.com/nasim/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Nava
#EXTINF:-1 tvg-id="TVANava.ir",TVA Nava
https://ncdn.telewebion.com/nava/live/playlist.m3u8
#EXTINF:-1 tvg-id="NoorTV.ir",Noor
https://ncdn.telewebion.com/noor/live/playlist.m3u8
@ -89,10 +85,12 @@ https://ncdn.telewebion.com/noor/live/playlist.m3u8
https://ncdn.telewebion.com/ofogh/live/playlist.m3u8
#EXTINF:-1 tvg-id="IRIBOmid.ir",Omid
https://ncdn.telewebion.com/omid/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Palestine
#EXTINF:-1 tvg-id="Palestinetv.ir",Palestine
https://ncdn.telewebion.com/palestine/live/playlist.m3u8
#EXTINF:-1 tvg-id="PooyaTV.ir",Pooya & Nahal
https://ncdn.telewebion.com/pooya/live/playlist.m3u8
#EXTINF:-1 tvg-id="PooyaTVPlus.ir",Pooya TV Plus
https://ncdn.telewebion.com/javaneh/live/playlist.m3u8
#EXTINF:-1 tvg-id="QazvinTV.ir",Qazvin
https://ncdn.telewebion.com/qazvin/live/playlist.m3u8
#EXTINF:-1 tvg-id="QuranTV.ir",Quran
@ -103,7 +101,7 @@ https://ncdn.telewebion.com/sabalan/live/playlist.m3u8
https://ncdn.telewebion.com/sabz/live/playlist.m3u8
#EXTINF:-1 tvg-id="SahandTV.ir",Sahand
https://ncdn.telewebion.com/sahand/live/playlist.m3u8
#EXTINF:-1 tvg-id="",SaharAfghan
#EXTINF:-1 tvg-id="SaharAfghanistan.ir",SaharAfghan
https://ncdn.telewebion.com/saharafghan/live/playlist.m3u8
#EXTINF:-1 tvg-id="SalamatTV.ir",Salamat
https://ncdn.telewebion.com/salamat/live/playlist.m3u8
@ -117,11 +115,11 @@ https://ncdn.telewebion.com/tabarestan/live/playlist.m3u8
https://ncdn.telewebion.com/hdtest/live/playlist.m3u8
#EXTINF:-1 tvg-id="TehranTV.ir",Tehran
https://ncdn.telewebion.com/tehran/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Telewebion Sport 1
#EXTINF:-1 tvg-id="TelewebionSport.ir",Telewebion Sport
https://ncdn.telewebion.com/twsport/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Telewebion Sport 2
#EXTINF:-1 tvg-id="TelewebionSport2.ir",Telewebion Sport 2
https://ncdn.telewebion.com/twsport2/live/playlist.m3u8
#EXTINF:-1 tvg-id="",Telewebion Sport 3
#EXTINF:-1 tvg-id="TelewebionSport3.ir",Telewebion Sport 3
https://ncdn.telewebion.com/twsport3/live/playlist.m3u8
#EXTINF:-1 tvg-id="VarzeshTV.ir",Varzesh
https://ncdn.telewebion.com/varzesh/live/playlist.m3u8
@ -129,3 +127,5 @@ https://ncdn.telewebion.com/varzesh/live/playlist.m3u8
https://ncdn.telewebion.com/taban/live/playlist.m3u8
#EXTINF:-1 tvg-id="ZagrosTV.ir",Zagros
https://ncdn.telewebion.com/zagros/live/playlist.m3u8
#EXTINF:-1 tvg-id="IRIBUHD.ir",IRIB UHD (2160p)
https://ncdn.telewebion.com/faratar/live/playlist.m3u8

View File

@ -3,19 +3,33 @@
https://avaserieshls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="BravoFarsiTV.ir",Bravo Farsi TV (360p)
https://bravoohls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="FX1.ir",FX1 Farsi (720p)
#EXTINF:-1 tvg-id="FX1.ir",FX TV 1
https://fxtvhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="TVITN.ir",ITN (720p) [Not 24/7]
#EXTINF:-1 tvg-id="FX2.ir",FX TV 2
https://toonixhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="TVITN.ir",ITN (720p)
https://itnhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="MetaFilmTV.ir",Meta Film TV (1080p)
#EXTINF:-1 tvg-id="MetaFilmTV.ir",Meta Film TV (720p)
https://metafilmhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="",Omide Iran (720p) [Not 24/7]
#EXTINF:-1 tvg-id="OmideIranTV.us",Omide Iran (720p)
https://oitnhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="",Pars
#EXTINF:-1 tvg-id="ParsTV.us",Pars TV
https://parshls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="PersianFilm.ir",Persian Film (720p) [Not 24/7]
#EXTINF:-1 tvg-id="PersianFilm.ir",Persian Film (720p)
https://pfilmhls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="SL1.ir",SL 1 (720p)
https://slonehls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="SL2.ir",SL 2 (720p)
https://sltwohls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="T2TV.ir",T2 TV (720p)
https://t2hls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="ICCplus.us",ICC Plus (1080p)
https://icchls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="GrandCinema.tr",Grand Cinema
https://gcinemahls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="MTC.us",MTC (720p)
https://mtchls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="CafeTradeTV.ir",Cafe Trade TV (720p)
https://cafetradehls.wns.live/hls/stream.m3u8
#EXTINF:-1 tvg-id="KanalJadid.uk",Kanal Jadid (720p)
https://kjhls.wns.live/hls/stream.m3u8

View File

@ -15,7 +15,7 @@ https://585b674743bbb.streamlock.net/9050/9050/playlist.m3u8
https://5db313b643fd8.streamlock.net/111TV/111TV/playlist.m3u8
#EXTINF:-1 tvg-id="A2iTV.it",A2i TV (1080p)
https://stream.sen-gt.com/A2itv/myStream/playlist.m3u8
#EXTINF:-1 tvg-id="ABChannel.it",AB Channel (720p)
#EXTINF:-1 tvg-id="ABChannel.it",AB Channel (720p) [Geo-blocked]
https://tsw.streamingwebtv24.it:1936/abchanneltv/abchanneltv/playlist.m3u8
#EXTINF:-1 tvg-id="ACISportTV.it",ACI Sport TV (1080p)
https://g4wlk6xpy23a-hls-live.mariatvcdn.it/acisporttv/b7a3464f8e2001314de9fefebf11229d.sdp/playlist.m3u8
@ -67,8 +67,6 @@ http://37.187.142.147:1935/ch10live/high.stream/playlist.m3u8
https://0ff9dd7fe9b64bc08a5fc4ed525454c3.msvdn.net/live/S42170132/sT6C3LFaD1iA/playlist.m3u8
#EXTINF:-1 tvg-id="CanaleItalia.it",Canale Italia (720p)
https://6e94aeeb1b42461d95f973ae34be5167.msvdn.net/ac115_live/canale1.smil/playlist.m3u8
#EXTINF:-1 tvg-id="CarinaTV.it",CarinaTV (720p)
https://stream7.zivoli.it/carinatv/carinatv/playlist.m3u8
#EXTINF:-1 tvg-id="CasaItalia53.it",Casa Italia 53 (720p)
https://ovp-live.akamaized.net/ac115_live/canale3.smil/playlist.m3u8
#EXTINF:-1 tvg-id="Cine34.it",Cine 34 [Geo-blocked]
@ -249,7 +247,7 @@ https://iptv.peer.biz/live/peertv-it.m3u8
https://iptv.peer.biz/live/peertv-en.m3u8
#EXTINF:-1 tvg-id="PeerTVSudtirol.it",Peer TV Südtirol (1080p)
https://iptv.peer.biz/live/peertv.m3u8
#EXTINF:-1 tvg-id="PlutoTVTopGear.us@Italy" http-referrer="https://pluto.tv/it/live-tv/64c109a4798def0008a6e03e",Pluto TV Top Gear
#EXTINF:-1 tvg-id="TopGear.uk@Italy" http-referrer="https://pluto.tv/it/live-tv/64c109a4798def0008a6e03e",Pluto TV Top Gear
#EXTVLCOPT:http-referrer=https://pluto.tv/it/live-tv/64c109a4798def0008a6e03e
https://stitcher-ipv4.pluto.tv/v1/stitch/embed/hls/channel/64c109a4798def0008a6e03e/master.m3u8?advertisingId={PSID}&appVersion=unknown&deviceDNT={TARGETOPT}&deviceId={PSID}&deviceLat=0&deviceLon=0&deviceMake=samsung&deviceModel=samsung&deviceType=samsung-tvplus&deviceVersion=unknown&embedPartner=samsung-tvplus&profileFloor=&profileLimit=&samsung_app_domain={APP_DOMAIN}&samsung_app_name={APP_NAME}&us_privacy=1YNY
#EXTINF:-1 tvg-id="",POP Television (720p)
@ -402,21 +400,19 @@ http://fl1.mediastreaming.it:1935/calabriachannel/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="RTCTelecalabria.it",RTC Telecalabria (720p) [Not 24/7]
https://w1.mediastreaming.it/calabriachannel/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="RTL1025Best.it",RTL 102.5 Best (1080p)
https://streamcdnb7-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S76960628/OEPHRUIctA0M/playlist_video.m3u8
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S76960628/OEPHRUIctA0M/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025BroSis.it",RTL 102.5 Bro&Sis (1080p)
https://streamcdnb6-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S75007890/MUGHuxc9dQ3b/playlist.m3u8
#EXTINF:-1 tvg-id="RTL1025Doc.it",RTL 102.5 Doc (1080p)
https://streamcdnb12-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S51100361/0Fb4R3k82b5Z/playlist_video.m3u8
#EXTINF:-1 tvg-id="",RTL 102.5 Extra (1080p)
https://streamcdnb2-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S26743519/49ksH8apMKou/playlist.m3u8
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S75007890/MUGHuxc9dQ3b/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025Disco.it",RTL 102.5 Disco (1080p)
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S51100361/0Fb4R3k82b5Z/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025Napule.it",RTL 102.5 Napulé (1080p)
https://streamcdnb5-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S27134503/0f9AhuwKlhnZ/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025News.it",RTL 102.5 News (1080p)
https://streamcdnb2-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S38122967/2lyQRIAAGgRR/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025RomeoJuliet.it",RTL 102.5 Romeo&Juliet (1080p)
https://streamcdnb4-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S8448465/zTYa1Z5Op9ue/playlist_video.m3u8
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S27134503/0f9AhuwKlhnZ/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025Traffic.it",RTL 102.5 Traffic (1080p)
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S38122967/2lyQRIAAGgRR/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025Caliente.it",RTL 102.5 Caliente (1080p)
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S8448465/zTYa1Z5Op9ue/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTL1025TV.it",RTL 102.5 TV (1080p)
https://streamcdnb12-dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S97044836/tbbP8T1ZRPBL/playlist_video.m3u8
https://dd782ed59e2a4e86aabf6fc508674b59.msvdn.net/live/S97044836/tbbP8T1ZRPBL/playlist_video.m3u8
#EXTINF:-1 tvg-id="RTMTV.it",RTM TV (1080p)
https://5f22d76e220e1.streamlock.net/rtm/rtm/playlist.m3u8
#EXTINF:-1 tvg-id="RTP.it",RTP (404p)
@ -463,8 +459,6 @@ http://wms.shared.streamshow.it:1935/supertv/supertv/live.m3u8
http://193.70.81.40:1935/supertvoristano/supertvoristano/playlist.m3u8
#EXTINF:-1 tvg-id="SuperSix.it",SuperSix Lombardia (720p)
https://5db313b643fd8.streamlock.net/SUPERSIXLombardia/SUPERSIXLombardia/playlist.m3u8
#EXTINF:-1 tvg-id="SuperTennis.it@HD",SuperTennis HD
https://live-embed.supertennix.hiway.media/restreamer/supertennix_client/gpu-a-c0-16/restreamer/outgest/h24_supertennix/manifest.m3u8
#EXTINF:-1 tvg-id="T9.it",T9 (288p)
https://streaming.softwarecreation.it/tnove/tnove/playlist.m3u8
#EXTINF:-1 tvg-id="TCFTV.it",TCF TV (720p)
@ -544,13 +538,13 @@ http://stream2.xdevel.com/video2s976570-2303/stream/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="Telenord.it",Telenord (576p) [Not 24/7]
https://5db313b643fd8.streamlock.net/Telenord/Telenord/playlist.m3u8
#EXTINF:-1 tvg-id="Telepace1.it",Telepace 1 (1080p)
https://live.mariatvcdn.com/teleradiopace1/efcc8fc46cab26315ce3f5845d76008f.sdp/index.m3u8
https://jk3lz2bwlw79-hls-live.mariatvcdn.it/teleradiopace1/efcc8fc46cab26315ce3f5845d76008f.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="Telepace2.it",Telepace 2 (1080p)
https://live.mariatvcdn.com/teleradiopace2/254c9b5c52a73a94ef0f6169cbd05dc2.sdp/index.m3u8
#EXTINF:-1 tvg-id="Telepace3.it",Telepace 3 (360p)
https://live.mariatvcdn.com/teleradiopace3/d2274c22e9ee09eb2eda01ed0496f8f5.sdp/index.m3u8
#EXTINF:-1 tvg-id="Telepace4.it",Telepace 4 (720p)
https://live.mariatvcdn.com/teleradiopace4/13d74f2cfe921bfbc262697203d47d8f.sdp/index.m3u8
https://zkpywrbgdbeg-hls-live.mariatvcdn.it/teleradiopace2/254c9b5c52a73a94ef0f6169cbd05dc2.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="Telepace3.it",Telepace 3 (1080p)
https://932y4273djv8-hls-live.mariatvcdn.it/teleradiopace3/d2274c22e9ee09eb2eda01ed0496f8f5.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="Telepace4.it",Telepace 4 (1080p)
https://j78dpr7nyq5r-hls-live.mariatvcdn.it/teleradiopace4/13d74f2cfe921bfbc262697203d47d8f.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="TelepaceNews.it",Telepace News (720p)
https://live.mariatvcdn.com/teleradiopace6/d289fe76f16ad32afec471ea1b941583.sdp/index.m3u8
#EXTINF:-1 tvg-id="",Telepace Roma (720p)
@ -681,5 +675,78 @@ https://rtmp-live-ingest-us-east-1-universe-dacast-com.akamaized.net/transmuxv1/
http://77.83.120.135:8001/play/a11n
#EXTINF:-1 tvg-id="Rai1.it@HD",Rai 1 HD (720p)
http://77.83.120.135:8001/play/a11c
#EXTINF:-1 tvg-id="Rai3.it@HD",Rai 3
https://ilglobotv-live.akamaized.net/channels/RAI3/Live.m3u8
#EXTINF:-1 tvg-id="Rai2.it@HD",Rai 2 HD
https://ilglobotv-live.akamaized.net/channels/RAI2/Live.m3u8
#EXTINF:-1 tvg-id="Rai1.it@HD",Rai 1 HD
https://ilglobotv-live.akamaized.net/channels/RAI1/Live.m3u8
#EXTINF:-1 tvg-id="RaiItalia.it@Americas",Rai Italia Americas
https://ilglobotv-live.akamaized.net/channels/RAIItaliaSudAmerica/Live.m3u8
#EXTINF:-1 tvg-id="RaiItalia.it@EuropeAfrica",Rai Italia
https://ilglobotv-live.akamaized.net/channels/RAIItaliaSudAfrica/Live.m3u8
#EXTINF:-1 tvg-id="RaiItalia.it@Australia",Rai Italia Australia
https://ilglobotv-live.akamaized.net/channels/RAIItaliaAustralia/Live.m3u8
#EXTINF:-1 tvg-id="RaiWorldPremium.it",Rai World Premium
https://ilglobotv-live.akamaized.net/channels/RAIPremium/Live.m3u8
#EXTINF:-1 tvg-id="RaiNews24.it",Rai News 24
https://ilglobotv-live.akamaized.net/channels/RAINews24/Live.m3u8
#EXTINF:-1 tvg-id="Telenord.it",Telenord
https://64b16f23efbee.streamlock.net/telenord/telenord/playlist.m3u8
#EXTINF:-1 tvg-id="InterTV.it",Inter TV
https://ilglobotv-live.akamaized.net/channels/InterTV/Live.m3u8
#EXTINF:-1 tvg-id="LA7.it",LA7
https://ilglobotv-live.akamaized.net/channels/La7Italia/Live.m3u8
#EXTINF:-1 tvg-id="MediasetItalia.it",Mediaset Italia
https://ilglobotv-live.akamaized.net/channels/MediasetItalia/Live.m3u8
#EXTINF:-1 tvg-id="ItalianFishingTV.it@SD",Italian Fishing TV
https://fms.premio.link/fishingtv/playlist.m3u8
#EXTINF:-1 tvg-id="LiraTV.it@SD",Lira TV
https://a928c0678d284da5b383f29ecc5dfeec.msvdn.net/live/S57315730/8kTBWibNteJA/playlist.m3u8
#EXTINF:-1 tvg-id="Telegela647.it@SD",Telegela 647
https://64b16f23efbee.streamlock.net/telegela/telegela/playlist.m3u8
#EXTINF:-1 tvg-id="CalabriaTV.it@SD",Calabria TV
https://64b16f23efbee.streamlock.net/calabriatv/calabriatv/playlist.m3u8
#EXTINF:-1 tvg-id="Rete8.it@SD",Rete 8
https://64b16f23efbee.streamlock.net/rete8/rete8/playlist.m3u8
#EXTINF:-1 tvg-id="TeleOne16.it@SD",Tele One 16
https://648026e87a75e.streamlock.net/teleone/teleone/playlist.m3u8
#EXTINF:-1 tvg-id="GoldTVSat.it@SD",Gold TV Sat
https://5a1178b42cc03.streamlock.net/goldsat/goldsat/playlist.m3u8
#EXTINF:-1 tvg-id="GoldTV.it@SD",Gold TV
https://5a1178b42cc03.streamlock.net/golditalia/golditalia/playlist.m3u8
#EXTINF:-1 tvg-id="LunaTV.it@SD",Luna TV
https://5f22d76e220e1.streamlock.net/lunatv/lunatv/playlist.m3u8
#EXTINF:-1 tvg-id="RaiSport.it" http-referrer="https://www.raisport.rai.it",Rai Sport
#EXTVLCOPT:http-referrer=https://www.raisport.rai.it
https://cachehsi1a.netplus.ch/live/eds/raisport1/browser-dash/raisport1.mpd
#EXTINF:-1 tvg-id="CarinaTV.it@SD",CarinaTV
https://samson.streamerr.co:8081/carinatv/tracks-v1a1/playlist.m3u8
#EXTINF:-1 tvg-id="7STORIA.it",7 STORIA (720p)
https://stream10.xdevel.com/video2s976543-2104/stream/playlist.m3u8
#EXTINF:-1 tvg-id="7YOUME.it",7 YOU & ME (720p)
https://stream10.xdevel.com/video0s977798-2239/stream/playlist.m3u8
#EXTINF:-1 tvg-id="RaiScuola.it@HD",Rai Scuola
https://cachehsi1a.netplus.ch/live/eds/raiscuola/browser-dash/raiscuola.mpd
#EXTINF:-1 tvg-id="RaiStoria.it@SD",Rai Storia
https://cachehsi1a.netplus.ch/live/eds/raistoria/browser-dash/raistoria.mpd
#EXTINF:-1 tvg-id="LA7.it@HD",LA7 HD
https://cachehsi1a.netplus.ch/live/eds/la7/browser-dash/la7.mpd
#EXTINF:-1 tvg-id="Canale5.it@HD",Canale 5 HD
https://cachehsi1a.netplus.ch/live/eds/canale5/browser-dash/canale5.mpd
#EXTINF:-1 tvg-id="Rete4.it@HD",Rete 4 HD
https://cachehsi1a.netplus.ch/live/eds/rete4/browser-dash/rete4.mpd
#EXTINF:-1 tvg-id="Italia1.it@HD",Italia 1 HD
https://cachehsi1a.netplus.ch/live/eds/italia1/browser-dash/italia1.mpd
#EXTINF:-1 tvg-id="RaiGulp.it@HD",Rai Gulp HD
https://cachehsi1a.netplus.ch/live/eds/raigulp/browser-dash/raigulp.mpd
#EXTINF:-1 tvg-id="RaiNews24.it@SD",Rai News 24
https://cachehsi1a.netplus.ch/live/eds/rainews/browser-dash/rainews.mpd
#EXTINF:-1 tvg-id="Rai3.it@HD",Rai 3
https://cachehsi1a.netplus.ch/live/eds/rai3/browser-dash/rai3.mpd
#EXTINF:-1 tvg-id="Rai2.it@HD",Rai 2 HD
https://cachehsi1a.netplus.ch/live/eds/rai2/browser-dash/rai2.mpd
#EXTINF:-1 tvg-id="Rai1.it@HD",Rai 1 HD (720p)
https://cachehsi1a.netplus.ch/live/eds/rai1/browser-dash/rai1.mpd
#EXTINF:-1 tvg-id="",Radio Brianza TV
https://57068da1deb21.streamlock.net/radiorbs/radiorbs/playlist.m3u8

View File

@ -1,67 +1,67 @@
#EXTM3U
#EXTINF:-1 tvg-id="",Alberto Sordi & Co (720p)
https://253cf8b2.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X1Jpc2F0ZWFsbGl0YWxpYW5hX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Doctor Who Italy (1080p)
https://amg00793-amg00793c17-rakuten-it-5361.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Drama Italy (1080p)
https://amg00793-amg00793c41-rakuten-it-5445.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Top Gear Italy (1080p)
https://amg00793-amg00793c43-rakuten-it-5537.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Brividy Cinema (720p)
https://ixmediasrl-serially-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",CG Grandi Film (720p)
https://cgentertainment-cgtv-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Cine Aliens (720p)
https://9d597739.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X0JpenphcnJvTW92aWVzX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="",Cine Western (720p)
https://f7ad58aa.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X1dQX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="",Comicità Piccante Movies (720p)
https://7f495636.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X0NpbmVtYVNlZ3JldG9fSExT/playlist.m3u8
#EXTINF:-1 tvg-id="",FIFA+ Italy (720p)
https://5d95f7d7.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X0ZJRkFQbHVzSXRhbGlhbl9ITFM/playlist.m3u8
#EXTINF:-1 tvg-id="",Grjngo Italy (720p)
https://amogonetworx-grjngo-6-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Hell's Kitchen Italy (1080p)
https://amg00654-itv-amg00654c20-rakuten-it-3615.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Inazuma Eleven Go Italy (720p)
https://minerva-pictures-inazumaelevengo-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Mr. Bean Anime Italy (1080p)
https://amg00627-amg00627c29-rakuten-it-3989.playouts.now.amagi.tv/playlist/amg00627-banijayfast-mrbeanitcc-rakutenit/playlist.m3u8
#EXTINF:-1 tvg-id="RadioItaliaTrendTVHD.it@SD",Radio Italia Trend (720p)
https://amg00745-radioitailaspa-radioitalia-rakuten-sucsc.amagi.tv/hls/amagi_hls_data_rakutenAA-radioitalia-rakuten/CDN/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@Italy",Rakuten TV Action Movies (1080p)
https://87f2e2e5e7624e3bad85da1ca2ed31a7.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6067/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Asian Cinema Italy (1080p)
https://asian-cinema-rakuten-tv-it.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6431/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@Italy",Rakuten TV Comedy Movies (1080p)
https://b8bc6c4b9be64bd6aeb3b92aa8521ed4.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6184/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Crime Series Italy (1080p)
https://546609034c0e41d7b5852dd870ddb53b.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6216/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es@Italy",Rakuten TV Drama Movies (1080p)
https://f84e0b1628464fab846160df957f269e.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6094/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Italy",Rakuten TV Family Movies (1080p)
https://3315fc3e7276420f895e19cf807dbee1.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6215/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Romance Movies Italy (1080p)
https://3e0f2491d8634a58967529df3f424c0d.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6193/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Sci-Fi Italy (1080p)
https://sci-fi-rakuten-tv-it.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6430/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVTopMovies.es@Italy",Rakuten TV Top Movies (1080p)
https://d4a4999341764c67a67e9ec9eb3790ab.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-5984/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Trailers Italy (1080p)
https://73e5474be2ae422487b18295a9782482.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-4548/master.m3u8
#EXTINF:-1 tvg-id="",Risate Dal Sud (720p)
https://ixmedia-srl-risatealsud-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Serially Crime (720p)
https://ixmediasrl-seriallycrime-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Soap Latino (720p)
https://fast-channels-network-soaplatino-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Soap Turco (720p)
https://fast-channels-network-soapturco-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Sportitalia.it@SD",Sport Italia (1080p)
https://amg01370-italiansportcom-sportitalia-rakuten-3hmdb.amagi.tv/hls/amagi_hls_data_rakutenAA-sportitalia-rakuten/CDN/master.m3u8
#EXTINF:-1 tvg-id="",Vevo '90s & '00s Italy (1080p)
https://amg00056-amg00056c12-rakuten-it-3240.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Vevo Pop Italy (1080p)
https://amg00056-amg00056c8-rakuten-it-3239.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Yu-Gi-Oh! Italy
https://amg01796-amg01796c17-rakuten-it-7492.playouts.now.amagi.tv/playlist/amg01796-fastmediafast-yugioh3it-rakutenit/playlist.m3u8
#EXTM3U
#EXTINF:-1 tvg-id="",Alberto Sordi & Co (720p)
https://253cf8b2.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X1Jpc2F0ZWFsbGl0YWxpYW5hX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Doctor Who Italy (1080p)
https://amg00793-amg00793c17-rakuten-it-5361.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Drama Italy (1080p)
https://amg00793-amg00793c41-rakuten-it-5445.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",BBC Top Gear Italy (1080p)
https://amg00793-amg00793c43-rakuten-it-5537.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Brividy Cinema (720p)
https://ixmediasrl-serially-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",CG Grandi Film (720p)
https://cgentertainment-cgtv-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Cine Aliens (720p)
https://9d597739.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X0JpenphcnJvTW92aWVzX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="",Cine Western (720p)
https://f7ad58aa.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X1dQX0hMUw/playlist.m3u8
#EXTINF:-1 tvg-id="",Comicità Piccante Movies (720p)
https://7f495636.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X0NpbmVtYVNlZ3JldG9fSExT/playlist.m3u8
#EXTINF:-1 tvg-id="",FIFA+ Italy (720p)
https://5d95f7d7.wurl.com/master/f36d25e7e52f1ba8d7e56eb859c636563214f541/UmFrdXRlblRWLWl0X0ZJRkFQbHVzSXRhbGlhbl9ITFM/playlist.m3u8
#EXTINF:-1 tvg-id="",Grjngo Italy (720p)
https://amogonetworx-grjngo-6-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Hell's Kitchen Italy (1080p)
https://amg00654-itv-amg00654c20-rakuten-it-3615.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Inazuma Eleven Go Italy (720p)
https://minerva-pictures-inazumaelevengo-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Mr. Bean Anime Italy (1080p)
https://amg00627-amg00627c29-rakuten-it-3989.playouts.now.amagi.tv/playlist/amg00627-banijayfast-mrbeanitcc-rakutenit/playlist.m3u8
#EXTINF:-1 tvg-id="RadioItaliaTrendTV.it@HD",Radio Italia Trend (720p)
https://amg00745-radioitailaspa-radioitalia-rakuten-sucsc.amagi.tv/hls/amagi_hls_data_rakutenAA-radioitalia-rakuten/CDN/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@Italy",Rakuten TV Action Movies (1080p)
https://87f2e2e5e7624e3bad85da1ca2ed31a7.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6067/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Asian Cinema Italy (1080p)
https://asian-cinema-rakuten-tv-it.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6431/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@Italy",Rakuten TV Comedy Movies (1080p)
https://b8bc6c4b9be64bd6aeb3b92aa8521ed4.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6184/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Crime Series Italy (1080p)
https://546609034c0e41d7b5852dd870ddb53b.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6216/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es@Italy",Rakuten TV Drama Movies (1080p)
https://f84e0b1628464fab846160df957f269e.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6094/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Italy",Rakuten TV Family Movies (1080p)
https://3315fc3e7276420f895e19cf807dbee1.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6215/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Romance Movies Italy (1080p)
https://3e0f2491d8634a58967529df3f424c0d.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6193/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Sci-Fi Italy (1080p)
https://sci-fi-rakuten-tv-it.fast.rakuten.tv/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-6430/master.m3u8
#EXTINF:-1 tvg-id="RakutenTVTopMovies.es@Italy",Rakuten TV Top Movies (1080p)
https://d4a4999341764c67a67e9ec9eb3790ab.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-5984/master.m3u8
#EXTINF:-1 tvg-id="",Rakuten TV Trailers Italy (1080p)
https://73e5474be2ae422487b18295a9782482.mediatailor.eu-west-1.amazonaws.com/v1/master/0547f18649bd788bec7b67b746e47670f558b6b2/production-LiveChannel-4548/master.m3u8
#EXTINF:-1 tvg-id="",Risate Dal Sud (720p)
https://ixmedia-srl-risatealsud-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Serially Crime (720p)
https://ixmediasrl-seriallycrime-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Soap Latino (720p)
https://fast-channels-network-soaplatino-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Soap Turco (720p)
https://fast-channels-network-soapturco-1-it.rakuten.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Sportitalia.it@SD",Sport Italia (1080p)
https://amg01370-italiansportcom-sportitalia-rakuten-3hmdb.amagi.tv/hls/amagi_hls_data_rakutenAA-sportitalia-rakuten/CDN/master.m3u8
#EXTINF:-1 tvg-id="",Vevo '90s & '00s Italy (1080p)
https://amg00056-amg00056c12-rakuten-it-3240.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Vevo Pop Italy (1080p)
https://amg00056-amg00056c8-rakuten-it-3239.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Yu-Gi-Oh! Italy
https://amg01796-amg01796c17-rakuten-it-7492.playouts.now.amagi.tv/playlist/amg01796-fastmediafast-yugioh3it-rakutenit/playlist.m3u8

View File

@ -1,60 +1,22 @@
#EXTM3U
#EXTINF:-1 tvg-id="BBCDrama.uk@Italy",BBC Drama
https://bbceu-bbcdrama-2-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="BizzarroMovies.it",Bizzarro Movies
https://minerva-bizzarromovies-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Bloomberg TV+ UHD (2160p)
https://bloomberg-bloombergtv-1-it.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="CanaleEuropaTV.it",Canale Europa (720p)
https://canaleeuropa-canaleeuropa-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="CGEntertainment.it",CG Entertainment
https://cgentertainment-cgtv-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="CinemaSegreto.it",Cinema Segreto
https://minerva-cinemasegreto-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="EuronewsItalian.fr",Euronews Italiano (720p)
https://rakuten-euronews-3-it.samsung.wurl.tv/manifest/playlist.m3u8
#EXTINF:-1 tvg-id="FailArmy.us@Italy",Failarmy
https://failarmy-international-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Full Moon
https://minerva-fullmoon-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Humanity Documentari
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00712-alchimie-humanitydocit-samsungit/playlist.m3u8
#EXTINF:-1 tvg-id="ItalianFishingTV.it",Italian Fishing TV
https://itftv-italianfishingtv-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="MondoKids.it",Mondo TV Kids
https://mondotv-mondotvkids-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Motor1 TV
https://motorsportnetwork-motor1tv-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="MuseumTVFrench.fr",Museum TV [Geo-blocked]
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01492-secomsasmediart-museumtv-eng-samsungit/playlist.m3u8
#EXTINF:-1 tvg-id="MyZenTV.fr",Myzen TV [Geo-blocked]
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01255-secomcofites-my-myzen-samsungen-samsungit/playlist.m3u8
#EXTINF:-1 tvg-id="PeopleAreAwesome.us",People are Awesome
https://jukin-peopleareawesome-2-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="PlanetaJuniorTV.us@Italy",Planeta Junior
https://deaplaneta-planetakidz-2-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RadioItaliaTrendTVHD.it",Radio Italia Trend
#EXTINF:-1 tvg-id="RadioItaliaTrendTV.it@HD",Radio Italia Trend
https://radioitalia-samsungitaly.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVActionMovies.es@Italy",Rakuten Action Movies
https://rakuten-actionmovies-6-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVComedyMovies.es@Italy",Rakuten Comedy Movies
https://rakuten-comedymovies-6-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVDramaMovies.es@Italy",Rakuten Drama
https://rakuten-tvshows-6-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVFamilyMovies.es@Italy",Rakuten Family
https://rakuten-family-6-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="RakutenTVSpotlight.es@Italy",Rakuten Spotlight
https://rakuten-spotlight-6-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Shorts [Geo-blocked]
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00784-shortsinternati-shortstv-fast-italy-samsungit/playlist.m3u8
#EXTINF:-1 tvg-id="SofyTV.ch",Sofy TV (720p)
https://sofytv-samsungit.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Sportoutdoor.tv
https://gto2000-sportoutdoortv-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Sportitalia.it",Sports Italia
https://sportsitalia-samsungitaly.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="Teletubbies.uk",Teletubbies
https://dhx-teletubbies-2-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Televisa Telenovelas
https://televisa-televisa-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="ThePetCollective.us@Italy",The Pet Collective
@ -63,7 +25,3 @@ https://the-pet-collective-international-it.samsung.wurl.tv/playlist.m3u8
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01131-tracetv-tracelatinait-samsungit/playlist.m3u8
#EXTINF:-1 tvg-id="TraceUrban.fr",Trace Urban [Geo-blocked]
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg01131-tracetv-traceurbanit-samsungit/playlist.m3u8
#EXTINF:-1 tvg-id="",WP Minerva Pictures
https://minerva-wp-1-it.samsung.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Yamato Animation
https://yamatovideo-yamatoanimation-1-it.samsung.wurl.tv/playlist.m3u8

View File

@ -1,8 +1,8 @@
#EXTM3U
#EXTINF:-1 tvg-id="AlHakikaTV.jo",Al Haqiqa (576p)
https://jmc-live.ercdn.net/alhaqiqa/alhaqiqa.m3u8
#EXTINF:-1 tvg-id="AlMamlakaTV.jo",Al Mamlaka TV (1080p)
https://bcovlive-a.akamaihd.net/4109c7ba30fd4a44ad9afe917c67a8c8/eu-central-1/6415809151001/playlist.m3u8
#EXTINF:-1 tvg-id="AlMamlakaTV.jo@SD",Al Mamlaka TV (1080p)
https://bcovlive-a.akamaihd.net/4109c7ba30fd4a44ad9afe917c67a8c8/eu-central-1/6415809151001/playlist_dvr.m3u8
#EXTINF:-1 tvg-id="AlerthAlnabawiChannel.jo",Alerth Alnabawi Channel (576p)
http://82.212.74.2:8000/live/7307.m3u8
#EXTINF:-1 tvg-id="AlhaqeqaAldawlia.jo",Alhaqeqa Aldawlia (1080p)
@ -53,5 +53,7 @@ https://playlist.fasttvcdn.com/pl/ptllxjd03j6g9oxxjdfapg/roya-kids-originals/pla
https://playlist.fasttvcdn.com/pl/toa2uuhhygheuly7xtuqrg/roya-kitchen/playlist.m3u8
#EXTINF:-1 tvg-id="RoyaTV.jo",Roya TV (1080p) [Not 24/7]
https://royatv-live.daioncdn.net/royatv/royatv.m3u8
#EXTINF:-1 tvg-id="RoyaTV.jo",Roya TV (720p)
https://weyyak-live.akamaized.net/weyyak_roya/index.m3u8
#EXTINF:-1 tvg-id="RoyaKids.jo@SD",Roya Kids
https://playlist.fasttvcdn.com/pl/ptllxjd03j6g9oxxjdfapg/roya-kids/playlist.m3u8
#EXTINF:-1 tvg-id="JordanSport2.jo",Jordan Sport 2 (1080p) [Geo-blocked]
https://jrtv-live.ercdn.net/learning2/learning2.m3u8

View File

@ -14,8 +14,6 @@ https://japaneast.av.mk.io/mediakindcdn-mediakind/b8278d70-0a5f-400c-9b16-c7acf7
https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8
#EXTINF:-1 tvg-id="JOAKDTV.jp",NHK G (Tokyo) (540p) [Not 24/7]
https://nhk4.mov3.co/hls/nhk.m3u8
#EXTINF:-1 tvg-id="JOAKDTV.jp@SD",JOAK-DTV (720p)
http://vthanh.utako.moe/NHK_G/index.m3u8
#EXTINF:-1 tvg-id="NHKKishouSaigai.jp",NHK Kishou Saigai (360p) [Not 24/7]
https://newssimul-stream.nhk.jp/hls/live/2010561/nhknewssimul/master.m3u8
#EXTINF:-1 tvg-id="",NHK World News (French Subs) (720p)
@ -36,17 +34,7 @@ https://cdn-live1.qvc.jp/iPhone/1501/1501.m3u8
https://stream3.shopch.jp/HLS/master.m3u8
#EXTINF:-1 tvg-id="Weathernews.jp",Weathernews (720p)
https://weather-live-hls01e.akamaized.net/ade36978-4ad3-48de-91ab-7d6edd0b6388/11ed8ed8ca.ism/manifest(format=m3u8-aapl-v3,audio-only=false).m3u8
#EXTINF:-1 tvg-id="NHKBS.jp",NHK BS (720p)
http://vthanh.utako.moe/NHK_BS/index.m3u8
#EXTINF:-1 tvg-id="JOEXDTV.jp",JOEX-DTV (720p)
http://vthanh.utako.moe/TV_Asahi/index.m3u8
#EXTINF:-1 tvg-id="JOAXDTV.jp",JOAX-DTV (720p)
http://vthanh.utako.moe/Nippon_TV/index.m3u8
#EXTINF:-1 tvg-id="JOABDTV.jp",JOAB-DTV (720p)
http://vthanh.utako.moe/NHK_E/index.m3u8
#EXTINF:-1 tvg-id="ATX.jp",AT-X (720p)
http://vthanh.utako.moe/AT-X/index.m3u8
#EXTINF:-1 tvg-id="BS11.jp",BS 11 (720p)
http://vthanh.utako.moe/BS11/index.m3u8
#EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (720p)
http://vthanh.utako.moe/Tokyo_MX1/index.m3u8
#EXTINF:-1 tvg-id="NHKWorldJapan.jp@SD",NHK World-Japan
https://cdn4.skygo.mn/live/disk1/NHK_World/HLSv3-FTA/NHK_World.m3u8
#EXTINF:-1 tvg-id="NHKWorldJapan.jp@SD",NHK World-Japan (720p)
https://nhkworld-tv.akamaized.net/hls/live/2115640/nhkworld-tv/index_1M.m3u8

View File

@ -75,3 +75,5 @@ https://goliveafrica.media:9998/live/64a26e4dd21a3/index.m3u8
https://goliveafrica.media:9998/live/62580d78ac508/index.m3u8
#EXTINF:-1 tvg-id="YOUNIBMediaTV.ke",YOUNIB Media TV (720p) [Not 24/7]
https://goliveafrica.media:9998/live/6257fbe7383d6/index.m3u8
#EXTINF:-1 tvg-id="MorningCloudTV.ke@SD",Morning Cloud TV
https://viewmedia7219.bozztv.com/wmedia/viewmedia100/web_026/Stream/playlist.m3u8

View File

@ -60,3 +60,25 @@ https://live.kh.malimarcdn.com/live/tvk.stream/playlist.m3u8
https://live.kh.malimarcdn.com/live/tvk2.stream/playlist.m3u8
#EXTINF:-1 tvg-id="WikiTV.kh",WIKI TV (720p)
https://stream.wikitv.asia/live/ngrp:myStream_all/playlist.m3u8
#EXTINF:-1 tvg-id="PNN.kh",PNN
http://43.252.18.195:5080/live/streams/Pnntv.m3u8
#EXTINF:-1 tvg-id="CTN.kh",CTN
http://43.252.18.195:5080/live/streams/ctn052025.m3u8
#EXTINF:-1 tvg-id="FreshNews.kh@SD",Fresh News
http://streaming-android.freshnewsasia.tv:1935/live/ngrp:myStream_all/playlist.m3u8
#EXTINF:-1 tvg-id="MOITV.kh@SD",MOI TV
http://202.62.56.22:8080/hls/MOITV.m3u8
#EXTINF:-1 tvg-id="ApsaraTV11.kh@SD",Apsara TV11
https://live-evg5.tv360.metfone.com.kh/app/stream/playlist.m3u8
#EXTINF:-1 tvg-id="EACNewsTV.kh@SD",EAC News TV
https://live-evg17.tv360.metfone.com.kh/LiveApp/streams/eacnews.m3u8
#EXTINF:-1 tvg-id="NTV.kh@SD",NTV
https://live-evg10.tv360.metfone.com.kh/LiveApp/streams/ntvhd.m3u8
#EXTINF:-1 tvg-id="CTV8HD.kh@SD",CTV8 HD
http://43.252.18.195:5080/live/streams/ctv8.m3u8
#EXTINF:-1 tvg-id="CNC.kh@SD",CNC
http://43.252.18.195:5080/live/streams/cnctv.m3u8
#EXTINF:-1 tvg-id="TownTV.kh@SD",Town TV
http://202.79.26.142:80/LiveApp/streams/TownTVHD.m3u8
#EXTINF:-1 tvg-id="PNN.kh@SD",PNN
https://live-evg13.tv360.metfone.com.kh/live/pnn.m3u8

View File

@ -132,7 +132,7 @@ https://ns1.tjmbc.co.kr/live/myStream.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="MBCDrama.kr",MBC Drama (480p) [Geo-blocked]
http://mytv.dothome.co.kr/ch/catv/26.php
#EXTINF:-1 tvg-id="HLAQDTV.kr",MBC Gangwon (MBC 강원영동) (1080p) [Not 24/7]
http://123.254.72.24:1935/tvlive/livestream2/playlist.m3u8
http://123.254.93.7:1935/tvlive/livestream2/playlist.m3u8
#EXTINF:-1 tvg-id="HLCNDTV.kr",MBC Gwangju (광주 MBC) (1080p) [Geo-blocked] [Not 24/7]
https://media.kjmbc.co.kr/hls/live/stream/playlist.m3u8
#EXTINF:-1 tvg-id="MBCGyeongnamTV.kr",MBC Gyeongnam (경남 MBC) (1080p) [Not 24/7]
@ -184,17 +184,15 @@ http://123.140.197.22/stream/1/play.m3u8
#EXTINF:-1 tvg-id="HLDQDTV.kr",SBS JTV (406p) [Not 24/7]
http://61.85.197.53:1935/jtv_live/myStream/playlist.m3u8
#EXTINF:-1 tvg-id="HLDHDTV.kr",SBS KBC (1080p) [Not 24/7]
http://119.200.131.11:1935/KBCTV/tv/playlist.m3u8
https://vod.ikbc.co.kr/KBCTV/tv/playlist.m3u8
#EXTINF:-1 tvg-id="HLDGDTV.kr",SBS KNN (1080p) [Not 24/7]
https://stream1.knn.co.kr/hls/9ly4534y7dm2xfa123r2_tv/index.m3u8
#EXTINF:-1 tvg-id="HLDGDTV.kr",SBS KNN (450p) [Not 24/7]
http://211.220.195.200:1935/live/mp4:KnnTV.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="HLDEDTV.kr",SBS TBC (540p) [Geo-blocked] [Not 24/7]
http://203.251.91.122:1935/on-air-Backup/tv/playlist.m3u8
#EXTINF:-1 tvg-id="HLDFDTV.kr",SBS TJB (1080p) [Not 24/7]
http://1.245.74.5:1935/live/tv/.m3u8
http://123.214.216.80:1935/live/tv/playlist.m3u8
#EXTINF:-1 tvg-id="HLDPDTV.kr",SBS UBC (540p) [Not 24/7]
http://59.23.231.102:1935/live/UBCstream/playlist.m3u8
https://stream.ubc.co.kr/hls/ubctvstream/index.m3u8
#EXTINF:-1 tvg-id="ShinsegaeTVShopping.kr",Shinsegae Shopping TV (720p)
https://liveout.catenoid.net/live-02-shinsegaetvshopping/shinsegaetvshopping_720p/playlist.m3u8
#EXTINF:-1 tvg-id="ShoppingNT.kr",Shopping NT (720p)

Some files were not shown because too many files have changed in this diff Show More