Merge branch 'master' into patch-2026.09.1

Resolved conflict in scripts/models/stream.ts: kept the branch's
labels/isNot247/isGeoBlocked handling in fromPlaylistItem while adopting
master's optional-chaining guards for data.tvg / data.http.
This commit is contained in:
Sanaei
2026-09-04 18:01:12 +02:00
17 changed files with 276 additions and 226 deletions
+5 -4
View File
@@ -93,7 +93,8 @@ export class Stream extends sdk.Models.Stream {
if (!data.name) throw new Error('"name" property is required') if (!data.name) throw new Error('"name" property is required')
if (!data.url) throw new Error('"url" property is required') if (!data.url) throw new Error('"url" property is required')
const [channelId, feedId] = data.tvg.id.split('@') const tvgId = data.tvg?.id || ''
const [channelId, feedId] = tvgId.split('@')
const { title, labels, quality } = parseName(data.name) const { title, labels, quality } = parseName(data.name)
const stream = new Stream({ const stream = new Stream({
@@ -102,12 +103,12 @@ export class Stream extends sdk.Models.Stream {
title: title, title: title,
quality: quality || null, quality: quality || null,
url: data.url, url: data.url,
referrer: data.http.referrer || null, referrer: data.http?.referrer || null,
user_agent: data.http['user-agent'] || null, user_agent: data.http?.['user-agent'] || null,
label: null label: null
}) })
stream.tvgId = data.tvg.id stream.tvgId = tvgId
stream.line = data.line stream.line = data.line
stream.isNot247 = labels.includes('Not 24/7') stream.isNot247 = labels.includes('Not 24/7')
stream.isGeoBlocked = labels.includes('Geo-blocked') stream.isGeoBlocked = labels.includes('Geo-blocked')
+11 -2
View File
@@ -39,9 +39,18 @@ export function isURI(string: string): boolean {
} }
export function normalizeURL(url: string): string { export function normalizeURL(url: string): string {
const normalized = normalizeUrl(url, { stripWWW: false }) let normalized: string
try {
normalized = normalizeUrl(url, { stripWWW: false })
} catch {
return url.replace(/\s/g, '+')
}
return decodeURIComponent(normalized).replace(/\s/g, '+').toString() try {
return decodeURIComponent(normalized).replace(/\s/g, '+')
} catch {
return normalized.replace(/\s/g, '+')
}
} }
export function truncate(string: string, limit: number = 100) { export function truncate(string: string, limit: number = 100) {
+32 -32
View File
@@ -21,27 +21,27 @@ https://pe-ak-lp01a-9c9media.akamaized.net/live/News1BNNDigi/p/dash/00000001/1bb
https://2-fss-2.streamhoster.com/pl_120/206508-3261972-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_120/206508-3261972-1/playlist.m3u8
#EXTINF:-1 tvg-id="CanadaOne.ca@SD",Canada One (720p) [Not 24/7] #EXTINF:-1 tvg-id="CanadaOne.ca@SD",Canada One (720p) [Not 24/7]
http://cdn8.live247stream.com/canadaone/tv/playlist.m3u8 http://cdn8.live247stream.com/canadaone/tv/playlist.m3u8
#EXTINF:-1 tvg-id="CFTUDT.ca@SD",Canal Savoir (360p) #EXTINF:-1 tvg-id="Savoirmedia.ca@CFTUDT",Canal Savoir (360p)
https://hls.savoir.media/live/stream.m3u8 https://hls.savoir.media/live/stream.m3u8
#EXTINF:-1 tvg-id="CBRTDT.ca@SD",CBC Calgary (CBRT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBRTDT",CBC Calgary (CBRT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042763/CBCRCLINEAR_TOR_9/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042763/CBCRCLINEAR_TOR_9/master5.m3u8
#EXTINF:-1 tvg-id="",CBC Comedy (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",CBC Comedy (1080p) [Geo-blocked]
https://amagi-streams.akamaized.net/hls/live/2110963/cbccomedy/master.m3u8 https://amagi-streams.akamaized.net/hls/live/2110963/cbccomedy/master.m3u8
#EXTINF:-1 tvg-id="CBXTDT.ca@SD",CBC Edmonton (CBXT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBXTDT",CBC Edmonton (CBXT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042765/CBCRCLINEAR_TOR_11/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042765/CBCRCLINEAR_TOR_11/master5.m3u8
#EXTINF:-1 tvg-id="",CBC Heartland (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",CBC Heartland (1080p) [Geo-blocked]
https://amagi-streams.akamaized.net/hls/live/2113391/cbcheartland/master.m3u8 https://amagi-streams.akamaized.net/hls/live/2113391/cbcheartland/master.m3u8
#EXTINF:-1 tvg-id="",CBC Kids Channel (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",CBC Kids Channel (1080p) [Geo-blocked]
https://amagi-streams.akamaized.net/hls/live/2120483/cbckids/master.m3u8 https://amagi-streams.akamaized.net/hls/live/2120483/cbckids/master.m3u8
#EXTINF:-1 tvg-id="CBWTDT.ca@SD",CBC Manitoba (CBWT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBWTDT",CBC Manitoba (CBWT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042767/CBCRCLINEAR_TOR_13/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042767/CBCRCLINEAR_TOR_13/master5.m3u8
#EXTINF:-1 tvg-id="CBMTDT.ca@SD",CBC Montréal (CBMT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBMTDT",CBC Montréal (CBMT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042761/CBCRCLINEAR_TOR_7/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042761/CBCRCLINEAR_TOR_7/master5.m3u8
#EXTINF:-1 tvg-id="",CBC Murdoch Mysteries (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",CBC Murdoch Mysteries (1080p) [Geo-blocked]
https://amagi-streams.akamaized.net/hls/live/2113390/cbcmurdoch/master.m3u8 https://amagi-streams.akamaized.net/hls/live/2113390/cbcmurdoch/master.m3u8
#EXTINF:-1 tvg-id="CBATDT.ca@SD",CBC New Brunswick (CBAT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBATDT",CBC New Brunswick (CBAT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042757/CBCRCLINEAR_TOR_3/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042757/CBCRCLINEAR_TOR_3/master5.m3u8
#EXTINF:-1 tvg-id="CBNTDT.ca@SD",CBC Newfoundland and Labrador (CBNT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBNTDT",CBC Newfoundland and Labrador (CBNT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042755/CBCRCLINEAR_TOR_1/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042755/CBCRCLINEAR_TOR_1/master5.m3u8
#EXTINF:-1 tvg-id="",CBC News BC (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",CBC News BC (1080p) [Geo-blocked]
https://amagi-streams.akamaized.net/hls/live/2110960/cbcnewsbc/master.m3u8 https://amagi-streams.akamaized.net/hls/live/2110960/cbcnewsbc/master.m3u8
@@ -51,26 +51,26 @@ https://amagi-streams.akamaized.net/hls/live/2110962/cbcexplore/master.m3u8
https://cbcrclinear-tor.akamaized.net/hls/live/2042769/geo_allow_ca/CBCRCLINEAR_TOR_15/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042769/geo_allow_ca/CBCRCLINEAR_TOR_15/master5.m3u8
#EXTINF:-1 tvg-id="",CBC News Toronto (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",CBC News Toronto (1080p) [Geo-blocked]
https://amagi-streams.akamaized.net/hls/live/2110961/cbctoronto/master.m3u8 https://amagi-streams.akamaized.net/hls/live/2110961/cbctoronto/master.m3u8
#EXTINF:-1 tvg-id="CFYKDT.ca@SD",CBC North (CFYK-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CFYKDT",CBC North (CFYK-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042766/CBCRCLINEAR_TOR_12/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042766/CBCRCLINEAR_TOR_12/master5.m3u8
#EXTINF:-1 tvg-id="CBHTDT.ca@SD",CBC Nova Scotia (CBHT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBHTDT",CBC Nova Scotia (CBHT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042758/CBCRCLINEAR_TOR_4/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042758/CBCRCLINEAR_TOR_4/master5.m3u8
#EXTINF:-1 tvg-id="CBOTDT.ca@SD",CBC Ottawa (CBOT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBOTDT",CBC Ottawa (CBOT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042762/CBCRCLINEAR_TOR_8/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042762/CBCRCLINEAR_TOR_8/master5.m3u8
#EXTINF:-1 tvg-id="CBCTDT.ca@SD",CBC Prince Edward Island (CBCT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBCTDT",CBC Prince Edward Island (CBCT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042756/CBCRCLINEAR_TOR_2/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042756/CBCRCLINEAR_TOR_2/master5.m3u8
#EXTINF:-1 tvg-id="CBKTDT.ca@SD",CBC Saskatchewan (CBKT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBKTDT",CBC Saskatchewan (CBKT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042764/CBCRCLINEAR_TOR_10/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042764/CBCRCLINEAR_TOR_10/master5.m3u8
#EXTINF:-1 tvg-id="CBLTDT.ca@SD",CBC Toronto (CBLT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBLTDT",CBC Toronto (CBLT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042760/CBCRCLINEAR_TOR_6/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042760/CBCRCLINEAR_TOR_6/master5.m3u8
#EXTINF:-1 tvg-id="CBUTDT.ca@SD",CBC Vancouver (CBUT-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBUTDT",CBC Vancouver (CBUT-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042768/CBCRCLINEAR_TOR_14/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042768/CBCRCLINEAR_TOR_14/master5.m3u8
#EXTINF:-1 tvg-id="CBETDT.ca@SD",CBC Windsor (CBET-DT) (720p) [Geo-blocked] #EXTINF:-1 tvg-id="CBCTelevision.ca@CBETDT",CBC Windsor (CBET-DT) (720p) [Geo-blocked]
https://cbcrclinear-tor.akamaized.net/hls/live/2042759/CBCRCLINEAR_TOR_5/master5.m3u8 https://cbcrclinear-tor.akamaized.net/hls/live/2042759/CBCRCLINEAR_TOR_5/master5.m3u8
#EXTINF:-1 tvg-id="",CFJC Kamloops BC (720p) [Not 24/7] #EXTINF:-1 tvg-id="",CFJC Kamloops BC (720p) [Not 24/7]
#EXTVLCOPT:http-referrer=https://cfjctoday.com/ #EXTVLCOPT:http-referrer=https://cfjctoday.com/
https://videostream.jpbgdigital.com/CFJCTV.m3u8 https://videostream.jpbgdigital.com/CFJCTV.m3u8
#EXTINF:-1 tvg-id="CFTODT.ca@SD",CFTO-DT (720p) #EXTINF:-1 tvg-id="CTV.ca@CFTODT",CFTO-DT (720p)
http://stream.cammonitorplus.net/1712/index.m3u8 http://stream.cammonitorplus.net/1712/index.m3u8
#EXTINF:-1 tvg-id="CHCHDT.ca@SD",CHCH-DT (720p) #EXTINF:-1 tvg-id="CHCHDT.ca@SD",CHCH-DT (720p)
http://185.246.209.113/CHCHHD/index.m3u8 http://185.246.209.113/CHCHHD/index.m3u8
@@ -123,33 +123,33 @@ http://cdn12.henico.net:8080/live/gsctv/index.m3u8
https://e75fc053c0d2406fb74cdd71d77e1a7f.mediatailor.us-east-1.amazonaws.com/v1/master/f4e8c53a8367a5b58e20ce054ea3ce25a3e904d3/RakutenTV-eu_GustoTV/playlist.m3u8 https://e75fc053c0d2406fb74cdd71d77e1a7f.mediatailor.us-east-1.amazonaws.com/v1/master/f4e8c53a8367a5b58e20ce054ea3ce25a3e904d3/RakutenTV-eu_GustoTV/playlist.m3u8
#EXTINF:-1 tvg-id="HyderTV.ca@SD",Hyder TV (720p) #EXTINF:-1 tvg-id="HyderTV.ca@SD",Hyder TV (720p)
https://cdn.live247stream.com/hyder/tv/playlist.m3u8 https://cdn.live247stream.com/hyder/tv/playlist.m3u8
#EXTINF:-1 tvg-id="CFHDDT.ca@SD",ICI Montreal (720p) #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CFHDDT",ICI Montreal (720p)
https://amdici.akamaized.net/hls/live/873426/ICI-Live-Stream/master.m3u8 https://amdici.akamaized.net/hls/live/873426/ICI-Live-Stream/master.m3u8
#EXTINF:-1 tvg-id="CBFTDT.ca@SD",Ici Radio-Canada Télé (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBFTDT",Ici Radio-Canada Télé (1080p) [Geo-blocked]
https://rcavlive-dai.akamaized.net/hls/live/696614/cancbftprem/master.m3u8 https://rcavlive-dai.akamaized.net/hls/live/696614/cancbftprem/master.m3u8
#EXTINF:-1 tvg-id="CBXFTDT.ca@SD",Ici Radio-Canada Télé Alberta (CBXFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBXFTDT",Ici Radio-Canada Télé Alberta (CBXFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704020/cancbxft/master.m3u8 https://rcavlive.akamaized.net/hls/live/704020/cancbxft/master.m3u8
#EXTINF:-1 tvg-id="CBUFTDT.ca@SD",Ici Radio-Canada Télé Colombie-Britannique/Yukon (CBUFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBUFTDT",Ici Radio-Canada Télé Colombie-Britannique/Yukon (CBUFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704017/cancbuft/master.m3u8 https://rcavlive.akamaized.net/hls/live/704017/cancbuft/master.m3u8
#EXTINF:-1 tvg-id="CJBRDT.ca@SD",Ici Radio-Canada Télé Est du Québec (CJBR-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CJBRDT",Ici Radio-Canada Télé Est du Québec (CJBR-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704024/cancjbr/master.m3u8 https://rcavlive.akamaized.net/hls/live/704024/cancjbr/master.m3u8
#EXTINF:-1 tvg-id="CKSHDT.ca@SD",Ici Radio-Canada Télé Estrie (CKSH-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CKSHDT",Ici Radio-Canada Télé Estrie (CKSH-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704016/cancksh/master.m3u8 https://rcavlive.akamaized.net/hls/live/704016/cancksh/master.m3u8
#EXTINF:-1 tvg-id="CBWFTDT.ca@SD",Ici Radio-Canada Télé Manitoba (CBWFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBWFTDT",Ici Radio-Canada Télé Manitoba (CBWFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704018/cancbwft/master.m3u8 https://rcavlive.akamaized.net/hls/live/704018/cancbwft/master.m3u8
#EXTINF:-1 tvg-id="CKTMDT.ca@SD",Ici Radio-Canada Télé Mauricie/Centre-du-Québec (CKTM-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CKTMDT",Ici Radio-Canada Télé Mauricie/Centre-du-Québec (CKTM-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704021/cancktm/master.m3u8 https://rcavlive.akamaized.net/hls/live/704021/cancktm/master.m3u8
#EXTINF:-1 tvg-id="CBLFTDT.ca@SD",Ici Radio-Canada Télé Ontario (CBLFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBLFTDT",Ici Radio-Canada Télé Ontario (CBLFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704022/cancblft/master.m3u8 https://rcavlive.akamaized.net/hls/live/704022/cancblft/master.m3u8
#EXTINF:-1 tvg-id="CBOFTDT.ca@SD",Ici Radio-Canada Télé Ottawa/Gatineau (CBOFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBOFTDT",Ici Radio-Canada Télé Ottawa/Gatineau (CBOFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/664046/cancboft/master.m3u8 https://rcavlive.akamaized.net/hls/live/664046/cancboft/master.m3u8
#EXTINF:-1 tvg-id="CBVTDT.ca@SD",Ici Radio-Canada Télé Québec (CBVT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBVTDT",Ici Radio-Canada Télé Québec (CBVT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/664045/cancbvt/master.m3u8 https://rcavlive.akamaized.net/hls/live/664045/cancbvt/master.m3u8
#EXTINF:-1 tvg-id="CKTVDT.ca@SD",Ici Radio-Canada Télé Saguenay/Lac-St-Jean (CKTV-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CKTVDT",Ici Radio-Canada Télé Saguenay/Lac-St-Jean (CKTV-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704023/cancktv/master.m3u8 https://rcavlive.akamaized.net/hls/live/704023/cancktv/master.m3u8
#EXTINF:-1 tvg-id="CBKFTDT.ca@SD",Ici Radio-Canada Télé Saskatchewan (CBKFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBKFTDT",Ici Radio-Canada Télé Saskatchewan (CBKFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704019/cancbkft/master.m3u8 https://rcavlive.akamaized.net/hls/live/704019/cancbkft/master.m3u8
#EXTINF:-1 tvg-id="CBAFTDT.ca@SD",Ici Radio-Canada Télé Terre-Neuve-et-Labrador (CBAFT-DT) [Geo-blocked] #EXTINF:-1 tvg-id="IciRadioCanadaTele.ca@CBAFTDT",Ici Radio-Canada Télé Terre-Neuve-et-Labrador (CBAFT-DT) [Geo-blocked]
https://rcavlive.akamaized.net/hls/live/704014/cancbaft/master.m3u8 https://rcavlive.akamaized.net/hls/live/704014/cancbaft/master.m3u8
#EXTINF:-1 tvg-id="IciRDI.ca@SD",ICI RDI (720p) #EXTINF:-1 tvg-id="IciRDI.ca@SD",ICI RDI (720p)
https://rcavlive.akamaized.net/hls/live/704025/xcanrdi/master.m3u8 https://rcavlive.akamaized.net/hls/live/704025/xcanrdi/master.m3u8
@@ -177,7 +177,7 @@ http://temp2.isilive.ca/live/nunavut/live-eng/index.m3u8
http://live.greektv.ca/hls1/greektv.m3u8 http://live.greektv.ca/hls1/greektv.m3u8
#EXTINF:-1 tvg-id="NACTV.ca@SD",NACTV #EXTINF:-1 tvg-id="NACTV.ca@SD",NACTV
https://stream2.pivotalelements.com/memfs/2d2e1038-9eb2-44df-a9b9-109de5752f3b_output_0.m3u8 https://stream2.pivotalelements.com/memfs/2d2e1038-9eb2-44df-a9b9-109de5752f3b_output_0.m3u8
#EXTINF:-1 tvg-id="CJONDT.ca@SD",Newfoundland Television (480p) #EXTINF:-1 tvg-id="NTV.ca@CJONDT",Newfoundland Television (480p)
https://2-fss-1.streamhoster.com/pl_122/201748-1431018-1/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_122/201748-1431018-1/playlist.m3u8
#EXTINF:-1 tvg-id="",Noovo Cinéma (1080p) #EXTINF:-1 tvg-id="",Noovo Cinéma (1080p)
https://dk4ogs46bjxcw.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-xr1ct045l70mz/Noovo_Cinema.m3u8 https://dk4ogs46bjxcw.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-xr1ct045l70mz/Noovo_Cinema.m3u8
@@ -249,7 +249,7 @@ http://23.133.220.149/TV5/index.m3u8
http://23.133.220.149/Unis_TV/index.m3u8 http://23.133.220.149/Unis_TV/index.m3u8
#EXTINF:-1 tvg-id="TV16Toronto.ca@SD",TV 16 Toronto (720p) [Not 24/7] #EXTINF:-1 tvg-id="TV16Toronto.ca@SD",TV 16 Toronto (720p) [Not 24/7]
http://rtmp.smartstream.video:1935/capco/tv29/playlist.m3u8 http://rtmp.smartstream.video:1935/capco/tv29/playlist.m3u8
#EXTINF:-1 tvg-id="CFTMDT.ca@SD",TVA [Geo-blocked] #EXTINF:-1 tvg-id="TVA.ca@CFTMDT",TVA [Geo-blocked]
https://tvalive-dai01.akamaized.net/Content/HLS/Live/channel(575b93c5-be31-ee34-6285-14620fd14048)/index.m3u8 https://tvalive-dai01.akamaized.net/Content/HLS/Live/channel(575b93c5-be31-ee34-6285-14620fd14048)/index.m3u8
#EXTINF:-1 tvg-id="TVOKids.ca@SD",TVOKids (720p) #EXTINF:-1 tvg-id="TVOKids.ca@SD",TVOKids (720p)
https://fastly.live.brightcove.com/6369851620112/us-east-1/15364602001/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJob3N0IjoicGZncmlmLmVncmVzcy50N2M3emwiLCJhY2NvdW50X2lkIjoiMTUzNjQ2MDIwMDEiLCJlaG4iOiJmYXN0bHkubGl2ZS5icmlnaHRjb3ZlLmNvbSIsImlzcyI6ImJsaXZlLXBsYXliYWNrLXNvdXJjZS1hcGkiLCJzdWIiOiJwYXRobWFwdG9rZW4iLCJhdWQiOlsiMTUzNjQ2MDIwMDEiXSwianRpIjoiNjM2OTg1MTYyMDExMiJ9.zRE6fD9JwdbNLUIK5zgvlTAvXCQ3HeeE5p0yH0Pd3-Q/playlist-hls.m3u8 https://fastly.live.brightcove.com/6369851620112/us-east-1/15364602001/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJob3N0IjoicGZncmlmLmVncmVzcy50N2M3emwiLCJhY2NvdW50X2lkIjoiMTUzNjQ2MDIwMDEiLCJlaG4iOiJmYXN0bHkubGl2ZS5icmlnaHRjb3ZlLmNvbSIsImlzcyI6ImJsaXZlLXBsYXliYWNrLXNvdXJjZS1hcGkiLCJzdWIiOiJwYXRobWFwdG9rZW4iLCJhdWQiOlsiMTUzNjQ2MDIwMDEiXSwianRpIjoiNjM2OTg1MTYyMDExMiJ9.zRE6fD9JwdbNLUIK5zgvlTAvXCQ3HeeE5p0yH0Pd3-Q/playlist-hls.m3u8
+3 -3
View File
@@ -196,9 +196,9 @@ https://5caf24a595d94.streamlock.net:1937/stream56/stream56/playlist.m3u8
https://59d39900ebfb8.streamlock.net/rytqrolive/rytqrolive/chunklist.m3u8 https://59d39900ebfb8.streamlock.net/rytqrolive/rytqrolive/chunklist.m3u8
#EXTINF:-1 tvg-id="XHUNESTDT.mx@SD",Señal España (XHUNES-TDT) (720p) #EXTINF:-1 tvg-id="XHUNESTDT.mx@SD",Señal España (XHUNES-TDT) (720p)
https://tv91.hostingnuclear.com:19360/xhunestv/xhunestv.m3u8 https://tv91.hostingnuclear.com:19360/xhunestv/xhunestv.m3u8
#EXTINF:-1 tvg-id="XHPBZCTDT1.mx@SD",SET Televisión Canal 26.1 (720p) [Not 24/7] #EXTINF:-1 tvg-id="SICOMTelevision.mx@XHPBZCTDT",SET Televisión Canal 26.1 (720p) [Not 24/7]
https://5d0d1d7a6be9e.streamlock.net/sicom/canal1/playlist.m3u8 https://5d0d1d7a6be9e.streamlock.net/sicom/canal1/playlist.m3u8
#EXTINF:-1 tvg-id="XHPBZCTDT2.mx@SD",SET Televisión Canal 26.2 (720p) [Not 24/7] #EXTINF:-1 tvg-id="SICOMTelevision.mx@XHPBZCTDT",SET Televisión Canal 26.2 (720p) [Not 24/7]
https://5d0d1d7a6be9e.streamlock.net/sicom/canal2/playlist.m3u8 https://5d0d1d7a6be9e.streamlock.net/sicom/canal2/playlist.m3u8
#EXTINF:-1 tvg-id="SIPSETV81.mx@SD",SIPSE TV 8.1 (1080p) [Not 24/7] #EXTINF:-1 tvg-id="SIPSETV81.mx@SD",SIPSE TV 8.1 (1080p) [Not 24/7]
https://webprod.sipse.com.mx:8080/show/merida.m3u8 https://webprod.sipse.com.mx:8080/show/merida.m3u8
@@ -229,7 +229,7 @@ https://mdstrm.com/live-stream-playlist/62f2c855f7981b5a5a2d8763.m3u8
http://181.119.66.28:8081/TELEHIT-MUSICA/index.m3u8 http://181.119.66.28:8081/TELEHIT-MUSICA/index.m3u8
#EXTINF:-1 tvg-id="TelehitMusica.mx@SD",Telehit Musica #EXTINF:-1 tvg-id="TelehitMusica.mx@SD",Telehit Musica
http://190.61.55.34:2401/play/a06t/index.m3u8 http://190.61.55.34:2401/play/a06t/index.m3u8
#EXTINF:-1 tvg-id="XEWHTDT.mx@SD",Telemax (XEWH-TDT) (1080p) #EXTINF:-1 tvg-id="Telemax.mx@XEWHTDT",Telemax (XEWH-TDT) (1080p)
https://s5.mexside.net:1936/telemax/telemax/playlist.m3u8 https://s5.mexside.net:1936/telemax/telemax/playlist.m3u8
#EXTINF:-1 tvg-id="TeleplaySureste.mx@SD",Teleplay Sureste (720p) #EXTINF:-1 tvg-id="TeleplaySureste.mx@SD",Teleplay Sureste (720p)
https://player.tvstream.mx/livestream/teleplay/livehd/playlist.m3u8 https://player.tvstream.mx/livestream/teleplay/livehd/playlist.m3u8
+1 -1
View File
@@ -43,7 +43,7 @@ https://67acccf130420.streamlock.net/enlacepr1/enlacepr1/playlist.m3u8
https://59825a54e4454.streamlock.net:8443/pastorairisn394/pastorairisn394/chunklist_w239411719.m3u8 https://59825a54e4454.streamlock.net:8443/pastorairisn394/pastorairisn394/chunklist_w239411719.m3u8
#EXTINF:-1 tvg-id="WIPRTV61.pr@HD",WIPR (1080p) #EXTINF:-1 tvg-id="WIPRTV61.pr@HD",WIPR (1080p)
https://streamwipr.pr/hls/stream/index.m3u8 https://streamwipr.pr/hls/stream/index.m3u8
#EXTINF:-1 tvg-id="WKAQTV21.pr@HD",WKAQ-DT1 (Telemundo PR) (1080p) #EXTINF:-1 tvg-id="Telemundo.us@WKAQTV",WKAQ-DT1 (Telemundo PR) (1080p)
https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream1/master.m3u8 https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream1/master.m3u8
#EXTINF:-1 tvg-id="WKAQTV22.pr@HD",WKAQ-DT2 (Punto 2) (720p) #EXTINF:-1 tvg-id="WKAQTV22.pr@HD",WKAQ-DT2 (Punto 2) (720p)
https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream2/master.m3u8 https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream2/master.m3u8
+57 -61
View File
@@ -269,7 +269,7 @@ https://bloomberg.com/media-manifest/streams/phoenix-us.m3u8
https://reflect-batv.cablecast.tv/live-3/live/live.m3u8 https://reflect-batv.cablecast.tv/live-3/live/live.m3u8
#EXTINF:-1 tvg-id="BATV.us@SD",Bloomfield Access TV Channel 5 (480p) #EXTINF:-1 tvg-id="BATV.us@SD",Bloomfield Access TV Channel 5 (480p)
https://reflect-batv.cablecast.tv/live-5/live/live.m3u8 https://reflect-batv.cablecast.tv/live-5/live/live.m3u8
#EXTINF:-1 tvg-id="KMBYLD275.us@SD",Blues TV #EXTINF:-1 tvg-id="MeTVToons.us@KMBYLD",Blues TV
https://2-fss-2.streamhoster.com/pl_138/205510-3094608-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_138/205510-3094608-1/playlist.m3u8
#EXTINF:-1 tvg-id="BMCHDTV.us@SD",BMC-HD TV (720p) #EXTINF:-1 tvg-id="BMCHDTV.us@SD",BMC-HD TV (720p)
https://livestream.telvue.com/belmontmedia4/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 https://livestream.telvue.com/belmontmedia4/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8
@@ -766,37 +766,37 @@ https://streams2.sofast.tv/ptnr-yupptv/title-JUST_FOR_LAUGHS_GAGS_YUPPTV/v1/mast
https://video1.getstreamhosting.com:1936/8055/8055/playlist.m3u8 https://video1.getstreamhosting.com:1936/8055/8055/playlist.m3u8
#EXTINF:-1 tvg-id="KaloopyTV.us@SD",Kaloopy TV (1080p) #EXTINF:-1 tvg-id="KaloopyTV.us@SD",Kaloopy TV (1080p)
https://streamingserver000.viewtv.cloud/VIEWTVNETWORK-KALOOPY/index.m3u8 https://streamingserver000.viewtv.cloud/VIEWTVNETWORK-KALOOPY/index.m3u8
#EXTINF:-1 tvg-id="KATC31.us@HD",KATC 3.1 (1080p) #EXTINF:-1 tvg-id="ABC.us@KATC",KATC 3.1 (1080p)
http://stream.cammonitorplus.net/1753/index.m3u8 http://stream.cammonitorplus.net/1753/index.m3u8
#EXTINF:-1 tvg-id="KCKSLD253.us@HD",KCKS-LD 25.3 (720p) #EXTINF:-1 tvg-id="AceTV.us@KCKSLD",KCKS-LD 25.3 (720p)
https://2-fss-1.streamhoster.com/pl_154/amlst:205432-2055980/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_154/amlst:205432-2055980/playlist.m3u8
#EXTINF:-1 tvg-id="KDFW41.us@HD",KDFW-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@KDFW",KDFW-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox4dallaskdfw-vizious/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox4dallaskdfw-vizious/playlist.m3u8
#EXTINF:-1 tvg-id="KetchupTV.us@SD",Ketchup TV (720p) #EXTINF:-1 tvg-id="KetchupTV.us@SD",Ketchup TV (720p)
https://stream.ads.ottera.tv/playlist.m3u8?network_id=13171 https://stream.ads.ottera.tv/playlist.m3u8?network_id=13171
#EXTINF:-1 tvg-id="KFTRDT461.us@HD",KFTR-DT1 [Geo-blocked] #EXTINF:-1 tvg-id="UniMas.us@KFTRDT",KFTR-DT1 [Geo-blocked]
https://streaming-live-fcdn.api.prd.univisionnow.com/kftr/kftr.isml/hls/kftr.m3u8 https://streaming-live-fcdn.api.prd.univisionnow.com/kftr/kftr.isml/hls/kftr.m3u8
#EXTINF:-1 tvg-id="",Kids Street (1080p) #EXTINF:-1 tvg-id="",Kids Street (1080p)
http://181.78.121.15:8000/play/a00a/index.m3u8 http://181.78.121.15:8000/play/a00a/index.m3u8
#EXTINF:-1 tvg-id="KIROTV71.us@HD",KIRO-DT1 (1080p) #EXTINF:-1 tvg-id="CBS.us@KIROTV",KIRO-DT1 (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-kirobreaking-ono/playlist.m3u8 https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-kirobreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="KMEXDT341.us@HD",KMEX-DT1 [Geo-blocked] #EXTINF:-1 tvg-id="Univision.us@KMEXDT",KMEX-DT1 [Geo-blocked]
https://streaming-live-fcdn.api.prd.univisionnow.com/kmex/kmex.isml/hls/kmex.m3u8 https://streaming-live-fcdn.api.prd.univisionnow.com/kmex/kmex.isml/hls/kmex.m3u8
#EXTINF:-1 tvg-id="KMSPDT1.us@SD",KMSP-DT1 (1080p) #EXTINF:-1 tvg-id="KMSPDT1.us@SD",KMSP-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-kmsp-lgus/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-kmsp-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="KNTV111.us@HD",KNTV 11.1 #EXTINF:-1 tvg-id="NBC.us@KNTV",KNTV 11.1
http://50.229.129.155/0.ts http://50.229.129.155/0.ts
#EXTINF:-1 tvg-id="KNTV111.us@HD",KNTV-DT1 (1080p) #EXTINF:-1 tvg-id="NBC.us@KNTV",KNTV-DT1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889711/hls/master.m3u8?ads.xumo_channelId=88889711a&ads.xumo_ifaType=&ads.xumo_providerId=3822&ads.xumo_providerName=NBCNBA https://d368vp0qqzvkid.cloudfront.net/11603/88889711/hls/master.m3u8?ads.xumo_channelId=88889711a&ads.xumo_ifaType=&ads.xumo_providerId=3822&ads.xumo_providerName=NBCNBA
#EXTINF:-1 tvg-id="KOKITV231.us@HD",KOKI-DT1 (1080p) #EXTINF:-1 tvg-id="Roar.us@KOKITV",KOKI-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg02104-imagicommcommun-kokibreaking-ono/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg02104-imagicommcommun-kokibreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="ACECountryRadio.us@KPVMLD",ACE Country Radio KPVM-LD #EXTINF:-1 tvg-id="ACECountryRadio.us@KPVMLD",ACE Country Radio KPVM-LD
https://2-fss-1.streamhoster.com/pl_122/206858-4412960-1/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_122/206858-4412960-1/playlist.m3u8
#EXTINF:-1 tvg-id="KPVMLD257.us@SD",KPVM AWE Plus #EXTINF:-1 tvg-id="AWEPlus.us@KPVMLD",KPVM AWE Plus
https://2-fss-2.streamhoster.com/pl_120/206858-4404552-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_120/206858-4404552-1/playlist.m3u8
#EXTINF:-1 tvg-id="Movies.us@KPVMLD",Movies! KPVM-LD #EXTINF:-1 tvg-id="Movies.us@KPVMLD",Movies! KPVM-LD
https://2-fss-2.streamhoster.com/pl_120/206858-4412962-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_120/206858-4412962-1/playlist.m3u8
#EXTINF:-1 tvg-id="KPVMLD255.us@SD",KPVM Newsmax 2 #EXTINF:-1 tvg-id="Newsmax2.us@KPVMLD",KPVM Newsmax 2
https://2-fss-2.streamhoster.com/pl_120/206858-4404556-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_120/206858-4404556-1/playlist.m3u8
#EXTINF:-1 tvg-id="OANPlus.us@KPVMLD",OAN Plus KPVM-LD #EXTINF:-1 tvg-id="OANPlus.us@KPVMLD",OAN Plus KPVM-LD
https://2-fss-2.streamhoster.com/pl_118/206858-4404458-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_118/206858-4404458-1/playlist.m3u8
@@ -806,25 +806,25 @@ https://2-fss-1.streamhoster.com/pl_122/206858-4405346-1/playlist.m3u8
https://2-fss-2.streamhoster.com/pl_118/206858-4404454-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_118/206858-4404454-1/playlist.m3u8
#EXTINF:-1 tvg-id="StoryTelevision.us@KPVMLD",Story Television KPVM-LD #EXTINF:-1 tvg-id="StoryTelevision.us@KPVMLD",Story Television KPVM-LD
https://2-fss-1.streamhoster.com/pl_122/206858-4412976-1/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_122/206858-4412976-1/playlist.m3u8
#EXTINF:-1 tvg-id="KQED92.us@HD",KQED-DT2 (1080p) #EXTINF:-1 tvg-id="PBS.us@KQED",KQED-DT2 (1080p)
https://kqeddt2.lls.pbs.org/kqeddt2-hls.m3u8 https://kqeddt2.lls.pbs.org/kqeddt2-hls.m3u8
#EXTINF:-1 tvg-id="KRGVTV52.us@HD",KRGV-DT2 [Geo-blocked] #EXTINF:-1 tvg-id="KRGVTV52.us@HD",KRGV-DT2 [Geo-blocked]
https://d3svnrf3rmq619.cloudfront.net/krgv-live/smil:krgv-somos.smil/playlist.m3u8 https://d3svnrf3rmq619.cloudfront.net/krgv-live/smil:krgv-somos.smil/playlist.m3u8
#EXTINF:-1 tvg-id="KRIV261.us@HD",KRIV-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@KRIV",KRIV-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-kriv-lgus/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-kriv-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="KSAZTV101.us@HD",KSAZ-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@KSAZTV",KSAZ-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-ksaz-lgus/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-ksaz-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="KTBC71.us@HD",KTBC-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@KTBC",KTBC-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-ktbc-lgus/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-ktbc-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="KTTV111.us@HD",KTTV 11.1 (720p) #EXTINF:-1 tvg-id="Fox.us@KTTV",KTTV 11.1 (720p)
https://n15sb.host5245.com/63/index.m3u8 https://n15sb.host5245.com/63/index.m3u8
#EXTINF:-1 tvg-id="KTTV111.us@HD",KTTV-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@KTTV",KTTV-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox11losangeleskttv-vizious/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox11losangeleskttv-vizious/playlist.m3u8
#EXTINF:-1 tvg-id="KUVNDT491.us@HD",KUVN-DT1 #EXTINF:-1 tvg-id="UniMas.us@KUVNDT",KUVN-DT1
https://streaming-live-fcdn.api.prd.univisionnow.com/kuvn/kuvn.isml/hls/kuvn.m3u8 https://streaming-live-fcdn.api.prd.univisionnow.com/kuvn/kuvn.isml/hls/kuvn.m3u8
#EXTINF:-1 tvg-id="KVIE62.us@HD",KVIE-DT2 (1080p) #EXTINF:-1 tvg-id="PBS.us@KVIE",KVIE-DT2 (1080p)
https://kviedt2.lls.pbs.org/kviedt2-hls.m3u8 https://kviedt2.lls.pbs.org/kviedt2-hls.m3u8
#EXTINF:-1 tvg-id="KXASTV51.us@HD",KXAS-DT1 (1080p) #EXTINF:-1 tvg-id="NBC.us@KXASTV",KXAS-DT1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889706/hls/master.m3u8?ads.xumo_channelId=88889706a&ads.xumo_ifaType=&ads.xumo_providerId=3831&ads.xumo_providerName=NBCNDAL https://d368vp0qqzvkid.cloudfront.net/11603/88889706/hls/master.m3u8?ads.xumo_channelId=88889706a&ads.xumo_ifaType=&ads.xumo_providerId=3831&ads.xumo_providerName=NBCNDAL
#EXTINF:-1 tvg-id="LaQueBuenaAtlanta.us@SD",La Que Buena Atlanta #EXTINF:-1 tvg-id="LaQueBuenaAtlanta.us@SD",La Que Buena Atlanta
https://streamyes.alsolnet.com/quebuenaatlanta/live/index.m3u8 https://streamyes.alsolnet.com/quebuenaatlanta/live/index.m3u8
@@ -992,7 +992,7 @@ http://190.11.225.124:5000/live/nbc_hd/playlist.m3u8
http://stream.cammonitorplus.net/1785/index.m3u8 http://stream.cammonitorplus.net/1785/index.m3u8
#EXTINF:-1 tvg-id="NBC.us@East",NBC (720p) #EXTINF:-1 tvg-id="NBC.us@East",NBC (720p)
http://170.254.17.2/NBC/index.m3u8 http://170.254.17.2/NBC/index.m3u8
#EXTINF:-1 tvg-id="WMAQTV51.us@HD",NBC 5 Chicago Live News (1080p) #EXTINF:-1 tvg-id="NBC.us@WMAQTV",NBC 5 Chicago Live News (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889704/hls/master.m3u8?ads.xumo_channelId=88889704a&ads.xumo_ifaType=&ads.xumo_providerId=3818&ads.xumo_providerName=NBCNCHI https://d368vp0qqzvkid.cloudfront.net/11603/88889704/hls/master.m3u8?ads.xumo_channelId=88889704a&ads.xumo_ifaType=&ads.xumo_providerId=3818&ads.xumo_providerName=NBCNCHI
#EXTINF:-1 tvg-id="NBCLXHome.us@HD",NBC LX Home (1080p) #EXTINF:-1 tvg-id="NBCLXHome.us@HD",NBC LX Home (1080p)
https://plex-xumoent-ch485-e7l5l.fast.nbcuni.com/live/master_5.m3u8 https://plex-xumoent-ch485-e7l5l.fast.nbcuni.com/live/master_5.m3u8
@@ -1014,7 +1014,7 @@ http://187.102.210.46/universo/index.m3u8
http://190.11.225.124:5000/live/universo_hd/playlist.m3u8 http://190.11.225.124:5000/live/universo_hd/playlist.m3u8
#EXTINF:-1 tvg-id="NBC.us@West",NBC West (720p) #EXTINF:-1 tvg-id="NBC.us@West",NBC West (720p)
http://stream.cammonitorplus.net/1800/index.m3u8 http://stream.cammonitorplus.net/1800/index.m3u8
#EXTINF:-1 tvg-id="KNSD481.us@HD",NBC West (San Diego) (1080p) [Not 24/7] #EXTINF:-1 tvg-id="Telemundo.us@KNSD",NBC West (San Diego) (1080p) [Not 24/7]
https://nbculocallive.akamaized.net/hls/live/2037098/sandiego/stream1/master.m3u8 https://nbculocallive.akamaized.net/hls/live/2037098/sandiego/stream1/master.m3u8
#EXTINF:-1 tvg-id="NBCLX.us@SD",NBCLX (1080p) #EXTINF:-1 tvg-id="NBCLX.us@SD",NBCLX (1080p)
https://nbculocallive.akamaized.net/hls/live/2037096/lx/use1.m3u8 https://nbculocallive.akamaized.net/hls/live/2037096/lx/use1.m3u8
@@ -1330,7 +1330,7 @@ http://23.237.104.106:8080/USA_STARZ_COMEDY/index.m3u8
http://23.237.104.106:8080/USA_STARZ_FAMILY/index.m3u8 http://23.237.104.106:8080/USA_STARZ_FAMILY/index.m3u8
#EXTINF:-1 tvg-id="StingrayGreatestHolidayHits.us@SD",Stingray Greatest Holiday Hits #EXTINF:-1 tvg-id="StingrayGreatestHolidayHits.us@SD",Stingray Greatest Holiday Hits
https://d39g1vxj2ef6in.cloudfront.net/v1/manifest/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/54947915-6504-4548-aaef-eabd451f8607/1.m3u8 https://d39g1vxj2ef6in.cloudfront.net/v1/manifest/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod-rakuten-stitched/54947915-6504-4548-aaef-eabd451f8607/1.m3u8
#EXTINF:-1 tvg-id="WCIUTV265.us@SD",Story Television #EXTINF:-1 tvg-id="StoryTelevision.us@WCIUTV",Story Television
https://2-fss-1.streamhoster.com/pl_122/206858-4412976-1/chunklist.m3u8 https://2-fss-1.streamhoster.com/pl_122/206858-4412976-1/chunklist.m3u8
#EXTINF:-1 tvg-id="StrykTV.us@HD",Stryk TV (1080p) #EXTINF:-1 tvg-id="StrykTV.us@HD",Stryk TV (1080p)
https://fffffff110156200.tvustream.com:8298/ryfy.m3u8 https://fffffff110156200.tvustream.com:8298/ryfy.m3u8
@@ -1606,9 +1606,9 @@ https://tgn2.bozztv.com/watc57/watc57-1/watc57-1/index.m3u8
https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=2245 https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=2245
#EXTINF:-1 tvg-id="WatchitScream.us@SD",Watch it Scream! (720p) #EXTINF:-1 tvg-id="WatchitScream.us@SD",Watch it Scream! (720p)
https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=2246 https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=2246
#EXTINF:-1 tvg-id="WBTSCD151.us@HD",WBTS-CD1 (1080p) #EXTINF:-1 tvg-id="NBC.us@WBTSCD",WBTS-CD1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889713/hls/master.m3u8?ads.xumo_channelId=88889713a&ads.xumo_ifaType=&ads.xumo_providerId=3820&ads.xumo_providerName=NBCNBOS https://d368vp0qqzvkid.cloudfront.net/11603/88889713/hls/master.m3u8?ads.xumo_channelId=88889713a&ads.xumo_ifaType=&ads.xumo_providerId=3820&ads.xumo_providerName=NBCNBOS
#EXTINF:-1 tvg-id="WCAU621.us@HD",WCAU-DT1 (1080p) #EXTINF:-1 tvg-id="Telemundo.us@WCAU",WCAU-DT1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889705/hls/master.m3u8?ads.xumo_channelId=88889705a&ads.xumo_ifaType=&ads.xumo_providerId=3819&ads.xumo_providerName=NBCNPHI https://d368vp0qqzvkid.cloudfront.net/11603/88889705/hls/master.m3u8?ads.xumo_channelId=88889705a&ads.xumo_ifaType=&ads.xumo_providerId=3819&ads.xumo_providerName=NBCNPHI
#EXTINF:-1 tvg-id="WeTV.us@East",We TV (720p) #EXTINF:-1 tvg-id="WeTV.us@East",We TV (720p)
http://170.254.17.2/WE_TV/index.m3u8 http://170.254.17.2/WE_TV/index.m3u8
@@ -1616,28 +1616,28 @@ http://170.254.17.2/WE_TV/index.m3u8
https://streamer1.nexgen.bz/WE_TV/index.m3u8 https://streamer1.nexgen.bz/WE_TV/index.m3u8
#EXTINF:-1 tvg-id="WeatherNation.us@SD",WeatherNation (1080p) #EXTINF:-1 tvg-id="WeatherNation.us@SD",WeatherNation (1080p)
https://d2ferbiwcx1539.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-8zd06wicndthf-ssai-prd/WNNationalSamsung/WNNationalSamsung.m3u8 https://d2ferbiwcx1539.cloudfront.net/v1/master/3722c60a815c199d9c0ef36c5b73da68a62b09d1/cc-8zd06wicndthf-ssai-prd/WNNationalSamsung/WNNationalSamsung.m3u8
#EXTINF:-1 tvg-id="WEDQ34.us@HD",WEDQ-DT4 (1080p) #EXTINF:-1 tvg-id="PBS.us@WEDQ",WEDQ-DT4 (1080p)
https://wedqdt4.lls.pbs.org/wedqdt4-hls.m3u8 https://wedqdt4.lls.pbs.org/wedqdt4-hls.m3u8
#EXTINF:-1 tvg-id="Westerns4U.us@SD",Westerns 4U (1080p) #EXTINF:-1 tvg-id="Westerns4U.us@SD",Westerns 4U (1080p)
http://181.224.255.210:8001/play/a0rq/index.m3u8 http://181.224.255.210:8001/play/a0rq/index.m3u8
#EXTINF:-1 tvg-id="WFLD501.us@HD",WFLD-DT1 (1080p) #EXTINF:-1 tvg-id="MNT.us@WFLD",WFLD-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-wfld-lgus/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-wfld-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="WFUTDT681.us@HD",WFUT-DT1 (720p) [Geo-blocked] #EXTINF:-1 tvg-id="UniMas.us@WFUTDT",WFUT-DT1 (720p) [Geo-blocked]
https://streaming-live-fcdn.api.prd.univisionnow.com/wfut/wfut.isml/hls/wfut.m3u8 https://streaming-live-fcdn.api.prd.univisionnow.com/wfut/wfut.isml/hls/wfut.m3u8
#EXTINF:-1 tvg-id="WFXT662.us@SD",WFXT-DT2 (1080p) #EXTINF:-1 tvg-id="MovieSphereGold.us@WFXT",WFXT-DT2 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg01438-ewscrippscompan-ionmystery-tablo/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg01438-ewscrippscompan-ionmystery-tablo/playlist.m3u8
#EXTINF:-1 tvg-id="WGALDT3.us@SD",WGAL-DT3 (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="WGALDT3.us@SD",WGAL-DT3 (1080p) [Geo-blocked]
https://lowa8026-cmyk.github.io/iptv/WGAL-DT3/index.m3u8 https://lowa8026-cmyk.github.io/iptv/WGAL-DT3/index.m3u8
#EXTINF:-1 tvg-id="WGBODT661.us@HD",WGBO-DT 66.1 (2160p) #EXTINF:-1 tvg-id="Univision.us@WGBODT",WGBO-DT 66.1 (2160p)
#EXTVLCOPT:http-referrer=http://tv.univision.com/player/channel/univision-chicago #EXTVLCOPT:http-referrer=http://tv.univision.com/player/channel/univision-chicago
https://unidfp-nlds154.global.ssl.fastly.net/nlds/univisionnow/univision_chi2/as/live/univision_chi2_hd_pc.m3u8?t1=null https://unidfp-nlds154.global.ssl.fastly.net/nlds/univisionnow/univision_chi2/as/live/univision_chi2_hd_pc.m3u8?t1=null
#EXTINF:-1 tvg-id="WGNDT1.us@SD",WGN-DT1 (720p) #EXTINF:-1 tvg-id="WGNDT1.us@SD",WGN-DT1 (720p)
http://23.237.104.106:8080/USA_WGN/index.m3u8 http://23.237.104.106:8080/USA_WGN/index.m3u8
#EXTINF:-1 tvg-id="WGTV83.us@SD",WGTV-DT3 (1080p) #EXTINF:-1 tvg-id="WorldChannel.us@WGTV",WGTV-DT3 (1080p)
https://wgtvdt3.lls.pbs.org/wgtvdt3-cmaf-hls.m3u8 https://wgtvdt3.lls.pbs.org/wgtvdt3-cmaf-hls.m3u8
#EXTINF:-1 tvg-id="WHBQTV131.us@HD",WHBQ-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@WHBQTV",WHBQ-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg02104-imagicommcommun-whbqbreaking-ono/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg02104-imagicommcommun-whbqbreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="WHIOTV71.us@HD",WHIO-DT1 (1080p) #EXTINF:-1 tvg-id="CBS.us@WHIOTV",WHIO-DT1 (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-whiobreaking-ono/playlist.m3u8 https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-whiobreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="Whiplash.us@HD",Whiplash (720p) #EXTINF:-1 tvg-id="Whiplash.us@HD",Whiplash (720p)
https://cdn.whiplash.cc/whiplash/index.m3u8 https://cdn.whiplash.cc/whiplash/index.m3u8
@@ -1645,7 +1645,7 @@ https://cdn.whiplash.cc/whiplash/index.m3u8
https://cdn.whiplash.cc/whiplash-cinema/index.m3u8 https://cdn.whiplash.cc/whiplash-cinema/index.m3u8
#EXTINF:-1 tvg-id="WhiplashII.us@SD",Whiplash II (480p) #EXTINF:-1 tvg-id="WhiplashII.us@SD",Whiplash II (480p)
https://cdn.whiplash.cc/whiplash-2/index.m3u8 https://cdn.whiplash.cc/whiplash-2/index.m3u8
#EXTINF:-1 tvg-id="WHPSCD152.us@SD",WHPS Detroit #EXTINF:-1 tvg-id="iHolyfieldTV.us@WHPSCD",WHPS Detroit
https://f-tx-edge-87.christianworldmedia.com/313watkins/mp4:313watkins/playlist.m3u8 https://f-tx-edge-87.christianworldmedia.com/313watkins/mp4:313watkins/playlist.m3u8
#EXTINF:-1 tvg-id="Willow.us@SD",Willow (720p) #EXTINF:-1 tvg-id="Willow.us@SD",Willow (720p)
http://tvsen5.aynascope.net/willowhd/index.m3u8 http://tvsen5.aynascope.net/willowhd/index.m3u8
@@ -1663,65 +1663,63 @@ https://d36r8jifhgsk5j.cloudfront.net/Willow_TV1080p.m3u8
https://cdn.whiplash.cc/whiplash-windowtv/index.m3u8 https://cdn.whiplash.cc/whiplash-windowtv/index.m3u8
#EXTINF:-1 tvg-id="WineWatchesWhiskey.us@HD",Wine Watches Whiskey (1080p) #EXTINF:-1 tvg-id="WineWatchesWhiskey.us@HD",Wine Watches Whiskey (1080p)
https://www-on-freecast.b-cdn.net/WWW-on-Freecast/index.m3u8 https://www-on-freecast.b-cdn.net/WWW-on-Freecast/index.m3u8
#EXTINF:-1 tvg-id="WITI61.us@HD",WITI-DT1 (1080p) #EXTINF:-1 tvg-id="CBS.us@WJAXTV",WJAX-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-witi-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="WJAXTV471.us@HD",WJAX-DT1 (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wjaxbreaking-ono/playlist.m3u8 https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wjaxbreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="WJBK21.us@HD",WJBK-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@WITI",WITI-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-witi-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="Fox.us@WJBK",WJBK-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox2detroitwjbk-vizious/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox2detroitwjbk-vizious/playlist.m3u8
#EXTINF:-1 tvg-id="WLMB.us@SD",WLMB (1080p) #EXTINF:-1 tvg-id="WLMB.us@SD",WLMB (1080p)
https://rpn.bozztv.com/wlmb/wlmb/wlmb/index.m3u8 https://rpn.bozztv.com/wlmb/wlmb/wlmb/index.m3u8
#EXTINF:-1 tvg-id="WLTVDT231.us@HD",WLTV-DT1 [Geo-blocked] #EXTINF:-1 tvg-id="Univision.us@WLTVDT",WLTV-DT1 [Geo-blocked]
https://streaming-live-fcdn.api.prd.univisionnow.com/wltv/wltv.isml/hls/wltv.m3u8 https://streaming-live-fcdn.api.prd.univisionnow.com/wltv/wltv.isml/hls/wltv.m3u8
#EXTINF:-1 tvg-id="WMBCTV631.us@HD",WMBC-DT1 (720p) #EXTINF:-1 tvg-id="EstrellaTV.us@WMBCTV",WMBC-DT1 (720p)
http://d029dcec.kazmazpaz.ru/iptv/GVR4V8HYAGBS5V/1098/manifest.m3u8 http://d029dcec.kazmazpaz.ru/iptv/GVR4V8HYAGBS5V/1098/manifest.m3u8
#EXTINF:-1 tvg-id="WMBCTV631.us@HD",WMBC-DT1 #EXTINF:-1 tvg-id="EstrellaTV.us@WMBCTV",WMBC-DT1
http://61ce5915.amazzin.pw/iptv/FF38ZQWZHTSV8T4XX9RDZYLB/1098/index.m3u8 http://61ce5915.amazzin.pw/iptv/FF38ZQWZHTSV8T4XX9RDZYLB/1098/index.m3u8
#EXTINF:-1 tvg-id="WNBC471.us@HD",WNBC-DT1 (1080p) #EXTINF:-1 tvg-id="WNBC471.us@HD",WNBC-DT1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889709/hls/master.m3u8?ads.xumo_channelId=88889709a&ads.xumo_ifaType=&ads.xumo_providerId=3816&ads.xumo_providerName=NBCNNY https://d368vp0qqzvkid.cloudfront.net/11603/88889709/hls/master.m3u8?ads.xumo_channelId=88889709a&ads.xumo_ifaType=&ads.xumo_providerId=3816&ads.xumo_providerName=NBCNNY
#EXTINF:-1 tvg-id="WNYW51.us@HD",WNYW-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@WNYW",WNYW-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-wnyw-lgus/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-wnyw-lgus/playlist.m3u8
#EXTINF:-1 tvg-id="WorldChannel.us@SD",World Channel (1080p) #EXTINF:-1 tvg-id="WorldChannel.us@SD",World Channel (1080p)
https://world.lls.pbs.org/index.m3u8 https://world.lls.pbs.org/index.m3u8
#EXTINF:-1 tvg-id="WPIXHD.us@SD",WPIX-HD (576p) #EXTINF:-1 tvg-id="NBC.us@WPXI",WPXI-DT1 (1080p)
https://tvsen6.aynaott.com/pix11/index.m3u8
#EXTINF:-1 tvg-id="WPXI111.us@HD",WPXI-DT1 (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wpxibreaking-ono/playlist.m3u8 https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wpxibreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="WRCDT1.us@SD",WRC-DT1 (1080p) #EXTINF:-1 tvg-id="WRCDT1.us@SD",WRC-DT1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889708/hls/master.m3u8?ads.xumo_channelId=88889708a&ads.xumo_ifaType=&ads.xumo_providerId=3830&ads.xumo_providerName=NBCNWAS https://d368vp0qqzvkid.cloudfront.net/11603/88889708/hls/master.m3u8?ads.xumo_channelId=88889708a&ads.xumo_ifaType=&ads.xumo_providerId=3830&ads.xumo_providerName=NBCNWAS
#EXTINF:-1 tvg-id="WSBDT1.us@SD",WSB-DT1 (1080p) #EXTINF:-1 tvg-id="WSBDT1.us@SD",WSB-DT1 (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wsbbreakingnews-ono/playlist.m3u8 https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wsbbreakingnews-ono/playlist.m3u8
#EXTINF:-1 tvg-id="WSBSTV221.us@HD",WSBS-DT1 (1080p) #EXTINF:-1 tvg-id="MegaTV.us@WSBSTV",WSBS-DT1 (1080p)
https://mdstrm.com/live-stream-playlist/67ed74e8af482ba71d47fd7b.m3u8 https://mdstrm.com/live-stream-playlist/67ed74e8af482ba71d47fd7b.m3u8
#EXTINF:-1 tvg-id="WSLFLD351.us@HD",WSLF-LD 35.1 (720p) #EXTINF:-1 tvg-id="DaystarTV.us@WSLFLD",WSLF-LD 35.1 (720p)
https://content.uplynk.com/channel/1992858a34c3423dbdad491d07ae6f75.m3u8 https://content.uplynk.com/channel/1992858a34c3423dbdad491d07ae6f75.m3u8
#EXTINF:-1 tvg-id="WSOCNow.us@SD",WSOC Now (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="WSOCNow.us@SD",WSOC Now (1080p) [Geo-blocked]
https://amg00327-coxmediagroup-wsocbreaking-plex-t51et.amagi.tv/playlist/amg00327-coxmediagroup-wsocbreaking-plex/playlist.m3u8 https://amg00327-coxmediagroup-wsocbreaking-plex-t51et.amagi.tv/playlist/amg00327-coxmediagroup-wsocbreaking-plex/playlist.m3u8
#EXTINF:-1 tvg-id="WSOCTV91.us@HD",WSOC-DT1 (1080p) #EXTINF:-1 tvg-id="ABC.us@WSOCTV",WSOC-DT1 (1080p)
https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wsocbreaking-ono/playlist.m3u8 https://cdn-ue1-prod.tsv2.amagi.tv/linear/amg00327-coxmediagroup-wsocbreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="WTNH81.us@HD",WTNH-DT1 (720p) #EXTINF:-1 tvg-id="ABC.us@WTNH",WTNH-DT1 (720p)
https://tkx.mp.lura.live/rest/v2/mcp/video/11135425.m3u8?anvack=pDKqMLyG9pVqMkSYRJHWu3XROjAlvR6z&eud=1iqQ+zazzEobWIhmmj6bA8STRJm4HceYQApO7QYBvy9BTps0KI7LuXGD4KK7RLtBTyO8KsbFw40vgX8hrw+xqw== https://tkx.mp.lura.live/rest/v2/mcp/video/11135425.m3u8?anvack=pDKqMLyG9pVqMkSYRJHWu3XROjAlvR6z&eud=1iqQ+zazzEobWIhmmj6bA8STRJm4HceYQApO7QYBvy9BTps0KI7LuXGD4KK7RLtBTyO8KsbFw40vgX8hrw+xqw==
#EXTINF:-1 tvg-id="WTTG51.us@HD",WTTG-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@WTTG",WTTG-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox5dcwttg-vizious/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox5dcwttg-vizious/playlist.m3u8
#EXTINF:-1 tvg-id="WTVJ61.us@HD",WTVJ-DT1 (1080p) #EXTINF:-1 tvg-id="NBC.us@WTVJ",WTVJ-DT1 (1080p)
https://nbculocallive.akamaized.net/hls/live/2037498/miami/stream1/master.m3u8 https://nbculocallive.akamaized.net/hls/live/2037498/miami/stream1/master.m3u8
#EXTINF:-1 tvg-id="WTVT131.us@HD",WTVT-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@WTVT",WTVT-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox13tampabaywtvt-vizious/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox13tampabaywtvt-vizious/playlist.m3u8
#EXTINF:-1 tvg-id="WTXFTV291.us@HD",WTXF-DT1 (1080p) #EXTINF:-1 tvg-id="Fox.us@WTXFTV",WTXF-DT1 (1080p)
https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox29philadelphiawtx-vizious/playlist.m3u8 https://cdn-uw2-prod.tsv2.amagi.tv/linear/amg00488-foxdigital-fox29philadelphiawtx-vizious/playlist.m3u8
#EXTINF:-1 tvg-id="WuTangCollection.us@SD",Wu Tang Collection (720p) #EXTINF:-1 tvg-id="WuTangCollection.us@SD",Wu Tang Collection (720p)
https://dbrb49pjoymg4.cloudfront.net/10001/99991745/hls/master.m3u8?ads.xumo_channelId=99991745 https://dbrb49pjoymg4.cloudfront.net/10001/99991745/hls/master.m3u8?ads.xumo_channelId=99991745
#EXTINF:-1 tvg-id="WVCULP.us@SD",WVCU-LP Concord University Radio The Cure 97.7 (1080p) #EXTINF:-1 tvg-id="WVCULP.us@SD",WVCU-LP Concord University Radio The Cure 97.7 (1080p)
https://video1.getstreamhosting.com:1936/8152/8152/playlist.m3u8 https://video1.getstreamhosting.com:1936/8152/8152/playlist.m3u8
#EXTINF:-1 tvg-id="WVIT301.us@HD",WVIT-DT1 (1080p) #EXTINF:-1 tvg-id="NBC.us@WVIT",WVIT-DT1 (1080p)
https://d368vp0qqzvkid.cloudfront.net/11603/88889707/hls/master.m3u8?ads.xumo_channelId=88889707a&ads.xumo_ifaType=&ads.xumo_providerId=3832&ads.xumo_providerName=NBCNCT https://d368vp0qqzvkid.cloudfront.net/11603/88889707/hls/master.m3u8?ads.xumo_channelId=88889707a&ads.xumo_ifaType=&ads.xumo_providerId=3832&ads.xumo_providerName=NBCNCT
#EXTINF:-1 tvg-id="WVVHCD181.us@HD",WVVH-CD 18.1 (720p) #EXTINF:-1 tvg-id="WVVHCD181.us@HD",WVVH-CD 18.1 (720p)
https://2-fss-2.streamhoster.com/pl_138/amlst:207282-6094500/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_138/amlst:207282-6094500/playlist.m3u8
#EXTINF:-1 tvg-id="WWONTVChannel48.us@SD",WWON TV CH 48 #EXTINF:-1 tvg-id="WWONTVChannel48.us@SD",WWON TV CH 48
https://tv2.fastcast4u.com:3943/stream/play.m3u8 https://tv2.fastcast4u.com:3943/stream/play.m3u8
#EXTINF:-1 tvg-id="WWORTV91.us@HD",WWOR-DT1 #EXTINF:-1 tvg-id="MNT.us@WWORTV",WWOR-DT1
http://37c18028.akadatel.com/iptv/T6XNCP6L7LLKPD/1088/mpegts http://37c18028.akadatel.com/iptv/T6XNCP6L7LLKPD/1088/mpegts
#EXTINF:-1 tvg-id="WXTVDT681.us@HD",WXTV-DT1 #EXTINF:-1 tvg-id="UniMas.us@WXTVDT",WXTV-DT1
https://streaming-live-fcdn.api.prd.univisionnow.com/wxtv/wxtv.isml/hls/wxtv.m3u8 https://streaming-live-fcdn.api.prd.univisionnow.com/wxtv/wxtv.isml/hls/wxtv.m3u8
#EXTINF:-1 tvg-id="XFCTV.us@SD",XFC TV (720p) #EXTINF:-1 tvg-id="XFCTV.us@SD",XFC TV (720p)
https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=2247 https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=2247
@@ -1772,7 +1770,7 @@ https://streamer.metronethn.com/AdultSwim/index.m3u8
https://streamer.metronethn.com/Cinemax/index.m3u8 https://streamer.metronethn.com/Cinemax/index.m3u8
#EXTINF:-1 tvg-id="Telemundo.us@West",Telemundo West (2160p) #EXTINF:-1 tvg-id="Telemundo.us@West",Telemundo West (2160p)
http://168.228.44.241:9997/play/a07g/index.m3u8 http://168.228.44.241:9997/play/a07g/index.m3u8
#EXTINF:-1 tvg-id="WLTVDT231.us@HD",WLTV-DT 23.1 (720p) #EXTINF:-1 tvg-id="Univision.us@WLTVDT",WLTV-DT 23.1 (720p)
http://168.228.44.241:9997/play/a09d/index.m3u8 http://168.228.44.241:9997/play/a09d/index.m3u8
#EXTINF:-1 tvg-id="BabyFirst.us@Spanish",BabyFirst Spanish (720p) #EXTINF:-1 tvg-id="BabyFirst.us@Spanish",BabyFirst Spanish (720p)
http://168.228.44.241:9997/play/a07u/index.m3u8 http://168.228.44.241:9997/play/a07u/index.m3u8
@@ -1854,8 +1852,6 @@ https://tvsen6.aynaott.com/mtv/index.m3u8
https://tvsen7.aynaott.com/lifetime/index.m3u8 https://tvsen7.aynaott.com/lifetime/index.m3u8
#EXTINF:-1 tvg-id="NationalGeographic.us@East",National Geographic (576p) #EXTINF:-1 tvg-id="NationalGeographic.us@East",National Geographic (576p)
https://tvsen3.aynaott.com/7mm4pwCy/index.m3u8 https://tvsen3.aynaott.com/7mm4pwCy/index.m3u8
#EXTINF:-1 tvg-id="WPIXHD.us@SD",WPIX-HD (576p)
https://tvsen3.aynaott.com/GPHeknR5/index.m3u8
#EXTINF:-1 tvg-id="GiggleMug.us@SD",Giggle Mug (576p) #EXTINF:-1 tvg-id="GiggleMug.us@SD",Giggle Mug (576p)
https://tvsen3.aynaott.com/uYpFg3RV/index.m3u8 https://tvsen3.aynaott.com/uYpFg3RV/index.m3u8
#EXTINF:-1 tvg-id="BATVPublicChannel.us@SD",BATV Public Channel #EXTINF:-1 tvg-id="BATVPublicChannel.us@SD",BATV Public Channel
@@ -1912,7 +1908,7 @@ http://41.205.93.154/ESPNNEWS/index.m3u8
http://23.237.104.106:8080/USA_SEC_NETWORK/index.m3u8 http://23.237.104.106:8080/USA_SEC_NETWORK/index.m3u8
#EXTINF:-1 tvg-id="MTV.us@East",MTV (720p) #EXTINF:-1 tvg-id="MTV.us@East",MTV (720p)
http://5.254.89.106/6199/index.m3u8 http://5.254.89.106/6199/index.m3u8
#EXTINF:-1 tvg-id="WTMOCD311.us@HD",WTMO-CD 31.1 (720p) #EXTINF:-1 tvg-id="Telemundo.us@WTMOCD",WTMO-CD 31.1 (720p)
https://d368vp0qqzvkid.cloudfront.net/manifest/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod_default_nbc-direct/adcee832-5511-4ed1-bcef-58616c0f530f/4.m3u8 https://d368vp0qqzvkid.cloudfront.net/manifest/3fec3e5cac39a52b2132f9c66c83dae043dc17d4/prod_default_nbc-direct/adcee832-5511-4ed1-bcef-58616c0f530f/4.m3u8
#EXTINF:-1 tvg-id="TelemundoAlDia.us@HD",Telemundo Al Dia (720p) #EXTINF:-1 tvg-id="TelemundoAlDia.us@HD",Telemundo Al Dia (720p)
https://d3f4oii5n0oeqi.cloudfront.net/11701/88814573/hls/master.m3u8?ads.xumo_channelId=88814573 https://d3f4oii5n0oeqi.cloudfront.net/11701/88814573/hls/master.m3u8?ads.xumo_channelId=88814573
+26 -26
View File
@@ -1,13 +1,13 @@
#EXTM3U #EXTM3U
#EXTINF:-1 tvg-id="KIIOLD104.us@SD",AABC TV (480p) #EXTINF:-1 tvg-id="KIIOLD104.us@SD",AABC TV (480p)
https://streamer1.connectto.com/AABC_WEB_1201/index.m3u8 https://streamer1.connectto.com/AABC_WEB_1201/index.m3u8
#EXTINF:-1 tvg-id="KRGVTV51.us@HD",ABC 5 #EXTINF:-1 tvg-id="ABC.us@KRGVTV",ABC 5
https://d3svnrf3rmq619.cloudfront.net/krgv-live/smil:krgv-live.smil/playlist.m3u8 https://d3svnrf3rmq619.cloudfront.net/krgv-live/smil:krgv-live.smil/playlist.m3u8
#EXTINF:-1 tvg-id="WFTV91.us@HD",ABC 9 Orlando FL (WFTV) (720p) #EXTINF:-1 tvg-id="ABC.us@WFTV",ABC 9 Orlando FL (WFTV) (720p)
https://amg00327-coxmediagroup-wftvbreaking-ono-hec7b.amagi.tv/playlist/amg00327-coxmediagroup-wftvbreaking-ono/playlist.m3u8 https://amg00327-coxmediagroup-wftvbreaking-ono-hec7b.amagi.tv/playlist/amg00327-coxmediagroup-wftvbreaking-ono/playlist.m3u8
#EXTINF:-1 tvg-id="WPLG101.us@HD",ABC (WPLG-DT1) Miami FL (720p) #EXTINF:-1 tvg-id="WPLG101.us@HD",ABC (WPLG-DT1) Miami FL (720p)
https://pubads.g.doubleclick.net/ssai/event/tQD6w9OJQVOobcyV3Dammw/master.m3u8 https://pubads.g.doubleclick.net/ssai/event/tQD6w9OJQVOobcyV3Dammw/master.m3u8
#EXTINF:-1 tvg-id="WWAY31.us@HD",ABC WWAY 3 #EXTINF:-1 tvg-id="ABC.us@WWAY",ABC WWAY 3
https://townnews.g-mana.live/media/027a05c7-43b6-49eb-ad10-a0c0f10a0754/main.m3u8 https://townnews.g-mana.live/media/027a05c7-43b6-49eb-ad10-a0c0f10a0754/main.m3u8
#EXTINF:-1 tvg-id="AccessHumboldt.us@SD",Access Humboldt (1080p) #EXTINF:-1 tvg-id="AccessHumboldt.us@SD",Access Humboldt (1080p)
https://rtmp-live-ingest-ap-northeast-2-universe-dacast-com.akamaized.net/transmuxv1/streams/f08fcd45-1d04-9a8c-39ca-f56091820e5c.m3u8 https://rtmp-live-ingest-ap-northeast-2-universe-dacast-com.akamaized.net/transmuxv1/streams/f08fcd45-1d04-9a8c-39ca-f56091820e5c.m3u8
@@ -49,7 +49,7 @@ https://buenapark.cablecast.tv/live/stream-1/live.m3u8
https://cdnapisec.kaltura.com/p/2184561/sp/218456100/playManifest/entryId/1_68qxw4eu/format/applehttp/a.m3u8 https://cdnapisec.kaltura.com/p/2184561/sp/218456100/playManifest/entryId/1_68qxw4eu/format/applehttp/a.m3u8
#EXTINF:-1 tvg-id="CityTVCarlsbad.us@SD",Carlsbad City TV Channel (Carlsbad CA) (720p) #EXTINF:-1 tvg-id="CityTVCarlsbad.us@SD",Carlsbad City TV Channel (Carlsbad CA) (720p)
https://edge-f.swagit.com/live/carlsbadca/live-3-a-1/playlist.m3u8 https://edge-f.swagit.com/live/carlsbadca/live-3-a-1/playlist.m3u8
#EXTINF:-1 tvg-id="KWTVDT91.us@HD",CBS 9 Oklahoma City OK (KWTV-DT1) (720p) [Not 24/7] #EXTINF:-1 tvg-id="CBS.us@KWTVDT",CBS 9 Oklahoma City OK (KWTV-DT1) (720p) [Not 24/7]
https://fuel-streaming-prod01.fuelmedia.io/v1/sem/e48409e7-672d-42f2-b5e0-ebb6744b0425.m3u8 https://fuel-streaming-prod01.fuelmedia.io/v1/sem/e48409e7-672d-42f2-b5e0-ebb6744b0425.m3u8
#EXTINF:-1 tvg-id="CGTV.us@SD",Champaign Government Television (CGTV) (Champaign IL) (720p) #EXTINF:-1 tvg-id="CGTV.us@SD",Champaign Government Television (CGTV) (Champaign IL) (720p)
https://champaign-cablecast.cablecast.tv/live/stream-2/live.m3u8 https://champaign-cablecast.cablecast.tv/live/stream-2/live.m3u8
@@ -57,7 +57,7 @@ https://champaign-cablecast.cablecast.tv/live/stream-2/live.m3u8
https://edge-f.swagit.com/live/chinohillsca/live-1-a/playlist.m3u8 https://edge-f.swagit.com/live/chinohillsca/live-1-a/playlist.m3u8
#EXTINF:-1 tvg-id="CapitalCityConnectionMontgomery.us@SD",City TV Capital City Connection [Not 24/7] #EXTINF:-1 tvg-id="CapitalCityConnectionMontgomery.us@SD",City TV Capital City Connection [Not 24/7]
https://capitalcityconnection.cablecast.tv/live/stream-1/live.m3u8 https://capitalcityconnection.cablecast.tv/live/stream-1/live.m3u8
#EXTINF:-1 tvg-id="WRDELD311.us@HD",CoastTV NBC (WRDE-LD) (720p) [Not 24/7] #EXTINF:-1 tvg-id="NBC.us@WRDELD",CoastTV NBC (WRDE-LD) (720p) [Not 24/7]
https://live.field59.com/wrde/wrde1/playlist.m3u8 https://live.field59.com/wrde/wrde1/playlist.m3u8
#EXTINF:-1 tvg-id="CollierTV.us@SD",Collier Television CTV (Naples FL) (720p) #EXTINF:-1 tvg-id="CollierTV.us@SD",Collier Television CTV (Naples FL) (720p)
https://reflect-collier-countyboc.cablecast.tv/live-4/live/stream-1/live.m3u8 https://reflect-collier-countyboc.cablecast.tv/live-4/live/stream-1/live.m3u8
@@ -97,7 +97,7 @@ https://reflect-fairfield-ca.cablecast.tv/live-8/live/live.m3u8
https://reflect-fcpublicmedia.cablecast.tv/live-5/live/stream-1/live.m3u8 https://reflect-fcpublicmedia.cablecast.tv/live-5/live/stream-1/live.m3u8
#EXTINF:-1 tvg-id="FernandinaBeachChannel.us@SD",Fernandina Beach City Meeting (Fernandina Beach FL) (720p) [Not 24/7] #EXTINF:-1 tvg-id="FernandinaBeachChannel.us@SD",Fernandina Beach City Meeting (Fernandina Beach FL) (720p) [Not 24/7]
https://edge-f.swagit.com/live/fernandinabeachfl/live-1-a/playlist.m3u8 https://edge-f.swagit.com/live/fernandinabeachfl/live-1-a/playlist.m3u8
#EXTINF:-1 tvg-id="KVCRDT242.us@SD",FNX [Geo-blocked] #EXTINF:-1 tvg-id="FNX.us@KVCRDT",FNX [Geo-blocked]
#EXTVLCOPT:http-referrer=https://fnx.org/ #EXTVLCOPT:http-referrer=https://fnx.org/
https://castus-vod-dev.s3.amazonaws.com/vod_clients/kvcr/live/ch1/video.m3u8 https://castus-vod-dev.s3.amazonaws.com/vod_clients/kvcr/live/ch1/video.m3u8
#EXTINF:-1 tvg-id="KFONTV.us@SD",Fontana Community Television (720p) [Geo-blocked] #EXTINF:-1 tvg-id="KFONTV.us@SD",Fontana Community Television (720p) [Geo-blocked]
@@ -106,9 +106,9 @@ https://reflect-watchkfon-fontana.cablecast.tv/live-3/live/live.m3u8
https://reflect-vod-fcgov.cablecast.tv/live-9/live/stream-1/live.m3u8 https://reflect-vod-fcgov.cablecast.tv/live-9/live/stream-1/live.m3u8
#EXTINF:-1 tvg-id="CityofFortPierce.us@SD",Fort Pierce Live Stream (Fort Pierce FL) (720p) #EXTINF:-1 tvg-id="CityofFortPierce.us@SD",Fort Pierce Live Stream (Fort Pierce FL) (720p)
https://edge-f.swagit.com/live/fortpiercefl/live-1-a/playlist.m3u8 https://edge-f.swagit.com/live/fortpiercefl/live-1-a/playlist.m3u8
#EXTINF:-1 tvg-id="KBSI231.us@HD",FOX 23 Cape Girardeau MO (KBSI-DT1) (720p) [Not 24/7] #EXTINF:-1 tvg-id="Fox.us@KBSI",FOX 23 Cape Girardeau MO (KBSI-DT1) (720p) [Not 24/7]
https://live.field59.com/kbsi/kbsi1/playlist.m3u8 https://live.field59.com/kbsi/kbsi1/playlist.m3u8
#EXTINF:-1 tvg-id="WFXT251.us@HD",Fox 25 Boston (WFXT-TV) (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="Fox.us@WFXT",Fox 25 Boston (WFXT-TV) (1080p) [Geo-blocked]
https://pubads.g.doubleclick.net/ssai/event/1kItNgwtQUe54NjjBiiTGg/master.m3u8 https://pubads.g.doubleclick.net/ssai/event/1kItNgwtQUe54NjjBiiTGg/master.m3u8
#EXTINF:-1 tvg-id="CMAC1.us@SD",Fresno CMAC 1 Public Channel (720p) #EXTINF:-1 tvg-id="CMAC1.us@SD",Fresno CMAC 1 Public Channel (720p)
https://reflect-vod-cmac.cablecast.tv/live-11/live/stream-1/live.m3u8 https://reflect-vod-cmac.cablecast.tv/live-11/live/stream-1/live.m3u8
@@ -120,7 +120,7 @@ https://reflect-vod-cmac.cablecast.tv/live-11/live/stream-3/live.m3u8
https://lin10.isilive.ca/live/gainesville/live/index.m3u8 https://lin10.isilive.ca/live/gainesville/live/index.m3u8
#EXTINF:-1 tvg-id="GalvestonCountyTV.us@SD",Galveston County TV (720p) [Not 24/7] #EXTINF:-1 tvg-id="GalvestonCountyTV.us@SD",Galveston County TV (720p) [Not 24/7]
https://edge-f.swagit.com/live/galvestontx/smil:hd-16x9-1-a/playlist.m3u8 https://edge-f.swagit.com/live/galvestontx/smil:hd-16x9-1-a/playlist.m3u8
#EXTINF:-1 tvg-id="KBPXLD465.us@SD",Geb Tv (KBPX LD5) (1080p) #EXTINF:-1 tvg-id="GEBNetwork.us@KBPXLD",Geb Tv (KBPX LD5) (1080p)
https://edge1.lifestreamcdn.com/live/geb/playlist.m3u8 https://edge1.lifestreamcdn.com/live/geb/playlist.m3u8
#EXTINF:-1 tvg-id="CMAPChannel17.us@SD",Gilroy CMAP TV Channel 17 (720p) #EXTINF:-1 tvg-id="CMAPChannel17.us@SD",Gilroy CMAP TV Channel 17 (720p)
https://livestream.telvue.com/cmap1/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8 https://livestream.telvue.com/cmap1/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlist.m3u8
@@ -134,7 +134,7 @@ https://livestream.telvue.com/cmap5/f7b44cfafd5c52223d5498196c8a2e7b.sdp/playlis
https://edge-f.swagit.com/live/glendaleaz/live-1-a-1/playlist.m3u8 https://edge-f.swagit.com/live/glendaleaz/live-1-a-1/playlist.m3u8
#EXTINF:-1 tvg-id="GlendaleTV.us@SD",Glendale TV (720p) [Geo-blocked] #EXTINF:-1 tvg-id="GlendaleTV.us@SD",Glendale TV (720p) [Geo-blocked]
https://reflect-gtv6-glendale.cablecast.tv/live-2/live/live.m3u8 https://reflect-gtv6-glendale.cablecast.tv/live-2/live/live.m3u8
#EXTINF:-1 tvg-id="KPCBDT171.us@SD",God's Learning Channel (480p) #EXTINF:-1 tvg-id="GodsLearningChannel.us@KPCBDT",God's Learning Channel (480p)
https://2-fss-1.streamhoster.com/pl_122/200562-1176456-1/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_122/200562-1176456-1/playlist.m3u8
#EXTINF:-1 tvg-id="GCOtv.us@SD",Golden Community Television (GCO.tv) (Golden CO) (1080p) #EXTINF:-1 tvg-id="GCOtv.us@SD",Golden Community Television (GCO.tv) (Golden CO) (1080p)
https://reflect-golden-co.cablecast.tv/live-3/live/live.m3u8 https://reflect-golden-co.cablecast.tv/live-3/live/live.m3u8
@@ -160,15 +160,15 @@ https://brightonco.cablecast.tv/live-4/live/live.m3u8
https://reflect-kcat-live.cablecast.tv/live-2/live/live.m3u8 https://reflect-kcat-live.cablecast.tv/live-2/live/live.m3u8
#EXTINF:-1 tvg-id="KidsFlix.us@SD",KidsFlix (1080p) [Not 24/7] #EXTINF:-1 tvg-id="KidsFlix.us@SD",KidsFlix (1080p) [Not 24/7]
https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=50 https://stream-us-east-1.getpublica.com/playlist.m3u8?network_id=50
#EXTINF:-1 tvg-id="KITV41.us@HD",KITV 4 Island News (720p) #EXTINF:-1 tvg-id="ABC.us@KITV",KITV 4 Island News (720p)
https://fuel-streaming-prod01.fuelmedia.io/v1/sem/c4067ddc-0e67-4928-b7ec-624481f721a6.m3u8 https://fuel-streaming-prod01.fuelmedia.io/v1/sem/c4067ddc-0e67-4928-b7ec-624481f721a6.m3u8
#EXTINF:-1 tvg-id="KQSL81.us@HD",KQSL Channel 8 (720p) #EXTINF:-1 tvg-id="TLN.ca@KQSL",KQSL Channel 8 (720p)
https://uni01rtmp.tulix.tv/kqsltv/kqsltv/playlist.m3u8 https://uni01rtmp.tulix.tv/kqsltv/kqsltv/playlist.m3u8
#EXTINF:-1 tvg-id="KSCE382.us@HD",KSCE Vida Cristiana (360p) #EXTINF:-1 tvg-id="RedADvenirTV.bo@KSCE",KSCE Vida Cristiana (360p)
https://2-fss-2.streamhoster.com/pl_120/200226-1449024-1/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_120/200226-1449024-1/playlist.m3u8
#EXTINF:-1 tvg-id="KTOOTV33.us@HD",KTOO 360TV 3 (FNX) #EXTINF:-1 tvg-id="KTOO360TV.us@KTOOTV",KTOO 360TV 3 (FNX)
https://api.v3.invintus.com/StreamURI/persis/2147483647/KTOO360TV.stream/media.m3u8 https://api.v3.invintus.com/StreamURI/persis/2147483647/KTOO360TV.stream/media.m3u8
#EXTINF:-1 tvg-id="KVVBLD331.us@SD",KVVB-TV 33 Victor Valley (1080p) [Not 24/7] #EXTINF:-1 tvg-id="YoutooAmerica.us@KVVBLD",KVVB-TV 33 Victor Valley (1080p) [Not 24/7]
https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1309230/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_138/amlst:201950-1309230/playlist.m3u8
#EXTINF:-1 tvg-id="LACityView35.us@SD",LA CityView 35 (1080p) #EXTINF:-1 tvg-id="LACityView35.us@SD",LA CityView 35 (1080p)
https://reflect-losangeles.cablecast.tv/live-3/live/live.m3u8 https://reflect-losangeles.cablecast.tv/live-3/live/live.m3u8
@@ -224,11 +224,11 @@ https://5c2974786200d.streamlock.net/live-chan28/ngrp:ch28_all/playlist.m3u8
https://5b200f5268ceb.streamlock.net/MCPSS/MCPSS247.smil/playlist.m3u8 https://5b200f5268ceb.streamlock.net/MCPSS/MCPSS247.smil/playlist.m3u8
#EXTINF:-1 tvg-id="MonroeCountyTV.us@SD",Monroe County Television MCTV (Monroe County FL) (1080p) #EXTINF:-1 tvg-id="MonroeCountyTV.us@SD",Monroe County Television MCTV (Monroe County FL) (1080p)
https://castus-vod-dev.s3.amazonaws.com/vod_clients/monroe/live/ch1/video.m3u8 https://castus-vod-dev.s3.amazonaws.com/vod_clients/monroe/live/ch1/video.m3u8
#EXTINF:-1 tvg-id="KCWX351.us@HD",myTV San Antonio TX (KCWX-TV) (720p) [Not 24/7] #EXTINF:-1 tvg-id="Roar.us@KCWX",myTV San Antonio TX (KCWX-TV) (720p) [Not 24/7]
http://65.36.6.216:1935/live/kcwx.smil/playlist.m3u8 http://65.36.6.216:1935/live/kcwx.smil/playlist.m3u8
#EXTINF:-1 tvg-id="WLIO81.us@HD",NBC 8 Lima OH (WLIO-DT1) (720p) [Not 24/7] #EXTINF:-1 tvg-id="NBC.us@WLIO",NBC 8 Lima OH (WLIO-DT1) (720p) [Not 24/7]
https://live.field59.com/wlio/wlio1/playlist.m3u8 https://live.field59.com/wlio/wlio1/playlist.m3u8
#EXTINF:-1 tvg-id="WJAR101.us@HD",NBC 10 Providence MA (1080p) #EXTINF:-1 tvg-id="NBC.us@WJAR",NBC 10 Providence MA (1080p)
https://pubads.g.doubleclick.net/ssai/event/kpannrCBQ5KwdV3Hag3Wog/master.m3u8 https://pubads.g.doubleclick.net/ssai/event/kpannrCBQ5KwdV3Hag3Wog/master.m3u8
#EXTINF:-1 tvg-id="NCMEducationalKidsChannel.us@SD",NCM Educational & Kids Channel #EXTINF:-1 tvg-id="NCMEducationalKidsChannel.us@SD",NCM Educational & Kids Channel
https://reflect-npa.cablecast.tv/live-9/live/live.m3u8 https://reflect-npa.cablecast.tv/live-9/live/live.m3u8
@@ -314,17 +314,17 @@ https://vallejo.cablecast.tv/live-3/live/live.m3u8
https://reflect-vsctv.cablecast.tv/live-3/live/live.m3u8 https://reflect-vsctv.cablecast.tv/live-3/live/live.m3u8
#EXTINF:-1 tvg-id="KVTNDT251.us@HD",VTN Victory Television Network (720p) #EXTINF:-1 tvg-id="KVTNDT251.us@HD",VTN Victory Television Network (720p)
https://jk3lzkn4lw79-hls-live.5centscdn.com/VTN2/bcaafe9ad8d42834b08e762ac58596b8.sdp/playlist.m3u8 https://jk3lzkn4lw79-hls-live.5centscdn.com/VTN2/bcaafe9ad8d42834b08e762ac58596b8.sdp/playlist.m3u8
#EXTINF:-1 tvg-id="WBBJTV71.us@HD",WBBJ (Jackson TN) (432p) #EXTINF:-1 tvg-id="ABC.us@WBBJTV",WBBJ (Jackson TN) (432p)
https://dai.google.com/linear/hls/event/HZ3JdLVcQ463l3b1BLXmmQ/master.m3u8 https://dai.google.com/linear/hls/event/HZ3JdLVcQ463l3b1BLXmmQ/master.m3u8
#EXTINF:-1 tvg-id="WBRZTV21.us@HD",WBRZ Weather Channel Baton Rouge LA (480p) #EXTINF:-1 tvg-id="ABC.us@WBRZTV",WBRZ Weather Channel Baton Rouge LA (480p)
https://d2a6g6zgxepbwi.cloudfront.net/wbrz-edge/weather.stream_360p/playlist.m3u8 https://d2a6g6zgxepbwi.cloudfront.net/wbrz-edge/weather.stream_360p/playlist.m3u8
#EXTINF:-1 tvg-id="WCBITV41.us@HD",WCBI (Columbus MI) (720p) #EXTINF:-1 tvg-id="CBS.us@WCBITV",WCBI (Columbus MI) (720p)
https://townnews.g-mana.live/media/4efc62fa-ad0b-445c-a839-4d1e7636988e/main.m3u8 https://townnews.g-mana.live/media/4efc62fa-ad0b-445c-a839-4d1e7636988e/main.m3u8
#EXTINF:-1 tvg-id="WCCADT1.us@SD",WCCA 194 Worcester MA (WCCA-TV) (480p) #EXTINF:-1 tvg-id="WCCADT1.us@SD",WCCA 194 Worcester MA (WCCA-TV) (480p)
https://worcester.vod.castus.tv/live/ch1.m3u8 https://worcester.vod.castus.tv/live/ch1.m3u8
#EXTINF:-1 tvg-id="WCOT.us@SD",WCOT 13 (Tallahassee FL) (720p) #EXTINF:-1 tvg-id="WCOT.us@SD",WCOT 13 (Tallahassee FL) (720p)
https://stream.talgov.net/WCOT/smil:WCOT.smil/playlist.m3u8 https://stream.talgov.net/WCOT/smil:WCOT.smil/playlist.m3u8
#EXTINF:-1 tvg-id="WDEFTV121.us@HD",WDEF-TV News Chattanooga TN (720p) #EXTINF:-1 tvg-id="CBS.us@WDEFTV",WDEF-TV News Chattanooga TN (720p)
https://townnews.g-mana.live/media/a54a6409-5e91-46f0-9fee-06904c1fd094/main.m3u8 https://townnews.g-mana.live/media/a54a6409-5e91-46f0-9fee-06904c1fd094/main.m3u8
#EXTINF:-1 tvg-id="WhitePlainsCommunityMedia.us@SD",White Plains Community Media (360p) #EXTINF:-1 tvg-id="WhitePlainsCommunityMedia.us@SD",White Plains Community Media (360p)
https://stream.swagit.com/live-edge/whiteplainsny/smil:std-4x3-1-b/playlist.m3u8 https://stream.swagit.com/live-edge/whiteplainsny/smil:std-4x3-1-b/playlist.m3u8
@@ -334,19 +334,19 @@ https://whittier.cablecast.tv/live/stream-1/live.m3u8
https://frontdoor.wcat-tv.org/live-12/live/live.m3u8 https://frontdoor.wcat-tv.org/live-12/live/live.m3u8
#EXTINF:-1 tvg-id="WITN22.us@SD",WITN 22 (Wilmington DE) (1080p) [Not 24/7] #EXTINF:-1 tvg-id="WITN22.us@SD",WITN 22 (Wilmington DE) (1080p) [Not 24/7]
https://witn.cablecast.tv/live-4/live/live.m3u8 https://witn.cablecast.tv/live-4/live/live.m3u8
#EXTINF:-1 tvg-id="WJXT71.us@HD",WJXT News4JAX (Jacksonville FL) (720p) #EXTINF:-1 tvg-id="PBS.us@WJXT",WJXT News4JAX (Jacksonville FL) (720p)
https://dai.google.com/linear/hls/event/RDmbn03GRCOLNG1eetEKhg/master.m3u8 https://dai.google.com/linear/hls/event/RDmbn03GRCOLNG1eetEKhg/master.m3u8
#EXTINF:-1 tvg-id="WLNGRadio.us@SD",WLNG Radio (410p) [Not 24/7] #EXTINF:-1 tvg-id="WLNGRadio.us@SD",WLNG Radio (410p) [Not 24/7]
http://wlngstudiowebcam.srfms.com:1935/wlngstudiowebcam/livestream/playlist.m3u8 http://wlngstudiowebcam.srfms.com:1935/wlngstudiowebcam/livestream/playlist.m3u8
#EXTINF:-1 tvg-id="WMGTTV411.us@HD",WMGT-TV News (Macon GA) (720p) #EXTINF:-1 tvg-id="NBC.us@WMGTTV",WMGT-TV News (Macon GA) (720p)
https://townnews.g-mana.live/media/e6909128-cd42-4690-8340-4b8a49455666/main.m3u8 https://townnews.g-mana.live/media/e6909128-cd42-4690-8340-4b8a49455666/main.m3u8
#EXTINF:-1 tvg-id="WorldHarvestTV.us@SD",World Harvest TV (360p) #EXTINF:-1 tvg-id="WorldHarvestTV.us@SD",World Harvest TV (360p)
https://597865f6e4114.streamlock.net/live/leseaorigin.stream/playlist.m3u8 https://597865f6e4114.streamlock.net/live/leseaorigin.stream/playlist.m3u8
#EXTINF:-1 tvg-id="WPSTV.us@SD",WPS TV (360p) #EXTINF:-1 tvg-id="WPSTV.us@SD",WPS TV (360p)
https://2-fss-2.streamhoster.com/pl_120/amlst:203530-1426406/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_120/amlst:203530-1426406/playlist.m3u8
#EXTINF:-1 tvg-id="WTVQDT361.us@HD",WTVQ ABC 36 News (Lexington KY) (720p) #EXTINF:-1 tvg-id="ABC.us@WTVQDT",WTVQ ABC 36 News (Lexington KY) (720p)
https://townnews.g-mana.live/media/14d1fd2c-0548-4803-80ad-6657831a7981/main.m3u8 https://townnews.g-mana.live/media/14d1fd2c-0548-4803-80ad-6657831a7981/main.m3u8
#EXTINF:-1 tvg-id="WXXVTV251.us@HD",WXXV-TV News (Biloxi MS) (720p) #EXTINF:-1 tvg-id="Fox.us@WXXVTV",WXXV-TV News (Biloxi MS) (720p)
https://townnews.g-mana.live/media/c8c354e0-672f-4368-a17d-a862ee98af4a/main.m3u8 https://townnews.g-mana.live/media/c8c354e0-672f-4368-a17d-a862ee98af4a/main.m3u8
#EXTINF:-1 tvg-id="YouDotGov.us@SD",YouDotGov #EXTINF:-1 tvg-id="YouDotGov.us@SD",YouDotGov
https://reflect-communitytv.cablecast.tv/live-3/live/stream-1/live.m3u8 https://reflect-communitytv.cablecast.tv/live-3/live/stream-1/live.m3u8
+9 -9
View File
@@ -1,13 +1,13 @@
#EXTM3U #EXTM3U
#EXTINF:-1 tvg-id="KETS21.us@HD",Arkansas PBS [Geo-blocked] #EXTINF:-1 tvg-id="PBS.us@KETS",Arkansas PBS [Geo-blocked]
https://ketsdt.lls.pbs.org/out/v1/03c094dbd7874a4a8c3fe9fb10081bdb/index.m3u8 https://ketsdt.lls.pbs.org/out/v1/03c094dbd7874a4a8c3fe9fb10081bdb/index.m3u8
#EXTINF:-1 tvg-id="KHET111.us@HD",PBS Honolulu HI (KHET) (1080p) [Not 24/7] #EXTINF:-1 tvg-id="PBS.us@KHET",PBS Honolulu HI (KHET) (1080p) [Not 24/7]
https://khetdt.lls.pbs.org/out/v1/7ec7903413294b72bb64f83963d8ea9b/index.m3u8 https://khetdt.lls.pbs.org/out/v1/7ec7903413294b72bb64f83963d8ea9b/index.m3u8
#EXTINF:-1 tvg-id="WKPCDT2.us@SD",PBS KET2 (720p) #EXTINF:-1 tvg-id="WKPCDT2.us@SD",PBS KET2 (720p)
https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1315484/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1315484/playlist.m3u8
#EXTINF:-1 tvg-id="WKPCTV153.us@SD",PBS KET KY (480p) #EXTINF:-1 tvg-id="KentuckyEducationalTelevision.us@WKPCTV",PBS KET KY (480p)
https://2-fss-2.streamhoster.com/pl_132/amlst:200914-1315486/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_132/amlst:200914-1315486/playlist.m3u8
#EXTINF:-1 tvg-id="WKMJTV683.us@SD",PBS KET World (480p) #EXTINF:-1 tvg-id="KentuckyEducationalTelevision.us@WKMJTV",PBS KET World (480p)
https://2-fss-1.streamhoster.com/pl_122/amlst:200914-2942150/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_122/amlst:200914-2942150/playlist.m3u8
#EXTINF:-1 tvg-id="PBSKidsAlaska.us@SD",PBS Kids Alaska (1080p) #EXTINF:-1 tvg-id="PBSKidsAlaska.us@SD",PBS Kids Alaska (1080p)
https://livestream.pbskids.org/out/v1/94b88ad58fc14f84a9382341f1c00b82/akst.m3u8 https://livestream.pbskids.org/out/v1/94b88ad58fc14f84a9382341f1c00b82/akst.m3u8
@@ -17,17 +17,17 @@ https://2-fss-2.streamhoster.com/pl_140/amlst:200914-1298290/playlist.m3u8
https://livestream.pbskids.org/out/v1/3fe3030a2c8045a3932f4289d9eba3e6/mst.m3u8 https://livestream.pbskids.org/out/v1/3fe3030a2c8045a3932f4289d9eba3e6/mst.m3u8
#EXTINF:-1 tvg-id="PBSKidsPacific.us@SD",PBS Kids Pacific (1080p) #EXTINF:-1 tvg-id="PBSKidsPacific.us@SD",PBS Kids Pacific (1080p)
https://livestream.pbskids.org/out/v1/11f2e6b73eaa4887b3746cb863960e79/pst.m3u8 https://livestream.pbskids.org/out/v1/11f2e6b73eaa4887b3746cb863960e79/pst.m3u8
#EXTINF:-1 tvg-id="KUONTV121.us@HD",PBS Lincoln NE (KUON) (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="PBS.us@KUONTV",PBS Lincoln NE (KUON) (1080p) [Geo-blocked]
https://kuondt.lls.pbs.org/out/v1/91d8b5ffc5c1453c8a621508a07749a6/index.m3u8 https://kuondt.lls.pbs.org/out/v1/91d8b5ffc5c1453c8a621508a07749a6/index.m3u8
#EXTINF:-1 tvg-id="WMPT541.us@HD",PBS MPT Baltimore MD (WMPB) (1080p) #EXTINF:-1 tvg-id="CW.us@WMPT",PBS MPT Baltimore MD (WMPB) (1080p)
https://2-fss-2.streamhoster.com/pl_138/amlst:201814-1291584/playlist.m3u8 https://2-fss-2.streamhoster.com/pl_138/amlst:201814-1291584/playlist.m3u8
#EXTINF:-1 tvg-id="PBS.us@East",PBS National East (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="PBS.us@East",PBS National East (1080p) [Geo-blocked]
https://pbs.lls.cdn.pbs.org/est/index.m3u8 https://pbs.lls.cdn.pbs.org/est/index.m3u8
#EXTINF:-1 tvg-id="PBS.us@East",PBS National West (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="PBS.us@East",PBS National West (1080p) [Geo-blocked]
https://pbs.lls.cdn.pbs.org/pst/index.m3u8 https://pbs.lls.cdn.pbs.org/pst/index.m3u8
#EXTINF:-1 tvg-id="WNJT521.us@HD",PBS New Jersey NJ (WNJT) (1080p) [Not 24/7] #EXTINF:-1 tvg-id="PBS.us@WNJT",PBS New Jersey NJ (WNJT) (1080p) [Not 24/7]
https://wnjtdt.lls.pbs.org/out/v1/e62efd8d4f92403996425fc389df0ffd/index.m3u8 https://wnjtdt.lls.pbs.org/out/v1/e62efd8d4f92403996425fc389df0ffd/index.m3u8
#EXTINF:-1 tvg-id="KMOSTV61.us@HD",PBS Sedalia British Columbia MO (KMOS) (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="PBS.us@KMOSTV",PBS Sedalia British Columbia MO (KMOS) (1080p) [Geo-blocked]
https://hls-kmosdt.lls.cdn.pbs.org/hls/live/index.m3u8 https://hls-kmosdt.lls.cdn.pbs.org/hls/live/index.m3u8
#EXTINF:-1 tvg-id="WMPT222.us@SD",WMPT-DT2 (PBS Create) #EXTINF:-1 tvg-id="Create.us@WMPT",WMPT-DT2 (PBS Create)
https://2-fss-1.streamhoster.com/pl_122/amlst:201814-2122456/playlist.m3u8 https://2-fss-1.streamhoster.com/pl_122/amlst:201814-2122456/playlist.m3u8
+1 -1
View File
@@ -769,7 +769,7 @@ https://d39accvx65hq9o.cloudfront.net/Womens_Sports_Network.m3u8
https://pb-41uwb26l8gvwx.akamaized.net/World_Poker_Tour.m3u8 https://pb-41uwb26l8gvwx.akamaized.net/World_Poker_Tour.m3u8
#EXTINF:-1 tvg-id="",Worlds Most Evil Killers (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="",Worlds Most Evil Killers (1080p) [Geo-blocked]
https://pb-b62f663v8jteu.akamaized.net/Worlds_Most_Evil_Killers.m3u8 https://pb-b62f663v8jteu.akamaized.net/Worlds_Most_Evil_Killers.m3u8
#EXTINF:-1 tvg-id="WSOCTV91.us@HD",WSOC Charlotte (1080p) [Geo-blocked] #EXTINF:-1 tvg-id="ABC.us@WSOCTV",WSOC Charlotte (1080p) [Geo-blocked]
https://d1q60ra9vxbqm1.cloudfront.net/playlist.m3u8 https://d1q60ra9vxbqm1.cloudfront.net/playlist.m3u8
#EXTINF:-1 tvg-id="",WWE Superstar Central (1080p) #EXTINF:-1 tvg-id="",WWE Superstar Central (1080p)
https://dpv6ceilvhyrw.cloudfront.net/playlist.m3u8 https://dpv6ceilvhyrw.cloudfront.net/playlist.m3u8
+29 -29
View File
@@ -1,27 +1,27 @@
#EXTM3U #EXTM3U
#EXTINF:-1 tvg-id="24HourFreeMovies.us@SD",24 Hour Free Movies (720p) #EXTINF:-1 tvg-id="24HourFreeMovies.us@SD",24 Hour Free Movies (720p)
https://d1j2u714xk898n.cloudfront.net/scheduler/scheduleMaster/145.m3u8 https://d1j2u714xk898n.cloudfront.net/scheduler/scheduleMaster/145.m3u8
#EXTINF:-1 tvg-id="KATU321.us@HD",ABC 2 Portland OR (KATU) (1080p) #EXTINF:-1 tvg-id="CW.us@KATU",ABC 2 Portland OR (KATU) (1080p)
https://linear-710.frequency.stream/dist/stirr/710/hls/master/playlist.m3u8 https://linear-710.frequency.stream/dist/stirr/710/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WCIV361.us@HD",ABC 4 Charleston SC (WCIV) (1080p) #EXTINF:-1 tvg-id="MNT.us@WCIV",ABC 4 Charleston SC (WCIV) (1080p)
https://linear-700.frequency.stream/dist/stirr/700/hls/master/playlist.m3u8 https://linear-700.frequency.stream/dist/stirr/700/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KOMOTV511.us@HD",ABC 4 Seattle WA (KOMO) (1080p) #EXTINF:-1 tvg-id="CW.us@KOMOTV",ABC 4 Seattle WA (KOMO) (1080p)
https://linear-709.frequency.stream/dist/stirr/709/hls/master/playlist.m3u8 https://linear-709.frequency.stream/dist/stirr/709/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KSTPTV51.us@HD",ABC 5 St. Paul MN (KSTP) (1080p) #EXTINF:-1 tvg-id="ABC.us@KSTPTV",ABC 5 St. Paul MN (KSTP) (1080p)
https://amg01942-amg01942c2-stirr-us-10173.playouts.now.amagi.tv/playlist.m3u8 https://amg01942-amg01942c2-stirr-us-10173.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="KAAL61.us@HD",ABC 6 Austin TX (KAAL) (1080p) #EXTINF:-1 tvg-id="ABC.us@KAAL",ABC 6 Austin TX (KAAL) (1080p)
https://amg01942-amg01942c6-stirr-us-10178.playouts.now.amagi.tv/playlist.m3u8 https://amg01942-amg01942c6-stirr-us-10178.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="WSYX61.us@HD",ABC 6 Columbus OH (WSYX) (1080p) #EXTINF:-1 tvg-id="ABC.us@WSYX",ABC 6 Columbus OH (WSYX) (1080p)
https://linear-689.frequency.stream/dist/stirr/689/hls/master/playlist.m3u8 https://linear-689.frequency.stream/dist/stirr/689/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WJLATV71.us@HD",ABC 7 Washington DC (WJLA) (1080p) #EXTINF:-1 tvg-id="ABC.us@WJLATV",ABC 7 Washington DC (WJLA) (1080p)
https://linear-681.frequency.stream/dist/stirr/681/hls/master/playlist.m3u8 https://linear-681.frequency.stream/dist/stirr/681/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WDIODT101.us@HD",ABC 10 Duluth MN (WDIO) (1080p) #EXTINF:-1 tvg-id="ABC.us@WDIODT",ABC 10 Duluth MN (WDIO) (1080p)
https://amg01942-amg01942c3-stirr-us-10196.playouts.now.amagi.tv/playlist.m3u8 https://amg01942-amg01942c3-stirr-us-10196.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="WLOS131.us@HD",ABC 13 Asheville NC (WLOS) (1080p) #EXTINF:-1 tvg-id="ABC.us@WLOS",ABC 13 Asheville NC (WLOS) (1080p)
https://linear-695.frequency.stream/dist/stirr/695/hls/master/playlist.m3u8 https://linear-695.frequency.stream/dist/stirr/695/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WPDETV151.us@HD",ABC 15 Myrtle Beach FL (WPDE) (1080p) #EXTINF:-1 tvg-id="ABC.us@WPDETV",ABC 15 Myrtle Beach FL (WPDE) (1080p)
https://linear-696.frequency.stream/dist/stirr/696/hls/master/playlist.m3u8 https://linear-696.frequency.stream/dist/stirr/696/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WKEF451.us@SD",ABC 22 Dayton OH (WKEF) (1080p) #EXTINF:-1 tvg-id="Roar.us@WKEF",ABC 22 Dayton OH (WKEF) (1080p)
https://linear-690.frequency.stream/dist/stirr/690/hls/master/playlist.m3u8 https://linear-690.frequency.stream/dist/stirr/690/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="",American Stories (1080p) #EXTINF:-1 tvg-id="",American Stories (1080p)
https://linear-1016.frequency.stream/dist/stirr/1016/hls/master/playlist.m3u8 https://linear-1016.frequency.stream/dist/stirr/1016/hls/master/playlist.m3u8
@@ -29,21 +29,21 @@ https://linear-1016.frequency.stream/dist/stirr/1016/hls/master/playlist.m3u8
https://videoelephantlimited-beyondparanormal-1-us.ohlscdn.wurl.tv/playlist.m3u8 https://videoelephantlimited-beyondparanormal-1-us.ohlscdn.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="",Black Enterprise Streaming Network (1080p) #EXTINF:-1 tvg-id="",Black Enterprise Streaming Network (1080p)
https://videoelephant-limited-blackenterprisestreamingnetwork-1-us.ohlscdn.wurl.tv/playlist.m3u8 https://videoelephant-limited-blackenterprisestreamingnetwork-1-us.ohlscdn.wurl.tv/playlist.m3u8
#EXTINF:-1 tvg-id="KUTV21.us@HD",CBS 2 Salt Lake City UT (KUTV) (1080p) #EXTINF:-1 tvg-id="CBS.us@KUTV",CBS 2 Salt Lake City UT (KUTV) (1080p)
https://linear-707.frequency.stream/dist/stirr/707/hls/master/playlist.m3u8 https://linear-707.frequency.stream/dist/stirr/707/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WWMT31.us@HD",CBS 3 Kalamazoo MI (WWMT) (1080p) #EXTINF:-1 tvg-id="CBS.us@WWMT",CBS 3 Kalamazoo MI (WWMT) (1080p)
https://linear-701.frequency.stream/dist/stirr/701/hls/master/playlist.m3u8 https://linear-701.frequency.stream/dist/stirr/701/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KDBCTV41.us@HD",CBS 4 El Paso TX (KDBC) (1080p) #EXTINF:-1 tvg-id="CBS.us@KDBCTV",CBS 4 El Paso TX (KDBC) (1080p)
https://linear-706.frequency.stream/dist/stirr/706/hls/master/playlist.m3u8 https://linear-706.frequency.stream/dist/stirr/706/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WKRCTV121.us@HD",CBS 12 Cincinnati OH (WKRC) (1080p) #EXTINF:-1 tvg-id="CBS.us@WKRCTV",CBS 12 Cincinnati OH (WKRC) (1080p)
https://linear-691.frequency.stream/dist/stirr/691/hls/master/playlist.m3u8 https://linear-691.frequency.stream/dist/stirr/691/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WPEC121.us@HD",CBS 12 West Palm Beach FL (WPEC) (1080p) #EXTINF:-1 tvg-id="CBS.us@WPEC",CBS 12 West Palm Beach FL (WPEC) (1080p)
https://linear-692.frequency.stream/dist/stirr/692/hls/master/playlist.m3u8 https://linear-692.frequency.stream/dist/stirr/692/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WHPDT1.us@SD",CBS 21 Harrisburg PA (WHP) (1080p) #EXTINF:-1 tvg-id="WHPDT1.us@SD",CBS 21 Harrisburg PA (WHP) (1080p)
https://linear-697.frequency.stream/dist/stirr/697/hls/master/playlist.m3u8 https://linear-697.frequency.stream/dist/stirr/697/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WSBTTV281.us@SD",CBS 22 South Bend IN (WSBT) (1080p) #EXTINF:-1 tvg-id="Roar.us@WSBTTV",CBS 22 South Bend IN (WSBT) (1080p)
https://linear-693.frequency.stream/dist/stirr/693/hls/master/playlist.m3u8 https://linear-693.frequency.stream/dist/stirr/693/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KEYETV421.us@HD",CBS 42 Austin TX (KEYE) (1080p) #EXTINF:-1 tvg-id="CBS.us@KEYETV",CBS 42 Austin TX (KEYE) (1080p)
https://linear-704.frequency.stream/dist/stirr/704/hls/master/playlist.m3u8 https://linear-704.frequency.stream/dist/stirr/704/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="",Channel Fight (1080p) #EXTINF:-1 tvg-id="",Channel Fight (1080p)
https://d15wqvt0xm15k4.cloudfront.net/scheduler/scheduleMaster/266.m3u8 https://d15wqvt0xm15k4.cloudfront.net/scheduler/scheduleMaster/266.m3u8
@@ -69,13 +69,13 @@ https://d2y0xw9ugf4if7.cloudfront.net/scheduler/scheduleMaster/417.m3u8
https://d3c1w351ahk83d.cloudfront.net/scheduler/scheduleMaster/416.m3u8 https://d3c1w351ahk83d.cloudfront.net/scheduler/scheduleMaster/416.m3u8
#EXTINF:-1 tvg-id="FITE247.us@SD",FITE 24/7 (1080p) #EXTINF:-1 tvg-id="FITE247.us@SD",FITE 24/7 (1080p)
https://d3d85c7qkywguj.cloudfront.net/scheduler/scheduleMaster/263.m3u8 https://d3d85c7qkywguj.cloudfront.net/scheduler/scheduleMaster/263.m3u8
#EXTINF:-1 tvg-id="WLUKTV141.us@HD",FOX 11 Green Bay WI (WLUK) (1080p) #EXTINF:-1 tvg-id="CW.us@WLUKTV",FOX 11 Green Bay WI (WLUK) (1080p)
https://linear-702.frequency.stream/dist/stirr/702/hls/master/playlist.m3u8 https://linear-702.frequency.stream/dist/stirr/702/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KOKHTV251.us@HD",FOX 25 Oklahoma City OK (KOKH) (1080p) #EXTINF:-1 tvg-id="Fox.us@KOKHTV",FOX 25 Oklahoma City OK (KOKH) (1080p)
https://linear-705.frequency.stream/dist/stirr/705/hls/master/playlist.m3u8 https://linear-705.frequency.stream/dist/stirr/705/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KMPHTV261.us@HD",FOX 26 Visalia CA (KMPH) (1080p) #EXTINF:-1 tvg-id="Fox.us@KMPHTV",FOX 26 Visalia CA (KMPH) (1080p)
https://linear-711.frequency.stream/dist/stirr/711/hls/master/playlist.m3u8 https://linear-711.frequency.stream/dist/stirr/711/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WBFF451.us@HD",FOX 45 Baltimore MD (WBFF) (1080p) #EXTINF:-1 tvg-id="Fox.us@WBFF",FOX 45 Baltimore MD (WBFF) (1080p)
https://linear-688.frequency.stream/dist/stirr/688/hls/master/playlist.m3u8 https://linear-688.frequency.stream/dist/stirr/688/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="FUELTV.pt@SD",Fuel TV (1080p) #EXTINF:-1 tvg-id="FUELTV.pt@SD",Fuel TV (1080p)
https://amg01074-fueltv-amg01074c1-stirr-us-4214.playouts.now.amagi.tv/playlist.m3u8 https://amg01074-fueltv-amg01074c1-stirr-us-4214.playouts.now.amagi.tv/playlist.m3u8
@@ -101,21 +101,21 @@ https://cdn.lawandcrime.net/rewind/playlist.m3u8
https://d2kwqe56yti97f.cloudfront.net/scheduler/scheduleMaster/490.m3u8 https://d2kwqe56yti97f.cloudfront.net/scheduler/scheduleMaster/490.m3u8
#EXTINF:-1 tvg-id="",My Money (1080p) #EXTINF:-1 tvg-id="",My Money (1080p)
https://d3bqd6nz14unwy.cloudfront.net/scheduler/scheduleMaster/468.m3u8 https://d3bqd6nz14unwy.cloudfront.net/scheduler/scheduleMaster/468.m3u8
#EXTINF:-1 tvg-id="KSNV31.us@HD",NBC 3 Las Vegas NV (KSNV) (1080p) #EXTINF:-1 tvg-id="NBC.us@KSNV",NBC 3 Las Vegas NV (KSNV) (1080p)
https://linear-708.frequency.stream/dist/stirr/708/hls/master/playlist.m3u8 https://linear-708.frequency.stream/dist/stirr/708/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="KOBDT1.us@SD",NBC 4 Albuquerque NM (KOB) (1080p) #EXTINF:-1 tvg-id="KOBDT1.us@SD",NBC 4 Albuquerque NM (KOB) (1080p)
https://amg01942-amg01942c1-stirr-us-10167.playouts.now.amagi.tv/playlist.m3u8 https://amg01942-amg01942c1-stirr-us-10167.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="WOAITV41.us@HD",NBC 4 San Antonio TX (WOAI) (1080p) #EXTINF:-1 tvg-id="NBC.us@WOAITV",NBC 4 San Antonio TX (WOAI) (1080p)
https://linear-703.frequency.stream/dist/stirr/703/hls/master/playlist.m3u8 https://linear-703.frequency.stream/dist/stirr/703/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WJACTV61.us@HD",NBC 6 Johnstown PA (WJAC) (1080p) #EXTINF:-1 tvg-id="NBC.us@WJACTV",NBC 6 Johnstown PA (WJAC) (1080p)
https://linear-698.frequency.stream/dist/stirr/698/hls/master/playlist.m3u8 https://linear-698.frequency.stream/dist/stirr/698/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WTOVTV91.us@HD",NBC 9 Steubenville OH (WTOV) (1080p) #EXTINF:-1 tvg-id="NBC.us@WTOVTV",NBC 9 Steubenville OH (WTOV) (1080p)
https://linear-699.frequency.stream/dist/stirr/699/hls/master/playlist.m3u8 https://linear-699.frequency.stream/dist/stirr/699/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WJAR101.us@HD",NBC 10 Cranston RI (WJAR) (1080p) #EXTINF:-1 tvg-id="NBC.us@WJAR",NBC 10 Cranston RI (WJAR) (1080p)
https://linear-694.frequency.stream/dist/stirr/694/hls/master/playlist.m3u8 https://linear-694.frequency.stream/dist/stirr/694/hls/master/playlist.m3u8
#EXTINF:-1 tvg-id="WHECTV101.us@HD",NBC 10 Rochester NY (WHEC) (1080p) #EXTINF:-1 tvg-id="NBC.us@WHECTV",NBC 10 Rochester NY (WHEC) (1080p)
https://amg01942-amg01942c4-stirr-us-10190.playouts.now.amagi.tv/playlist.m3u8 https://amg01942-amg01942c4-stirr-us-10190.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="WNYT131.us@HD",NBC 13 Albany NY (WNYT) (1080p) #EXTINF:-1 tvg-id="NBC.us@WNYT",NBC 13 Albany NY (WNYT) (1080p)
https://amg01942-amg01942c5-stirr-us-10184.playouts.now.amagi.tv/playlist.m3u8 https://amg01942-amg01942c5-stirr-us-10184.playouts.now.amagi.tv/playlist.m3u8
#EXTINF:-1 tvg-id="NTDTVEnglish.us@USA",NTD TV English (1080p) #EXTINF:-1 tvg-id="NTDTVEnglish.us@USA",NTD TV English (1080p)
https://amg17596-ntdtv-amg17596c1-stirr-us-4738.playouts.now.amagi.tv/ntd.m3u8 https://amg17596-ntdtv-amg17596c1-stirr-us-4738.playouts.now.amagi.tv/ntd.m3u8
+30 -30
View File
@@ -1,25 +1,25 @@
#EXTM3U #EXTM3U
#EXTINF:-1 tvg-id="WMARTV21.us@HD",ABC 2 Baltimore MD (WMAR) (720p) #EXTINF:-1 tvg-id="ABC.us@WMARTV",ABC 2 Baltimore MD (WMAR) (720p)
https://aegis-cloudfront-1.tubi.video/c28d1ca8-9467-4798-81dc-09c1d6e90be1/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/c28d1ca8-9467-4798-81dc-09c1d6e90be1/playlist.m3u8
#EXTINF:-1 tvg-id="WCVBTV501.us@SD",ABC 5 Boston MA (WCVB) (720p) #EXTINF:-1 tvg-id="TrueCrimeNetwork.us@WCVBTV",ABC 5 Boston MA (WCVB) (720p)
https://aegis-cloudfront-1.tubi.video/c2e3094d-ad56-4c5f-9655-cd80df71fbab/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/c2e3094d-ad56-4c5f-9655-cd80df71fbab/playlist.m3u8
#EXTINF:-1 tvg-id="KOATTV71.us@HD",ABC 7 Albuquerque NM (KOAT) (720p) #EXTINF:-1 tvg-id="ABC.us@KOATTV",ABC 7 Albuquerque NM (KOAT) (720p)
https://aegis-cloudfront-1.tubi.video/2dba5dd9-4097-45e3-b169-56735cc48476/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/2dba5dd9-4097-45e3-b169-56735cc48476/playlist.m3u8
#EXTINF:-1 tvg-id="WSOCTV91.us@HD",ABC 9 Charlotte NC (WSOC) (720p) #EXTINF:-1 tvg-id="ABC.us@WSOCTV",ABC 9 Charlotte NC (WSOC) (720p)
https://aegis-cloudfront-1.tubi.video/d864a20b-85bb-41bc-8fbe-6c9d8a88a32d/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/d864a20b-85bb-41bc-8fbe-6c9d8a88a32d/playlist.m3u8
#EXTINF:-1 tvg-id="WMURTV91.us@HD",ABC 9 Manchester NH (WMUR-TV) (720p) #EXTINF:-1 tvg-id="ABC.us@WMURTV",ABC 9 Manchester NH (WMUR-TV) (720p)
https://aegis-cloudfront-1.tubi.video/b77ffe96-c5d1-43a7-8687-306ff244d725/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/b77ffe96-c5d1-43a7-8687-306ff244d725/playlist.m3u8
#EXTINF:-1 tvg-id="KGUNTV91.us@HD",ABC 9 Tucson AZ (KGUN) (720p) #EXTINF:-1 tvg-id="ABC.us@KGUNTV",ABC 9 Tucson AZ (KGUN) (720p)
https://aegis-cloudfront-1.tubi.video/a53514a7-f2aa-4d34-802e-c2b5594fc0d7/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/a53514a7-f2aa-4d34-802e-c2b5594fc0d7/playlist.m3u8
#EXTINF:-1 tvg-id="KGTV101.us@HD",ABC 10 San Diego CA (KGTV) (720p) #EXTINF:-1 tvg-id="ABC.us@KGTV",ABC 10 San Diego CA (KGTV) (720p)
https://aegis-cloudfront-1.tubi.video/1a352414-3a30-4f42-b14b-c091d02a5e45/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/1a352414-3a30-4f42-b14b-c091d02a5e45/playlist.m3u8
#EXTINF:-1 tvg-id="WISNTV121.us@HD",ABC 12 Milwaukee WI (WISN) (720p) #EXTINF:-1 tvg-id="ABC.us@WISNTV",ABC 12 Milwaukee WI (WISN) (720p)
https://aegis-cloudfront-1.tubi.video/ec903a48-3638-4d0b-ac89-813e147bca58/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/ec903a48-3638-4d0b-ac89-813e147bca58/playlist.m3u8
#EXTINF:-1 tvg-id="KNXVTV611.us@HD",ABC 15 Phoenix AZ (KNXV) (720p) #EXTINF:-1 tvg-id="KNXVTV611.us@HD",ABC 15 Phoenix AZ (KNXV) (720p)
https://aegis-cloudfront-1.tubi.video/e923f4ce-7229-4e01-a25e-d453993dab82/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/e923f4ce-7229-4e01-a25e-d453993dab82/playlist.m3u8
#EXTINF:-1 tvg-id="KEROTV231.us@HD",ABC 23 Bakersfield CA (KERO) (720p) #EXTINF:-1 tvg-id="ABC.us@KEROTV",ABC 23 Bakersfield CA (KERO) (720p)
https://aegis-cloudfront-1.tubi.video/69c4e4f9-84fa-43eb-b38e-6d1f9464ca73/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/69c4e4f9-84fa-43eb-b38e-6d1f9464ca73/playlist.m3u8
#EXTINF:-1 tvg-id="WTXLTV271.us@HD",ABC 27 Tallahassee FL (WTXL) (720p) #EXTINF:-1 tvg-id="ABC.us@WTXLTV",ABC 27 Tallahassee FL (WTXL) (720p)
https://aegis-cloudfront-1.tubi.video/e739361e-fa12-4cac-92f3-e0dbf332cd88/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/e739361e-fa12-4cac-92f3-e0dbf332cd88/playlist.m3u8
#EXTINF:-1 tvg-id="ABCNewsLive.us@SD",ABC News Live (720p) #EXTINF:-1 tvg-id="ABCNewsLive.us@SD",ABC News Live (720p)
https://aegis-cloudfront-1.tubi.video/d6cbb0de-68e4-4f3b-82f9-bf5d526e0bde/index.m3u8 https://aegis-cloudfront-1.tubi.video/d6cbb0de-68e4-4f3b-82f9-bf5d526e0bde/index.m3u8
@@ -57,11 +57,11 @@ https://aegis-cloudfront-1.tubi.video/c95700f8-e51c-4a36-ad46-56f70fc9f1d9/playl
https://aegis-cloudfront-1.tubi.video/d4038326-a3e3-4aba-b1f1-f0526c912c74/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/d4038326-a3e3-4aba-b1f1-f0526c912c74/playlist.m3u8
#EXTINF:-1 tvg-id="CBCNewsNetwork.ca@SD",CBC News Network (1080p) #EXTINF:-1 tvg-id="CBCNewsNetwork.ca@SD",CBC News Network (1080p)
https://aegis-cloudfront-1.tubi.video/c71ce9b6-cddb-4cec-b0db-2f09289f8782/master.m3u8 https://aegis-cloudfront-1.tubi.video/c71ce9b6-cddb-4cec-b0db-2f09289f8782/master.m3u8
#EXTINF:-1 tvg-id="KMTVTV31.us@HD",CBS 3 Omaha NE (KMTV) (720p) #EXTINF:-1 tvg-id="CBS.us@KMTVTV",CBS 3 Omaha NE (KMTV) (720p)
https://aegis-cloudfront-1.tubi.video/0b16cabe-a8fd-4d91-99e5-3efb7aa740cc/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/0b16cabe-a8fd-4d91-99e5-3efb7aa740cc/playlist.m3u8
#EXTINF:-1 tvg-id="WTVRTV61.us@HD",CBS 6 Richmond VA (WTVR) (720p) #EXTINF:-1 tvg-id="CBS.us@WTVRTV",CBS 6 Richmond VA (WTVR) (720p)
https://aegis-cloudfront-1.tubi.video/d8fc1d6c-fd55-45c8-973b-b7327ee1a6e0/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/d8fc1d6c-fd55-45c8-973b-b7327ee1a6e0/playlist.m3u8
#EXTINF:-1 tvg-id="KCCI81.us@HD",CBS 8 Des Moines IA (KCCI) (720p) #EXTINF:-1 tvg-id="CBS.us@KCCI",CBS 8 Des Moines IA (KCCI) (720p)
https://aegis-cloudfront-1.tubi.video/8d1f164d-34ef-4f70-b948-ae33826a0aaa/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/8d1f164d-34ef-4f70-b948-ae33826a0aaa/playlist.m3u8
#EXTINF:-1 tvg-id="",Cine Estrella (1080p) #EXTINF:-1 tvg-id="",Cine Estrella (1080p)
https://aegis-cloudfront-1.tubi.video/e1921b21-6cd6-4b21-bb46-832cbb74485c/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/e1921b21-6cd6-4b21-bb46-832cbb74485c/playlist.m3u8
@@ -103,23 +103,23 @@ https://aegis-cloudfront-1.tubi.video/e1638fe1-8df0-470a-9fa9-b515ca7ca18e/maste
https://aegis-cloudfront-1.tubi.video/bf25c5e4-9d1e-4b3e-a6c3-5f5578a81382/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/bf25c5e4-9d1e-4b3e-a6c3-5f5578a81382/playlist.m3u8
#EXTINF:-1 tvg-id="FearFactor.us@US",Fear Factor (720p) #EXTINF:-1 tvg-id="FearFactor.us@US",Fear Factor (720p)
https://aegis-cloudfront-1.tubi.video/2a9fb8e7-51c2-40d0-9cc0-6eb963199568/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/2a9fb8e7-51c2-40d0-9cc0-6eb963199568/playlist.m3u8
#EXTINF:-1 tvg-id="WJBK21.us@HD",FOX 2 Detroit MI (WJBK) (720p) #EXTINF:-1 tvg-id="Fox.us@WJBK",FOX 2 Detroit MI (WJBK) (720p)
https://aegis-cloudfront-1.tubi.video/5689247c-331e-4444-92e1-f7cc21377360/index.m3u8 https://aegis-cloudfront-1.tubi.video/5689247c-331e-4444-92e1-f7cc21377360/index.m3u8
#EXTINF:-1 tvg-id="KTVU41.us@HD",FOX 2 San Francisco CA (KTVU) (720p) #EXTINF:-1 tvg-id="CW.us@KTVU",FOX 2 San Francisco CA (KTVU) (720p)
https://aegis-cloudfront-1.tubi.video/8d9284ec-c451-4e51-a1d4-d16e5c8972af/index.m3u8 https://aegis-cloudfront-1.tubi.video/8d9284ec-c451-4e51-a1d4-d16e5c8972af/index.m3u8
#EXTINF:-1 tvg-id="WNYW51.us@HD",FOX 5 New York NY (WNYW) (720p) #EXTINF:-1 tvg-id="Fox.us@WNYW",FOX 5 New York NY (WNYW) (720p)
https://aegis-cloudfront-1.tubi.video/36a435c5-f70a-411a-b237-e32738c486a8/index.m3u8 https://aegis-cloudfront-1.tubi.video/36a435c5-f70a-411a-b237-e32738c486a8/index.m3u8
#EXTINF:-1 tvg-id="WTTG51.us@HD",FOX 5 Washington DC (WTTG) (720p) #EXTINF:-1 tvg-id="Fox.us@WTTG",FOX 5 Washington DC (WTTG) (720p)
https://aegis-cloudfront-1.tubi.video/4b125d60-5d81-4a3c-99c3-726c9cb8cf99/index.m3u8 https://aegis-cloudfront-1.tubi.video/4b125d60-5d81-4a3c-99c3-726c9cb8cf99/index.m3u8
#EXTINF:-1 tvg-id="WITI61.us@HD",FOX 6 Milwaukee WI (WITI) (720p) #EXTINF:-1 tvg-id="Fox.us@WITI",FOX 6 Milwaukee WI (WITI) (720p)
https://aegis-cloudfront-1.tubi.video/f16a76f1-fdb8-4e18-a14b-1e40e98eb1ff/index.m3u8 https://aegis-cloudfront-1.tubi.video/f16a76f1-fdb8-4e18-a14b-1e40e98eb1ff/index.m3u8
#EXTINF:-1 tvg-id="KSAZTV101.us@HD",FOX 10 Phoenix AZ (KSAZ) (720p) #EXTINF:-1 tvg-id="Fox.us@KSAZTV",FOX 10 Phoenix AZ (KSAZ) (720p)
https://aegis-cloudfront-1.tubi.video/6bb80abf-8f73-46f3-a520-bb810d93f1d0/index.m3u8 https://aegis-cloudfront-1.tubi.video/6bb80abf-8f73-46f3-a520-bb810d93f1d0/index.m3u8
#EXTINF:-1 tvg-id="KTTV111.us@HD",FOX 11 Los Angeles CA (KTTV) (720p) #EXTINF:-1 tvg-id="Fox.us@KTTV",FOX 11 Los Angeles CA (KTTV) (720p)
https://aegis-cloudfront-1.tubi.video/317a6700-b890-4066-a2e7-dea5c15fd915/index.m3u8 https://aegis-cloudfront-1.tubi.video/317a6700-b890-4066-a2e7-dea5c15fd915/index.m3u8
#EXTINF:-1 tvg-id="KCPQ131.us@HD",FOX 13 Seattle WA (KCPQ) (720p) #EXTINF:-1 tvg-id="Fox.us@KCPQ",FOX 13 Seattle WA (KCPQ) (720p)
https://aegis-cloudfront-1.tubi.video/cc394198-7bde-43e8-b186-875bc0eb3037/index.m3u8 https://aegis-cloudfront-1.tubi.video/cc394198-7bde-43e8-b186-875bc0eb3037/index.m3u8
#EXTINF:-1 tvg-id="WFLD501.us@HD",FOX 32 Chicago IL (WFLD) (720p) #EXTINF:-1 tvg-id="MNT.us@WFLD",FOX 32 Chicago IL (WFLD) (720p)
https://aegis-cloudfront-1.tubi.video/3600d45a-dfbf-4878-9ca1-2e2bc9077fed/index.m3u8 https://aegis-cloudfront-1.tubi.video/3600d45a-dfbf-4878-9ca1-2e2bc9077fed/index.m3u8
#EXTINF:-1 tvg-id="FoxSoul.us@SD",Fox Soul (720p) #EXTINF:-1 tvg-id="FoxSoul.us@SD",Fox Soul (720p)
https://aegis-cloudfront-1.tubi.video/0c4bd880-76cc-4000-b9cb-8edabeb88daa/index.m3u8 https://aegis-cloudfront-1.tubi.video/0c4bd880-76cc-4000-b9cb-8edabeb88daa/index.m3u8
@@ -177,21 +177,21 @@ https://aegis-cloudfront-1.tubi.video/a8586229-0ea0-4eb4-bb23-09674c2a94d3/playl
https://aegis-cloudfront-1.tubi.video/07f838db-e5bc-47c9-b2b8-6d7037b06b9b/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/07f838db-e5bc-47c9-b2b8-6d7037b06b9b/playlist.m3u8
#EXTINF:-1 tvg-id="",NBA FAST Channel (720p) #EXTINF:-1 tvg-id="",NBA FAST Channel (720p)
https://live-manifest.production-public.tubi.io/live/553b8d5e-fd2a-4a61-bdfa-73b34c299d75/playlist.m3u8 https://live-manifest.production-public.tubi.io/live/553b8d5e-fd2a-4a61-bdfa-73b34c299d75/playlist.m3u8
#EXTINF:-1 tvg-id="KCRATV581.us@HD",NBC 3 Sacramento CA (KCRA) (720p) #EXTINF:-1 tvg-id="CW.us@KCRATV",NBC 3 Sacramento CA (KCRA) (720p)
https://aegis-cloudfront-1.tubi.video/5e3aff30-070f-4951-aa59-5ca415acb3c1/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/5e3aff30-070f-4951-aa59-5ca415acb3c1/playlist.m3u8
#EXTINF:-1 tvg-id="WTMJTV41.us@HD",NBC 4 Milwaukee WI (WTMJ) (720p) #EXTINF:-1 tvg-id="NBC.us@WTMJTV",NBC 4 Milwaukee WI (WTMJ) (720p)
https://aegis-cloudfront-1.tubi.video/d4d923f2-17de-4371-b86d-43490499bcdb/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/d4d923f2-17de-4371-b86d-43490499bcdb/playlist.m3u8
#EXTINF:-1 tvg-id="KSBY61.us@HD",NBC 6 Santa Barbara CA (KSBY) (720p) #EXTINF:-1 tvg-id="NBC.us@KSBY",NBC 6 Santa Barbara CA (KSBY) (720p)
https://aegis-cloudfront-1.tubi.video/d5f0543d-5f83-4a69-ba01-c5a68f0c09a1/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/d5f0543d-5f83-4a69-ba01-c5a68f0c09a1/playlist.m3u8
#EXTINF:-1 tvg-id="WGAL81.us@HD",NBC 8 Lancaster PA (WGAL) (720p) #EXTINF:-1 tvg-id="NBC.us@WGAL",NBC 8 Lancaster PA (WGAL) (720p)
https://aegis-cloudfront-1.tubi.video/5d314174-0110-42af-8811-feaae073ea1e/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/5d314174-0110-42af-8811-feaae073ea1e/playlist.m3u8
#EXTINF:-1 tvg-id="KSBW81.us@HD",NBC 8 Salinas CA (KSBW) (720p) #EXTINF:-1 tvg-id="NBC.us@KSBW",NBC 8 Salinas CA (KSBW) (720p)
https://aegis-cloudfront-1.tubi.video/8e6af50d-76df-4208-ab8d-3ff8f512cd38/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/8e6af50d-76df-4208-ab8d-3ff8f512cd38/playlist.m3u8
#EXTINF:-1 tvg-id="WBALTV111.us@HD",NBC 11 Baltimore MD (WBAL) (720p) #EXTINF:-1 tvg-id="NBC.us@WBALTV",NBC 11 Baltimore MD (WBAL) (720p)
https://aegis-cloudfront-1.tubi.video/888aedca-93fb-4aed-bb92-4beb8f1323c6/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/888aedca-93fb-4aed-bb92-4beb8f1323c6/playlist.m3u8
#EXTINF:-1 tvg-id="WXIITV201.us@HD",NBC 12 Winston-Salem NC (WXII) (720p) #EXTINF:-1 tvg-id="CW.us@WXIITV",NBC 12 Winston-Salem NC (WXII) (720p)
https://aegis-cloudfront-1.tubi.video/54b357b4-bf4b-4356-97b4-b1acb6ab62f7/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/54b357b4-bf4b-4356-97b4-b1acb6ab62f7/playlist.m3u8
#EXTINF:-1 tvg-id="WGBATV261.us@HD",NBC 26 Green Bay WI (WGBA) (720p) #EXTINF:-1 tvg-id="NBC.us@WGBATV",NBC 26 Green Bay WI (WGBA) (720p)
https://aegis-cloudfront-1.tubi.video/b32c0573-4add-4b47-b826-24412d952164/playlist.m3u8 https://aegis-cloudfront-1.tubi.video/b32c0573-4add-4b47-b826-24412d952164/playlist.m3u8
#EXTINF:-1 tvg-id="NBCNewsNOW.us@SD",NBC News Now (1080p) #EXTINF:-1 tvg-id="NBCNewsNOW.us@SD",NBC News Now (1080p)
https://aegis-cloudfront-1.tubi.video/605fb6ea-f89c-451a-873c-030cb726b493/master.m3u8 https://aegis-cloudfront-1.tubi.video/605fb6ea-f89c-451a-873c-030cb726b493/master.m3u8
+16 -16
View File
@@ -1,35 +1,35 @@
#EXTM3U #EXTM3U
#EXTINF:-1 tvg-id="KEROTV231.us@HD",23 ABC Bakersfield CA (KERO) (720p) #EXTINF:-1 tvg-id="ABC.us@KEROTV",23 ABC Bakersfield CA (KERO) (720p)
https://content.uplynk.com/channel/ff809e6d9ec34109abfb333f0d4444b5.m3u8 https://content.uplynk.com/channel/ff809e6d9ec34109abfb333f0d4444b5.m3u8
#EXTINF:-1 tvg-id="KMGHTV71.us@HD",ABC 7 Denver CO (KMGH) (720p) #EXTINF:-1 tvg-id="ABC.us@KMGHTV",ABC 7 Denver CO (KMGH) (720p)
https://content.uplynk.com/channel/64ca339f04964a5e961c3207a7771bf1.m3u8 https://content.uplynk.com/channel/64ca339f04964a5e961c3207a7771bf1.m3u8
#EXTINF:-1 tvg-id="KTNVTV331.us@HD",ABC 13 Las Vegas NV (KTNV) (720p) #EXTINF:-1 tvg-id="CW.us@KTNVTV",ABC 13 Las Vegas NV (KTNV) (720p)
https://content.uplynk.com/channel/39919d3f7a074eefa8bf579214e952f9.m3u8 https://content.uplynk.com/channel/39919d3f7a074eefa8bf579214e952f9.m3u8
#EXTINF:-1 tvg-id="KNXVTV611.us@HD",ABC 15 Phoenix AZ (KNXV-TV) (720p) #EXTINF:-1 tvg-id="KNXVTV611.us@HD",ABC 15 Phoenix AZ (KNXV-TV) (720p)
https://content.uplynk.com/channel/9deaf22aaa33461f9cac22e030ed00ec.m3u8 https://content.uplynk.com/channel/9deaf22aaa33461f9cac22e030ed00ec.m3u8
#EXTINF:-1 tvg-id="KXXV251.us@HD",ABC 25 News Central Texas (720p) #EXTINF:-1 tvg-id="ABC.us@KXXV",ABC 25 News Central Texas (720p)
https://content.uplynk.com/channel/9d4e02c9c3544c269d32e6b316792c8f.m3u8 https://content.uplynk.com/channel/9d4e02c9c3544c269d32e6b316792c8f.m3u8
#EXTINF:-1 tvg-id="WTXLTV271.us@HD",ABC Tallahassee (720p) [Not 24/7] #EXTINF:-1 tvg-id="ABC.us@WTXLTV",ABC Tallahassee (720p) [Not 24/7]
https://content.uplynk.com/channel/c66d1d2d9e2c46cea1cf22a33f6ca488.m3u8 https://content.uplynk.com/channel/c66d1d2d9e2c46cea1cf22a33f6ca488.m3u8
#EXTINF:-1 tvg-id="AmericasVoice.us@SD",America's Voice (720p) #EXTINF:-1 tvg-id="AmericasVoice.us@SD",America's Voice (720p)
https://content.uplynk.com/channel/26bd482ffe364a1282bc3df28bd3c21f.m3u8 https://content.uplynk.com/channel/26bd482ffe364a1282bc3df28bd3c21f.m3u8
#EXTINF:-1 tvg-id="KMTVTV31.us@HD",CBS 3 Omaha NE (KMTV-TV) (720p) #EXTINF:-1 tvg-id="CBS.us@KMTVTV",CBS 3 Omaha NE (KMTV-TV) (720p)
https://content.uplynk.com/channel/328d1434fb51476cb6567c74d5b2cc70.m3u8 https://content.uplynk.com/channel/328d1434fb51476cb6567c74d5b2cc70.m3u8
#EXTINF:-1 tvg-id="CourtTV.us@SD",Court TV (720p) #EXTINF:-1 tvg-id="CourtTV.us@SD",Court TV (720p)
https://content.uplynk.com/channel/6c0bd0f94b1d4526a98676e9699a10ef.m3u8 https://content.uplynk.com/channel/6c0bd0f94b1d4526a98676e9699a10ef.m3u8
#EXTINF:-1 tvg-id="KRCA71.us@HD",KRCA-TV Estrella Los Angeles (720p) #EXTINF:-1 tvg-id="ABC.us@KRCA",KRCA-TV Estrella Los Angeles (720p)
https://content.uplynk.com/channel/829a8c85f9e840c6bed963856c231428.m3u8 https://content.uplynk.com/channel/829a8c85f9e840c6bed963856c231428.m3u8
#EXTINF:-1 tvg-id="KRISTV61.us@HD",KRIS-DT1 (1080p) #EXTINF:-1 tvg-id="NBC.us@KRISTV",KRIS-DT1 (1080p)
https://content.uplynk.com/channel/e72660594b7a4182982af1690609683d.m3u8 https://content.uplynk.com/channel/e72660594b7a4182982af1690609683d.m3u8
#EXTINF:-1 tvg-id="KRISTV61.us@HD",KRIS-DT1 (720p) #EXTINF:-1 tvg-id="NBC.us@KRISTV",KRIS-DT1 (720p)
https://content.uplynk.com/channel/f805c6ab7ddf4e2489ae648bb28fb133.m3u8 https://content.uplynk.com/channel/f805c6ab7ddf4e2489ae648bb28fb133.m3u8
#EXTINF:-1 tvg-id="KSBY61.us@HD",KSBY News San Louis Obispo CA (720p) #EXTINF:-1 tvg-id="NBC.us@KSBY",KSBY News San Louis Obispo CA (720p)
https://content.uplynk.com/channel/5545aa8a7e5a480d85fd1cff8d0cf610.m3u8 https://content.uplynk.com/channel/5545aa8a7e5a480d85fd1cff8d0cf610.m3u8
#EXTINF:-1 tvg-id="KSHBTV411.us@HD",KSHB 41 (Kansas City MO) (720p) #EXTINF:-1 tvg-id="NBC.us@KSHBTV",KSHB 41 (Kansas City MO) (720p)
https://content.uplynk.com/channel/50d0fa1b042945a3a4f550f9b8412c83.m3u8 https://content.uplynk.com/channel/50d0fa1b042945a3a4f550f9b8412c83.m3u8
#EXTINF:-1 tvg-id="KZTV101.us@HD",KZTV-DT1 (720p) #EXTINF:-1 tvg-id="CBS.us@KZTV",KZTV-DT1 (720p)
https://content.uplynk.com/channel/d1f868588ae5476dadaeff450170a183.m3u8 https://content.uplynk.com/channel/d1f868588ae5476dadaeff450170a183.m3u8
#EXTINF:-1 tvg-id="WGBATV261.us@HD",NBC 26 Green Bay WI (WGBA-DT1) (720p) #EXTINF:-1 tvg-id="NBC.us@WGBATV",NBC 26 Green Bay WI (WGBA-DT1) (720p)
https://content.uplynk.com/channel/1fbfb28ae5044f619f75ae0adb011989.m3u8 https://content.uplynk.com/channel/1fbfb28ae5044f619f75ae0adb011989.m3u8
#EXTINF:-1 tvg-id="SchwabNetwork.us@SD",Schwab Network (1080p) #EXTINF:-1 tvg-id="SchwabNetwork.us@SD",Schwab Network (1080p)
https://content.uplynk.com/channel/f9aafa1f132e40af9b9e7238bc18d128.m3u8 https://content.uplynk.com/channel/f9aafa1f132e40af9b9e7238bc18d128.m3u8
@@ -39,9 +39,9 @@ https://content.uplynk.com/channel/4bb4901b934c4e029fd4c1abfc766c37.m3u8
https://content.uplynk.com/channel/b6a96ed39d694ae1b738faa98cf7dd3f.m3u8 https://content.uplynk.com/channel/b6a96ed39d694ae1b738faa98cf7dd3f.m3u8
#EXTINF:-1 tvg-id="TopStoriesbyNewsy.us@SD",Top Stories by Newsy (720p) #EXTINF:-1 tvg-id="TopStoriesbyNewsy.us@SD",Top Stories by Newsy (720p)
https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8 https://content.uplynk.com/channel/33c48f602cfd4474b957eb4ad999caf8.m3u8
#EXTINF:-1 tvg-id="WFTXTV361.us@HD",WFTX News Fort Myers FL (720p) #EXTINF:-1 tvg-id="Fox.us@WFTXTV",WFTX News Fort Myers FL (720p)
https://content.uplynk.com/channel/8975f81e6efd4e609873c3e8e25c7756.m3u8 https://content.uplynk.com/channel/8975f81e6efd4e609873c3e8e25c7756.m3u8
#EXTINF:-1 tvg-id="WGGSTV162.us@SD",WGGS-DT2 (720p) #EXTINF:-1 tvg-id="Outlaw.us@WGGSTV",WGGS-DT2 (720p)
https://content.uplynk.com/channel/1f93c13275024afb9e0ead299624073d.m3u8 https://content.uplynk.com/channel/1f93c13275024afb9e0ead299624073d.m3u8
#EXTINF:-1 tvg-id="WPTVTV51.us@HD",WPTV News West Palm Beach FL (720p) #EXTINF:-1 tvg-id="NBC.us@WPTVTV",WPTV News West Palm Beach FL (720p)
https://content.uplynk.com/channel/b02350ef854c4eef8358eead1f59a5cc.m3u8 https://content.uplynk.com/channel/b02350ef854c4eef8358eead1f59a5cc.m3u8
@@ -0,0 +1,3 @@
#EXTM3U
#EXTINF:-1 tvg-id="",Example (720p)
http://example.com/a%ZZ
@@ -0,0 +1,3 @@
#EXTM3U
#EXTINF:-1,Example
https://example.com/live.m3u8
+29 -12
View File
@@ -1,10 +1,14 @@
import issues from '../../__data__/input/issues' import issues from '../../__data__/input/issues'
import { pathToFileURL } from 'node:url' import { pathToFileURL } from 'node:url'
import { execSync } from 'child_process' import { execFileSync } from 'child_process'
import * as fs from 'fs-extra' import * as fs from 'fs-extra'
const ENV_VAR = const ENV = {
'cross-env DATA_DIR=tests/__data__/input/data STREAMS_DIR=tests/__data__/output/streams LOGS_DIR=tests/__data__/output/logs' ...process.env,
DATA_DIR: 'tests/__data__/input/data',
STREAMS_DIR: 'tests/__data__/output/streams',
LOGS_DIR: 'tests/__data__/output/logs'
}
beforeEach(() => { beforeEach(() => {
fs.emptyDirSync('tests/__data__/output') fs.emptyDirSync('tests/__data__/output')
@@ -14,11 +18,10 @@ beforeEach(() => {
describe('issue:validate', () => { describe('issue:validate', () => {
it('can handle streams:add request', () => { it('can handle streams:add request', () => {
const body = issues.find(issue => issue.number === 14179)?.body const body = issues.find(issue => issue.number === 14179)?.body
const cmd = `${ENV_VAR} npm run issue:validate --- --body="${body}" --labels="approved,streams:add"`
try { try {
const stdout = execSync(cmd, { encoding: 'utf8' }) const stdout = runIssueValidate(body, 'approved,streams:add')
if (process.env.DEBUG === 'true') console.log(cmd, stdout) if (process.env.DEBUG === 'true') console.log(stdout)
throw new Error('Failed') throw new Error('Failed')
} catch { } catch {
expect(content('tests/__data__/output/logs/errors.txt')).toBe( expect(content('tests/__data__/output/logs/errors.txt')).toBe(
@@ -29,11 +32,10 @@ describe('issue:validate', () => {
it('can handle streams:remove request', () => { it('can handle streams:remove request', () => {
const body = issues.find(issue => issue.number === 14150)?.body const body = issues.find(issue => issue.number === 14150)?.body
const cmd = `${ENV_VAR} npm run issue:validate --- --body="${body}" --labels="approved,streams:remove"`
try { try {
const stdout = execSync(cmd, { encoding: 'utf8' }) const stdout = runIssueValidate(body, 'approved,streams:remove')
if (process.env.DEBUG === 'true') console.log(cmd, stdout) if (process.env.DEBUG === 'true') console.log(stdout)
throw new Error('Failed') throw new Error('Failed')
} catch { } catch {
expect(content('tests/__data__/output/logs/errors.txt')).toBe( expect(content('tests/__data__/output/logs/errors.txt')).toBe(
@@ -44,11 +46,10 @@ describe('issue:validate', () => {
it('can handle streams:edit request', () => { it('can handle streams:edit request', () => {
const body = issues.find(issue => issue.number === 39097)?.body const body = issues.find(issue => issue.number === 39097)?.body
const cmd = `${ENV_VAR} npm run issue:validate --- --body="${body}" --labels="approved,streams:edit"`
try { try {
const stdout = execSync(cmd, { encoding: 'utf8' }) const stdout = runIssueValidate(body, 'approved,streams:edit')
if (process.env.DEBUG === 'true') console.log(cmd, stdout) if (process.env.DEBUG === 'true') console.log(stdout)
throw new Error('Failed') throw new Error('Failed')
} catch { } catch {
expect(content('tests/__data__/output/logs/errors.txt')).toBe( expect(content('tests/__data__/output/logs/errors.txt')).toBe(
@@ -58,6 +59,22 @@ describe('issue:validate', () => {
}) })
}) })
function runIssueValidate(body: string | undefined, labels: string) {
return execFileSync(
process.execPath,
[
'--import',
'tsx',
'scripts/commands/issue/validate.ts',
'--body',
`${body}`,
'--labels',
labels
],
{ encoding: 'utf8', env: ENV }
)
}
function content(filepath: string) { function content(filepath: string) {
return fs.readFileSync(pathToFileURL(filepath), { encoding: 'utf8' }) return fs.readFileSync(pathToFileURL(filepath), { encoding: 'utf8' })
} }
+13
View File
@@ -30,6 +30,19 @@ describe('playlist:format', () => {
) )
}) })
}) })
it('keeps links with malformed percent escapes', () => {
fs.emptyDirSync('tests/__data__/output')
fs.copySync('tests/__data__/input/playlist_normalize', 'tests/__data__/output/streams')
const cmd =
'cross-env STREAMS_DIR=tests/__data__/output/streams DATA_DIR=tests/__data__/input/data npm run playlist:format'
execSync(cmd, { encoding: 'utf8' })
expect(content('tests/__data__/output/streams/bad_encoding.m3u')).toContain(
'http://example.com/a%ZZ'
)
})
}) })
function content(filepath: string) { function content(filepath: string) {
+8
View File
@@ -101,4 +101,12 @@ describe('playlist:validate', () => {
const stdout = execSync(cmd, { encoding: 'utf8' }) const stdout = execSync(cmd, { encoding: 'utf8' })
if (process.env.DEBUG === 'true') console.log(cmd, stdout) if (process.env.DEBUG === 'true') console.log(cmd, stdout)
}) })
it('accepts a playlist without optional metadata attributes', () => {
const cmd = `${ENV_VAR} npm run playlist:validate -- missing_metadata.m3u`
const stdout = execSync(cmd, { encoding: 'utf8' })
if (process.env.DEBUG === 'true') console.log(cmd, stdout)
expect(stdout).toContain('missing_metadata.m3u')
expect(stdout).toContain('is missing a channel ID')
})
}) })