From 3e4adae35c0ae4bc2a35a01069ab75b4f5d2e894 Mon Sep 17 00:00:00 2001 From: Sphinx <47762050+Sphinxroot@users.noreply.github.com> Date: Sat, 17 Jun 2023 14:09:14 -0400 Subject: [PATCH 01/61] Update fr_groupem6.m3u --- streams/fr_groupem6.m3u | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/streams/fr_groupem6.m3u b/streams/fr_groupem6.m3u index 880b187661..f9185c9e72 100644 --- a/streams/fr_groupem6.m3u +++ b/streams/fr_groupem6.m3u @@ -11,3 +11,11 @@ http://190.2.155.162:8080/m6music/mpegts https://shls-tiji-tv-prod-dub.shahid.net/out/v1/98f46736bd8c4404b67e4b7a38cc8976/index.m3u8 #EXTINF:-1 tvg-id="TiJi.fr",Tiji (1080p) https://shls-tiji-tv-prod-dub.shahid.net/out/v1/ee05878a88474f408ff04495d44cc249/index.m3u8 +#EXTINF:-1 tvg-id="M6.fr",M6 +https://origin2-6play.live.6cloud.fr/pool_rnpls9by/m6/sixplayhde/hls_short_fp10_m6/NA/vZNA6hM/index.m3u8 +#EXTINF:-1 tvg-id="Gulli.fr",Gulli +https://origin2-6play.live.6cloud.fr/pool_rnpls9by/gulli/sixplaysd/hls_short_q2hyb21h_gulli/index.m3u8 +#EXTINF:-1 tvg-id="ParisPremiere.fr",Paris Premiere +https://raw.githubusercontent.com/Sphinxroot/HSL/main/PP.m3u8 +#EXTINF:-1 tvg-id="Teva.fr",Tรฉva +https://raw.githubusercontent.com/Sphinxroot/HSL/main/teva.m3u8 From 1ae810680c2ba86bcdd082ddfe0574af351945f9 Mon Sep 17 00:00:00 2001 From: Sphinx <47762050+Sphinxroot@users.noreply.github.com> Date: Sun, 18 Jun 2023 19:55:14 -0400 Subject: [PATCH 02/61] Update fr_groupem6.m3u --- streams/fr_groupem6.m3u | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streams/fr_groupem6.m3u b/streams/fr_groupem6.m3u index f9185c9e72..30ad753d31 100644 --- a/streams/fr_groupem6.m3u +++ b/streams/fr_groupem6.m3u @@ -12,7 +12,7 @@ https://shls-tiji-tv-prod-dub.shahid.net/out/v1/98f46736bd8c4404b67e4b7a38cc8976 #EXTINF:-1 tvg-id="TiJi.fr",Tiji (1080p) https://shls-tiji-tv-prod-dub.shahid.net/out/v1/ee05878a88474f408ff04495d44cc249/index.m3u8 #EXTINF:-1 tvg-id="M6.fr",M6 -https://origin2-6play.live.6cloud.fr/pool_rnpls9by/m6/sixplayhde/hls_short_fp10_m6/NA/vZNA6hM/index.m3u8 +https://raw.githubusercontent.com/Sphinxroot/HSL/main/M6.m3u8 #EXTINF:-1 tvg-id="Gulli.fr",Gulli https://origin2-6play.live.6cloud.fr/pool_rnpls9by/gulli/sixplaysd/hls_short_q2hyb21h_gulli/index.m3u8 #EXTINF:-1 tvg-id="ParisPremiere.fr",Paris Premiere From 831deb6d4328a555b171dd986fbce1835753f7ff Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 20 Jun 2023 09:23:10 +0300 Subject: [PATCH 03/61] Update validate.js --- scripts/commands/playlist/validate.js | 68 +++++++++++++++------------ 1 file changed, 38 insertions(+), 30 deletions(-) diff --git a/scripts/commands/playlist/validate.js b/scripts/commands/playlist/validate.js index 15ee4a73e5..fe19595848 100644 --- a/scripts/commands/playlist/validate.js +++ b/scripts/commands/playlist/validate.js @@ -32,39 +32,47 @@ async function main() { const buffer = {} const fileLog = [] - const playlist = await parser.parsePlaylist(filepath) - for (const item of playlist.items) { - if (item.tvg.id && !api.channels.find({ id: item.tvg.id })) { - fileLog.push({ - type: 'warning', - line: item.line, - message: `"${item.tvg.id}" is not in the database` - }) - } + try { + const playlist = await parser.parsePlaylist(filepath) + for (const item of playlist.items) { + if (item.tvg.id && !api.channels.find({ id: item.tvg.id })) { + fileLog.push({ + type: 'warning', + line: item.line, + message: `"${item.tvg.id}" is not in the database` + }) + } - if (item.url && buffer[item.url]) { - fileLog.push({ - type: 'warning', - line: item.line, - message: `"${item.url}" is already on the playlist` - }) - } else { - buffer[item.url] = true - } + if (item.url && buffer[item.url]) { + fileLog.push({ + type: 'warning', + line: item.line, + message: `"${item.url}" is already on the playlist` + }) + } else { + buffer[item.url] = true + } - const channel_id = id.generate(item.name, country) - const found = blocklist.find( - blocked => - item.tvg.id.toLowerCase() === blocked.channel.toLowerCase() || - channel_id.toLowerCase() === blocked.channel.toLowerCase() - ) - if (found) { - fileLog.push({ - type: 'error', - line: item.line, - message: `"${found.name}" is on the blocklist due to claims of copyright holders (${found.ref})` - }) + const channel_id = id.generate(item.name, country) + const found = blocklist.find( + blocked => + item.tvg.id.toLowerCase() === blocked.channel.toLowerCase() || + channel_id.toLowerCase() === blocked.channel.toLowerCase() + ) + if (found) { + fileLog.push({ + type: 'error', + line: item.line, + message: `"${found.name}" is on the blocklist due to claims of copyright holders (${found.ref})` + }) + } } + } catch (err) { + fileLog.push({ + type: 'error', + line: 0, + message: err.message.toLowerCase() + }) } if (fileLog.length) { From 93cd3966bcc72f0827f859c7f33fda2f10e5d395 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 20 Jun 2023 09:23:13 +0300 Subject: [PATCH 04/61] Update al_tring.m3u --- streams/al_tring.m3u | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streams/al_tring.m3u b/streams/al_tring.m3u index 8b13789179..fcd718794a 100644 --- a/streams/al_tring.m3u +++ b/streams/al_tring.m3u @@ -1 +1 @@ - +#EXTM3U From bbec921b8f4a154e0cd6527161a4fb0bbbfa5988 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 20 Jun 2023 09:25:03 +0300 Subject: [PATCH 05/61] Update README.md --- README.md | 112 +++++++++++++++++++++++++++--------------------------- 1 file changed, 56 insertions(+), 56 deletions(-) diff --git a/README.md b/README.md index 95bb849825..5072ed356a 100644 --- a/README.md +++ b/README.md @@ -70,24 +70,24 @@ Same thing, but split up into separate files: Education114https://iptv-org.github.io/iptv/categories/education.m3u Entertainment323https://iptv-org.github.io/iptv/categories/entertainment.m3u Family39https://iptv-org.github.io/iptv/categories/family.m3u - General994https://iptv-org.github.io/iptv/categories/general.m3u - Kids179https://iptv-org.github.io/iptv/categories/kids.m3u + General993https://iptv-org.github.io/iptv/categories/general.m3u + Kids177https://iptv-org.github.io/iptv/categories/kids.m3u Legislative150https://iptv-org.github.io/iptv/categories/legislative.m3u - Lifestyle78https://iptv-org.github.io/iptv/categories/lifestyle.m3u - Movies276https://iptv-org.github.io/iptv/categories/movies.m3u + Lifestyle77https://iptv-org.github.io/iptv/categories/lifestyle.m3u + Movies272https://iptv-org.github.io/iptv/categories/movies.m3u Music443https://iptv-org.github.io/iptv/categories/music.m3u - News639https://iptv-org.github.io/iptv/categories/news.m3u + News638https://iptv-org.github.io/iptv/categories/news.m3u Outdoor44https://iptv-org.github.io/iptv/categories/outdoor.m3u Relax16https://iptv-org.github.io/iptv/categories/relax.m3u Religious361https://iptv-org.github.io/iptv/categories/religious.m3u - Series166https://iptv-org.github.io/iptv/categories/series.m3u + Series164https://iptv-org.github.io/iptv/categories/series.m3u Science24https://iptv-org.github.io/iptv/categories/science.m3u Shop73https://iptv-org.github.io/iptv/categories/shop.m3u Sports193https://iptv-org.github.io/iptv/categories/sports.m3u Travel30https://iptv-org.github.io/iptv/categories/travel.m3u Weather14https://iptv-org.github.io/iptv/categories/weather.m3u XXX45https://iptv-org.github.io/iptv/categories/xxx.m3u - Undefined5017https://iptv-org.github.io/iptv/categories/undefined.m3u + Undefined5053https://iptv-org.github.io/iptv/categories/undefined.m3u @@ -113,7 +113,7 @@ Same thing, but split up into separate files: LanguageChannelsPlaylist - Albanian62https://iptv-org.github.io/iptv/languages/sqi.m3u + Albanian50https://iptv-org.github.io/iptv/languages/sqi.m3u Amharic8https://iptv-org.github.io/iptv/languages/amh.m3u Arabic345https://iptv-org.github.io/iptv/languages/ara.m3u Armenian29https://iptv-org.github.io/iptv/languages/hye.m3u @@ -209,13 +209,13 @@ Same thing, but split up into separate files: Slovak39https://iptv-org.github.io/iptv/languages/slk.m3u Slovenian11https://iptv-org.github.io/iptv/languages/slv.m3u Somali4https://iptv-org.github.io/iptv/languages/som.m3u - Spanish1740https://iptv-org.github.io/iptv/languages/spa.m3u + Spanish1742https://iptv-org.github.io/iptv/languages/spa.m3u Swahili3https://iptv-org.github.io/iptv/languages/swa.m3u Swedish18https://iptv-org.github.io/iptv/languages/swe.m3u Tagalog14https://iptv-org.github.io/iptv/languages/tgl.m3u Tajik2https://iptv-org.github.io/iptv/languages/tgk.m3u - Tamil62https://iptv-org.github.io/iptv/languages/tam.m3u - Telugu30https://iptv-org.github.io/iptv/languages/tel.m3u + Tamil61https://iptv-org.github.io/iptv/languages/tam.m3u + Telugu31https://iptv-org.github.io/iptv/languages/tel.m3u Tetum1https://iptv-org.github.io/iptv/languages/tet.m3u Thai80https://iptv-org.github.io/iptv/languages/tha.m3u Turkish217https://iptv-org.github.io/iptv/languages/tur.m3u @@ -229,7 +229,7 @@ Same thing, but split up into separate files: Wolof3https://iptv-org.github.io/iptv/languages/wol.m3u Yucatec Maya1https://iptv-org.github.io/iptv/languages/yua.m3u Yue Chinese10https://iptv-org.github.io/iptv/languages/yue.m3u - Undefined1216https://iptv-org.github.io/iptv/languages/undefined.m3u + Undefined1251https://iptv-org.github.io/iptv/languages/undefined.m3u @@ -256,14 +256,14 @@ Same thing, but split up into separate files: ๐Ÿ‡ฆ๐Ÿ‡ซ Afghanistan21https://iptv-org.github.io/iptv/countries/af.m3u - ๐Ÿ‡ฆ๐Ÿ‡ฑ Albania39https://iptv-org.github.io/iptv/countries/al.m3u + ๐Ÿ‡ฆ๐Ÿ‡ฑ Albania28https://iptv-org.github.io/iptv/countries/al.m3u ๐Ÿ‡ฉ๐Ÿ‡ฟ Algeria45https://iptv-org.github.io/iptv/countries/dz.m3u ๐Ÿ‡ฆ๐Ÿ‡ธ American Samoa6https://iptv-org.github.io/iptv/countries/as.m3u ๐Ÿ‡ฆ๐Ÿ‡ฉ Andorra18https://iptv-org.github.io/iptv/countries/ad.m3u ๐Ÿ‡ฆ๐Ÿ‡ด Angola9https://iptv-org.github.io/iptv/countries/ao.m3u ๐Ÿ‡ฆ๐Ÿ‡ฎ Anguilla6https://iptv-org.github.io/iptv/countries/ai.m3u ๐Ÿ‡ฆ๐Ÿ‡ฌ Antigua and Barbuda8https://iptv-org.github.io/iptv/countries/ag.m3u - ๐Ÿ‡ฆ๐Ÿ‡ท Argentina304https://iptv-org.github.io/iptv/countries/ar.m3u + ๐Ÿ‡ฆ๐Ÿ‡ท Argentina305https://iptv-org.github.io/iptv/countries/ar.m3u       Buenos Aires26https://iptv-org.github.io/iptv/subdivisions/ar-b.m3u       Catamarca2https://iptv-org.github.io/iptv/subdivisions/ar-k.m3u       Chaco5https://iptv-org.github.io/iptv/subdivisions/ar-h.m3u @@ -302,12 +302,12 @@ Same thing, but split up into separate files: ๐Ÿ‡ง๐Ÿ‡ฏ Benin15https://iptv-org.github.io/iptv/countries/bj.m3u ๐Ÿ‡ง๐Ÿ‡ฒ Bermuda5https://iptv-org.github.io/iptv/countries/bm.m3u ๐Ÿ‡ง๐Ÿ‡น Bhutan7https://iptv-org.github.io/iptv/countries/bt.m3u - ๐Ÿ‡ง๐Ÿ‡ด Bolivia89https://iptv-org.github.io/iptv/countries/bo.m3u + ๐Ÿ‡ง๐Ÿ‡ด Bolivia90https://iptv-org.github.io/iptv/countries/bo.m3u       Oruro1https://iptv-org.github.io/iptv/subdivisions/bo-o.m3u ๐Ÿ‡ง๐Ÿ‡ฆ Bosnia and Herzegovina30https://iptv-org.github.io/iptv/countries/ba.m3u ๐Ÿ‡ง๐Ÿ‡ผ Botswana8https://iptv-org.github.io/iptv/countries/bw.m3u ๐Ÿ‡ง๐Ÿ‡ป Bouvet Island5https://iptv-org.github.io/iptv/countries/bv.m3u - ๐Ÿ‡ง๐Ÿ‡ท Brazil304https://iptv-org.github.io/iptv/countries/br.m3u + ๐Ÿ‡ง๐Ÿ‡ท Brazil305https://iptv-org.github.io/iptv/countries/br.m3u       Alagoas4https://iptv-org.github.io/iptv/subdivisions/br-al.m3u       Amazonas1https://iptv-org.github.io/iptv/subdivisions/br-am.m3u       Bahia5https://iptv-org.github.io/iptv/subdivisions/br-ba.m3u @@ -354,7 +354,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ฐ๐Ÿ‡พ Cayman Islands6https://iptv-org.github.io/iptv/countries/ky.m3u ๐Ÿ‡จ๐Ÿ‡ซ Central African Republic8https://iptv-org.github.io/iptv/countries/cf.m3u ๐Ÿ‡น๐Ÿ‡ฉ Chad9https://iptv-org.github.io/iptv/countries/td.m3u - ๐Ÿ‡จ๐Ÿ‡ฑ Chile258https://iptv-org.github.io/iptv/countries/cl.m3u + ๐Ÿ‡จ๐Ÿ‡ฑ Chile259https://iptv-org.github.io/iptv/countries/cl.m3u       Biobio3https://iptv-org.github.io/iptv/subdivisions/cl-bi.m3u       Coquimbo1https://iptv-org.github.io/iptv/subdivisions/cl-co.m3u       La Araucania2https://iptv-org.github.io/iptv/subdivisions/cl-ar.m3u @@ -364,7 +364,7 @@ Same thing, but split up into separate files:       Nuble3https://iptv-org.github.io/iptv/subdivisions/cl-nb.m3u       Valparaiso2https://iptv-org.github.io/iptv/subdivisions/cl-vs.m3u ๐Ÿ‡จ๐Ÿ‡ณ China634https://iptv-org.github.io/iptv/countries/cn.m3u - ๐Ÿ‡จ๐Ÿ‡ด Colombia131https://iptv-org.github.io/iptv/countries/co.m3u + ๐Ÿ‡จ๐Ÿ‡ด Colombia132https://iptv-org.github.io/iptv/countries/co.m3u       San Andres, Providencia y Santa Catalina1https://iptv-org.github.io/iptv/subdivisions/co-sap.m3u       Antioquia1https://iptv-org.github.io/iptv/subdivisions/co-ant.m3u       Atlantico1https://iptv-org.github.io/iptv/subdivisions/co-atl.m3u @@ -383,11 +383,11 @@ Same thing, but split up into separate files:       Valle del Cauca4https://iptv-org.github.io/iptv/subdivisions/co-vac.m3u ๐Ÿ‡ฐ๐Ÿ‡ฒ Comoros35https://iptv-org.github.io/iptv/countries/km.m3u ๐Ÿ‡จ๐Ÿ‡ฐ Cook Islands6https://iptv-org.github.io/iptv/countries/ck.m3u - ๐Ÿ‡จ๐Ÿ‡ท Costa Rica101https://iptv-org.github.io/iptv/countries/cr.m3u + ๐Ÿ‡จ๐Ÿ‡ท Costa Rica102https://iptv-org.github.io/iptv/countries/cr.m3u       Puntarenas1https://iptv-org.github.io/iptv/subdivisions/cr-p.m3u       San Jose2https://iptv-org.github.io/iptv/subdivisions/cr-sj.m3u ๐Ÿ‡ญ๐Ÿ‡ท Croatia28https://iptv-org.github.io/iptv/countries/hr.m3u - ๐Ÿ‡จ๐Ÿ‡บ Cuba63https://iptv-org.github.io/iptv/countries/cu.m3u + ๐Ÿ‡จ๐Ÿ‡บ Cuba64https://iptv-org.github.io/iptv/countries/cu.m3u ๐Ÿ‡จ๐Ÿ‡ผ Curacao11https://iptv-org.github.io/iptv/countries/cw.m3u ๐Ÿ‡จ๐Ÿ‡พ Cyprus41https://iptv-org.github.io/iptv/countries/cy.m3u ๐Ÿ‡จ๐Ÿ‡ฟ Czech Republic42https://iptv-org.github.io/iptv/countries/cz.m3u @@ -395,7 +395,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ฉ๐Ÿ‡ฐ Denmark29https://iptv-org.github.io/iptv/countries/dk.m3u ๐Ÿ‡ฉ๐Ÿ‡ฏ Djibouti40https://iptv-org.github.io/iptv/countries/dj.m3u ๐Ÿ‡ฉ๐Ÿ‡ฒ Dominica6https://iptv-org.github.io/iptv/countries/dm.m3u - ๐Ÿ‡ฉ๐Ÿ‡ด Dominican Republic203https://iptv-org.github.io/iptv/countries/do.m3u + ๐Ÿ‡ฉ๐Ÿ‡ด Dominican Republic204https://iptv-org.github.io/iptv/countries/do.m3u       Distrito Nacional (Santo Domingo)2https://iptv-org.github.io/iptv/subdivisions/do-01.m3u       El Seibo1https://iptv-org.github.io/iptv/subdivisions/do-08.m3u       La Altagracia2https://iptv-org.github.io/iptv/subdivisions/do-11.m3u @@ -406,11 +406,11 @@ Same thing, but split up into separate files:       Santiago1https://iptv-org.github.io/iptv/subdivisions/do-25.m3u       Valverde1https://iptv-org.github.io/iptv/subdivisions/do-27.m3u ๐Ÿ‡น๐Ÿ‡ฑ East Timor29https://iptv-org.github.io/iptv/countries/tl.m3u - ๐Ÿ‡ช๐Ÿ‡จ Ecuador89https://iptv-org.github.io/iptv/countries/ec.m3u + ๐Ÿ‡ช๐Ÿ‡จ Ecuador90https://iptv-org.github.io/iptv/countries/ec.m3u       Loja1https://iptv-org.github.io/iptv/subdivisions/ec-l.m3u       Orellana1https://iptv-org.github.io/iptv/subdivisions/ec-d.m3u ๐Ÿ‡ช๐Ÿ‡ฌ Egypt66https://iptv-org.github.io/iptv/countries/eg.m3u - ๐Ÿ‡ธ๐Ÿ‡ป El Salvador80https://iptv-org.github.io/iptv/countries/sv.m3u + ๐Ÿ‡ธ๐Ÿ‡ป El Salvador81https://iptv-org.github.io/iptv/countries/sv.m3u ๐Ÿ‡ฌ๐Ÿ‡ถ Equatorial Guinea9https://iptv-org.github.io/iptv/countries/gq.m3u ๐Ÿ‡ช๐Ÿ‡ท Eritrea8https://iptv-org.github.io/iptv/countries/er.m3u ๐Ÿ‡ช๐Ÿ‡ช Estonia22https://iptv-org.github.io/iptv/countries/ee.m3u @@ -422,7 +422,7 @@ Same thing, but split up into separate files:       Keski-Suomi1https://iptv-org.github.io/iptv/subdivisions/fi-08.m3u       Pohjanmaa1https://iptv-org.github.io/iptv/subdivisions/fi-12.m3u ๐Ÿ‡ซ๐Ÿ‡ท France196https://iptv-org.github.io/iptv/countries/fr.m3u - ๐Ÿ‡ฌ๐Ÿ‡ซ French Guiana8https://iptv-org.github.io/iptv/countries/gf.m3u + ๐Ÿ‡ฌ๐Ÿ‡ซ French Guiana9https://iptv-org.github.io/iptv/countries/gf.m3u ๐Ÿ‡ต๐Ÿ‡ซ French Polynesia7https://iptv-org.github.io/iptv/countries/pf.m3u ๐Ÿ‡น๐Ÿ‡ซ French Southern Territories8https://iptv-org.github.io/iptv/countries/tf.m3u ๐Ÿ‡ฌ๐Ÿ‡ฆ Gabon10https://iptv-org.github.io/iptv/countries/ga.m3u @@ -433,9 +433,9 @@ Same thing, but split up into separate files: ๐Ÿ‡ฌ๐Ÿ‡ท Greece98https://iptv-org.github.io/iptv/countries/gr.m3u ๐Ÿ‡ฌ๐Ÿ‡ฑ Greenland7https://iptv-org.github.io/iptv/countries/gl.m3u ๐Ÿ‡ฌ๐Ÿ‡ฉ Grenada6https://iptv-org.github.io/iptv/countries/gd.m3u - ๐Ÿ‡ฌ๐Ÿ‡ต Guadeloupe10https://iptv-org.github.io/iptv/countries/gp.m3u + ๐Ÿ‡ฌ๐Ÿ‡ต Guadeloupe11https://iptv-org.github.io/iptv/countries/gp.m3u ๐Ÿ‡ฌ๐Ÿ‡บ Guam6https://iptv-org.github.io/iptv/countries/gu.m3u - ๐Ÿ‡ฌ๐Ÿ‡น Guatemala115https://iptv-org.github.io/iptv/countries/gt.m3u + ๐Ÿ‡ฌ๐Ÿ‡น Guatemala116https://iptv-org.github.io/iptv/countries/gt.m3u       Escuintla2https://iptv-org.github.io/iptv/subdivisions/gt-05.m3u       Izabal1https://iptv-org.github.io/iptv/subdivisions/gt-18.m3u       Quiche1https://iptv-org.github.io/iptv/subdivisions/gt-14.m3u @@ -448,8 +448,8 @@ Same thing, but split up into separate files: ๐Ÿ‡ฌ๐Ÿ‡ณ Guinea11https://iptv-org.github.io/iptv/countries/gn.m3u ๐Ÿ‡ฌ๐Ÿ‡ผ Guinea-Bissau8https://iptv-org.github.io/iptv/countries/gw.m3u ๐Ÿ‡ฌ๐Ÿ‡พ Guyana5https://iptv-org.github.io/iptv/countries/gy.m3u - ๐Ÿ‡ญ๐Ÿ‡น Haiti33https://iptv-org.github.io/iptv/countries/ht.m3u - ๐Ÿ‡ญ๐Ÿ‡ณ Honduras109https://iptv-org.github.io/iptv/countries/hn.m3u + ๐Ÿ‡ญ๐Ÿ‡น Haiti34https://iptv-org.github.io/iptv/countries/ht.m3u + ๐Ÿ‡ญ๐Ÿ‡ณ Honduras110https://iptv-org.github.io/iptv/countries/hn.m3u ๐Ÿ‡ญ๐Ÿ‡ฐ Hong Kong21https://iptv-org.github.io/iptv/countries/hk.m3u ๐Ÿ‡ญ๐Ÿ‡บ Hungary84https://iptv-org.github.io/iptv/countries/hu.m3u ๐Ÿ‡ฎ๐Ÿ‡ธ Iceland16https://iptv-org.github.io/iptv/countries/is.m3u @@ -489,14 +489,14 @@ Same thing, but split up into separate files: ๐Ÿ‡ฎ๐Ÿ‡ช Ireland22https://iptv-org.github.io/iptv/countries/ie.m3u ๐Ÿ‡ฎ๐Ÿ‡ฑ Israel19https://iptv-org.github.io/iptv/countries/il.m3u ๐Ÿ‡ฎ๐Ÿ‡น Italy407https://iptv-org.github.io/iptv/countries/it.m3u - ๐Ÿ‡จ๐Ÿ‡ฎ Ivory Coast25https://iptv-org.github.io/iptv/countries/ci.m3u + ๐Ÿ‡จ๐Ÿ‡ฎ Ivory Coast26https://iptv-org.github.io/iptv/countries/ci.m3u ๐Ÿ‡ฏ๐Ÿ‡ฒ Jamaica10https://iptv-org.github.io/iptv/countries/jm.m3u ๐Ÿ‡ฏ๐Ÿ‡ต Japan19https://iptv-org.github.io/iptv/countries/jp.m3u ๐Ÿ‡ฏ๐Ÿ‡ด Jordan58https://iptv-org.github.io/iptv/countries/jo.m3u ๐Ÿ‡ฐ๐Ÿ‡ฟ Kazakhstan52https://iptv-org.github.io/iptv/countries/kz.m3u ๐Ÿ‡ฐ๐Ÿ‡ช Kenya16https://iptv-org.github.io/iptv/countries/ke.m3u ๐Ÿ‡ฐ๐Ÿ‡ฎ Kiribati6https://iptv-org.github.io/iptv/countries/ki.m3u - ๐Ÿ‡ฝ๐Ÿ‡ฐ Kosovo24https://iptv-org.github.io/iptv/countries/xk.m3u + ๐Ÿ‡ฝ๐Ÿ‡ฐ Kosovo23https://iptv-org.github.io/iptv/countries/xk.m3u ๐Ÿ‡ฐ๐Ÿ‡ผ Kuwait36https://iptv-org.github.io/iptv/countries/kw.m3u ๐Ÿ‡ฐ๐Ÿ‡ฌ Kyrgyzstan5https://iptv-org.github.io/iptv/countries/kg.m3u ๐Ÿ‡ฑ๐Ÿ‡ฆ Laos46https://iptv-org.github.io/iptv/countries/la.m3u @@ -516,11 +516,11 @@ Same thing, but split up into separate files: ๐Ÿ‡ฒ๐Ÿ‡ฑ Mali9https://iptv-org.github.io/iptv/countries/ml.m3u ๐Ÿ‡ฒ๐Ÿ‡น Malta14https://iptv-org.github.io/iptv/countries/mt.m3u ๐Ÿ‡ฒ๐Ÿ‡ญ Marshall Islands6https://iptv-org.github.io/iptv/countries/mh.m3u - ๐Ÿ‡ฒ๐Ÿ‡ถ Martinique10https://iptv-org.github.io/iptv/countries/mq.m3u + ๐Ÿ‡ฒ๐Ÿ‡ถ Martinique11https://iptv-org.github.io/iptv/countries/mq.m3u ๐Ÿ‡ฒ๐Ÿ‡ท Mauritania38https://iptv-org.github.io/iptv/countries/mr.m3u ๐Ÿ‡ฒ๐Ÿ‡บ Mauritius9https://iptv-org.github.io/iptv/countries/mu.m3u ๐Ÿ‡พ๐Ÿ‡น Mayotte8https://iptv-org.github.io/iptv/countries/yt.m3u - ๐Ÿ‡ฒ๐Ÿ‡ฝ Mexico215https://iptv-org.github.io/iptv/countries/mx.m3u + ๐Ÿ‡ฒ๐Ÿ‡ฝ Mexico217https://iptv-org.github.io/iptv/countries/mx.m3u       Aguascalientes1https://iptv-org.github.io/iptv/subdivisions/mx-agu.m3u       Baja California2https://iptv-org.github.io/iptv/subdivisions/mx-bcn.m3u       Chihuahua2https://iptv-org.github.io/iptv/subdivisions/mx-chh.m3u @@ -557,7 +557,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ณ๐Ÿ‡ฑ Netherlands202https://iptv-org.github.io/iptv/countries/nl.m3u ๐Ÿ‡ณ๐Ÿ‡จ New Caledonia6https://iptv-org.github.io/iptv/countries/nc.m3u ๐Ÿ‡ณ๐Ÿ‡ฟ New Zealand32https://iptv-org.github.io/iptv/countries/nz.m3u - ๐Ÿ‡ณ๐Ÿ‡ฎ Nicaragua76https://iptv-org.github.io/iptv/countries/ni.m3u + ๐Ÿ‡ณ๐Ÿ‡ฎ Nicaragua77https://iptv-org.github.io/iptv/countries/ni.m3u ๐Ÿ‡ณ๐Ÿ‡ช Niger9https://iptv-org.github.io/iptv/countries/ne.m3u ๐Ÿ‡ณ๐Ÿ‡ฌ Nigeria41https://iptv-org.github.io/iptv/countries/ng.m3u ๐Ÿ‡ณ๐Ÿ‡บ Niue6https://iptv-org.github.io/iptv/countries/nu.m3u @@ -571,16 +571,16 @@ Same thing, but split up into separate files:       Islamabad1https://iptv-org.github.io/iptv/subdivisions/pk-is.m3u ๐Ÿ‡ต๐Ÿ‡ผ Palau6https://iptv-org.github.io/iptv/countries/pw.m3u ๐Ÿ‡ต๐Ÿ‡ธ Palestine58https://iptv-org.github.io/iptv/countries/ps.m3u - ๐Ÿ‡ต๐Ÿ‡ฆ Panama75https://iptv-org.github.io/iptv/countries/pa.m3u + ๐Ÿ‡ต๐Ÿ‡ฆ Panama76https://iptv-org.github.io/iptv/countries/pa.m3u ๐Ÿ‡ต๐Ÿ‡ฌ Papua New Guinea6https://iptv-org.github.io/iptv/countries/pg.m3u - ๐Ÿ‡ต๐Ÿ‡พ Paraguay98https://iptv-org.github.io/iptv/countries/py.m3u + ๐Ÿ‡ต๐Ÿ‡พ Paraguay99https://iptv-org.github.io/iptv/countries/py.m3u       Alto Parana2https://iptv-org.github.io/iptv/subdivisions/py-10.m3u       Boqueron1https://iptv-org.github.io/iptv/subdivisions/py-19.m3u       Caaguazu1https://iptv-org.github.io/iptv/subdivisions/py-5.m3u       Central1https://iptv-org.github.io/iptv/subdivisions/py-11.m3u       Itapua1https://iptv-org.github.io/iptv/subdivisions/py-7.m3u       Presidente Hayes1https://iptv-org.github.io/iptv/subdivisions/py-15.m3u - ๐Ÿ‡ต๐Ÿ‡ช Peru232https://iptv-org.github.io/iptv/countries/pe.m3u + ๐Ÿ‡ต๐Ÿ‡ช Peru233https://iptv-org.github.io/iptv/countries/pe.m3u       Amazonas2https://iptv-org.github.io/iptv/subdivisions/pe-ama.m3u       Apurimac1https://iptv-org.github.io/iptv/subdivisions/pe-apu.m3u       Arequipa4https://iptv-org.github.io/iptv/subdivisions/pe-are.m3u @@ -596,7 +596,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ต๐Ÿ‡ณ Pitcairn Islands6https://iptv-org.github.io/iptv/countries/pn.m3u ๐Ÿ‡ต๐Ÿ‡ฑ Poland65https://iptv-org.github.io/iptv/countries/pl.m3u ๐Ÿ‡ต๐Ÿ‡น Portugal51https://iptv-org.github.io/iptv/countries/pt.m3u - ๐Ÿ‡ต๐Ÿ‡ท Puerto Rico77https://iptv-org.github.io/iptv/countries/pr.m3u + ๐Ÿ‡ต๐Ÿ‡ท Puerto Rico78https://iptv-org.github.io/iptv/countries/pr.m3u ๐Ÿ‡ถ๐Ÿ‡ฆ Qatar36https://iptv-org.github.io/iptv/countries/qa.m3u ๐Ÿ‡จ๐Ÿ‡ฌ Republic of the Congo10https://iptv-org.github.io/iptv/countries/cg.m3u       Brazzaville1https://iptv-org.github.io/iptv/subdivisions/cg-bzv.m3u @@ -605,11 +605,11 @@ Same thing, but split up into separate files: ๐Ÿ‡ท๐Ÿ‡บ Russia327https://iptv-org.github.io/iptv/countries/ru.m3u ๐Ÿ‡ท๐Ÿ‡ผ Rwanda14https://iptv-org.github.io/iptv/countries/rw.m3u ๐Ÿ‡ท๐Ÿ‡ช Rรฉunion9https://iptv-org.github.io/iptv/countries/re.m3u - ๐Ÿ‡ง๐Ÿ‡ฑ Saint Barthรฉlemy9https://iptv-org.github.io/iptv/countries/bl.m3u + ๐Ÿ‡ง๐Ÿ‡ฑ Saint Barthรฉlemy10https://iptv-org.github.io/iptv/countries/bl.m3u ๐Ÿ‡ธ๐Ÿ‡ญ Saint Helena8https://iptv-org.github.io/iptv/countries/sh.m3u ๐Ÿ‡ฐ๐Ÿ‡ณ Saint Kitts and Nevis7https://iptv-org.github.io/iptv/countries/kn.m3u ๐Ÿ‡ฑ๐Ÿ‡จ Saint Lucia6https://iptv-org.github.io/iptv/countries/lc.m3u - ๐Ÿ‡ฒ๐Ÿ‡ซ Saint Martin9https://iptv-org.github.io/iptv/countries/mf.m3u + ๐Ÿ‡ฒ๐Ÿ‡ซ Saint Martin10https://iptv-org.github.io/iptv/countries/mf.m3u ๐Ÿ‡ต๐Ÿ‡ฒ Saint Pierre and Miquelon5https://iptv-org.github.io/iptv/countries/pm.m3u ๐Ÿ‡ป๐Ÿ‡จ Saint Vincent and the Grenadines6https://iptv-org.github.io/iptv/countries/vc.m3u ๐Ÿ‡ผ๐Ÿ‡ธ Samoa6https://iptv-org.github.io/iptv/countries/ws.m3u @@ -640,7 +640,7 @@ Same thing, but split up into separate files:       Seoul-teukbyeolsi1https://iptv-org.github.io/iptv/subdivisions/kr-11.m3u       Ulsan-gwangyeoksi2https://iptv-org.github.io/iptv/subdivisions/kr-31.m3u ๐Ÿ‡ธ๐Ÿ‡ธ South Sudan8https://iptv-org.github.io/iptv/countries/ss.m3u - ๐Ÿ‡ช๐Ÿ‡ธ Spain321https://iptv-org.github.io/iptv/countries/es.m3u + ๐Ÿ‡ช๐Ÿ‡ธ Spain325https://iptv-org.github.io/iptv/countries/es.m3u       Asturias, Principado de2https://iptv-org.github.io/iptv/subdivisions/es-as.m3u       Madrid, Comunidad de6https://iptv-org.github.io/iptv/subdivisions/es-md.m3u       Murcia, Region de3https://iptv-org.github.io/iptv/subdivisions/es-mc.m3u @@ -684,7 +684,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ฆ๐Ÿ‡ช United Arab Emirates72https://iptv-org.github.io/iptv/countries/ae.m3u ๐Ÿ‡ฌ๐Ÿ‡ง United Kingdom192https://iptv-org.github.io/iptv/countries/uk.m3u       Wales2https://iptv-org.github.io/iptv/subdivisions/gb-wls.m3u - ๐Ÿ‡บ๐Ÿ‡ธ United States1780https://iptv-org.github.io/iptv/countries/us.m3u + ๐Ÿ‡บ๐Ÿ‡ธ United States1810https://iptv-org.github.io/iptv/countries/us.m3u       Alabama4https://iptv-org.github.io/iptv/subdivisions/us-al.m3u       Alaska2https://iptv-org.github.io/iptv/subdivisions/us-ak.m3u       Arizona13https://iptv-org.github.io/iptv/subdivisions/us-az.m3u @@ -737,11 +737,11 @@ Same thing, but split up into separate files:       Washington7https://iptv-org.github.io/iptv/subdivisions/us-wa.m3u       Wisconsin7https://iptv-org.github.io/iptv/subdivisions/us-wi.m3u       Wyoming1https://iptv-org.github.io/iptv/subdivisions/us-wy.m3u - ๐Ÿ‡บ๐Ÿ‡พ Uruguay72https://iptv-org.github.io/iptv/countries/uy.m3u + ๐Ÿ‡บ๐Ÿ‡พ Uruguay73https://iptv-org.github.io/iptv/countries/uy.m3u ๐Ÿ‡บ๐Ÿ‡ฟ Uzbekistan9https://iptv-org.github.io/iptv/countries/uz.m3u ๐Ÿ‡ป๐Ÿ‡บ Vanuatu6https://iptv-org.github.io/iptv/countries/vu.m3u ๐Ÿ‡ป๐Ÿ‡ฆ Vatican City13https://iptv-org.github.io/iptv/countries/va.m3u - ๐Ÿ‡ป๐Ÿ‡ช Venezuela105https://iptv-org.github.io/iptv/countries/ve.m3u + ๐Ÿ‡ป๐Ÿ‡ช Venezuela106https://iptv-org.github.io/iptv/countries/ve.m3u       Aragua2https://iptv-org.github.io/iptv/subdivisions/ve-d.m3u ๐Ÿ‡ป๐Ÿ‡ณ Vietnam126https://iptv-org.github.io/iptv/countries/vn.m3u ๐Ÿ‡ผ๐Ÿ‡ซ Wallis and Futuna6https://iptv-org.github.io/iptv/countries/wf.m3u @@ -775,8 +775,8 @@ Same thing, but split up into separate files: RegionChannelsPlaylist - Africa299https://iptv-org.github.io/iptv/regions/afr.m3u - Americas3551https://iptv-org.github.io/iptv/regions/amer.m3u + Africa300https://iptv-org.github.io/iptv/regions/afr.m3u + Americas3582https://iptv-org.github.io/iptv/regions/amer.m3u Asia-Pacific1934https://iptv-org.github.io/iptv/regions/apac.m3u Arab world348https://iptv-org.github.io/iptv/regions/arab.m3u Association of Southeast Asian Nations444https://iptv-org.github.io/iptv/regions/asean.m3u @@ -784,28 +784,28 @@ Same thing, but split up into separate files: Benelux243https://iptv-org.github.io/iptv/regions/benelux.m3u Caribbean201https://iptv-org.github.io/iptv/regions/carib.m3u Central Asia60https://iptv-org.github.io/iptv/regions/cas.m3u - Central and Eastern Europe981https://iptv-org.github.io/iptv/regions/cee.m3u + Central and Eastern Europe969https://iptv-org.github.io/iptv/regions/cee.m3u Central America187https://iptv-org.github.io/iptv/regions/cenamer.m3u Commonwealth of Independent States455https://iptv-org.github.io/iptv/regions/cis.m3u - Europe, the Middle East and Africa3659https://iptv-org.github.io/iptv/regions/emea.m3u - Europe3090https://iptv-org.github.io/iptv/regions/eur.m3u - Hispanic America1358https://iptv-org.github.io/iptv/regions/hispam.m3u - Latin America and the Caribbean1652https://iptv-org.github.io/iptv/regions/lac.m3u - Latin America1636https://iptv-org.github.io/iptv/regions/latam.m3u + Europe, the Middle East and Africa3653https://iptv-org.github.io/iptv/regions/emea.m3u + Europe3083https://iptv-org.github.io/iptv/regions/eur.m3u + Hispanic America1359https://iptv-org.github.io/iptv/regions/hispam.m3u + Latin America and the Caribbean1653https://iptv-org.github.io/iptv/regions/lac.m3u + Latin America1638https://iptv-org.github.io/iptv/regions/latam.m3u Maghreb55https://iptv-org.github.io/iptv/regions/maghreb.m3u Middle East and North Africa611https://iptv-org.github.io/iptv/regions/mena.m3u Middle East567https://iptv-org.github.io/iptv/regions/mideast.m3u - Northern America1905https://iptv-org.github.io/iptv/regions/nam.m3u + Northern America1935https://iptv-org.github.io/iptv/regions/nam.m3u Northern Europe122https://iptv-org.github.io/iptv/regions/neur.m3u - North America2434https://iptv-org.github.io/iptv/regions/noram.m3u + North America2465https://iptv-org.github.io/iptv/regions/noram.m3u Nordics86https://iptv-org.github.io/iptv/regions/nord.m3u Oceania57https://iptv-org.github.io/iptv/regions/oce.m3u South Asia565https://iptv-org.github.io/iptv/regions/sas.m3u Southeast Asia467https://iptv-org.github.io/iptv/regions/sea.m3u - Southern Europe1061https://iptv-org.github.io/iptv/regions/ser.m3u + Southern Europe1065https://iptv-org.github.io/iptv/regions/ser.m3u South America1117https://iptv-org.github.io/iptv/regions/southam.m3u - Sub-Saharan Africa231https://iptv-org.github.io/iptv/regions/ssa.m3u - West Africa122https://iptv-org.github.io/iptv/regions/wafr.m3u + Sub-Saharan Africa232https://iptv-org.github.io/iptv/regions/ssa.m3u + West Africa123https://iptv-org.github.io/iptv/regions/wafr.m3u Western Europe925https://iptv-org.github.io/iptv/regions/wer.m3u From edffc574b64d9ddc2a80be95c52edab36c889d89 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Tue, 20 Jun 2023 09:56:34 +0300 Subject: [PATCH 06/61] Create check.yml --- .github/workflows/check.yml | 38 +++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/check.yml diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml new file mode 100644 index 0000000000..665c1f9679 --- /dev/null +++ b/.github/workflows/check.yml @@ -0,0 +1,38 @@ +name: check +on: + workflow_dispatch: + pull_request: + types: [opened, synchronize, reopened, edited] +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} + cancel-in-progress: true +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 2 + - uses: tj-actions/changed-files@v35 + id: files + with: + files: streams/*.m3u + - uses: actions/setup-node@v3 + if: ${{ !env.ACT && steps.files.outputs.any_changed == 'true' }} + with: + node-version: 16 + cache: 'npm' + - name: download data from api + if: steps.files.outputs.any_changed == 'true' + run: | + mkdir -p scripts/data + curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json + curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json + - name: install dependencies + if: steps.files.outputs.any_changed == 'true' + run: npm install + - name: validate + if: steps.files.outputs.any_changed == 'true' + run: | + npm run playlist:lint -- ${{ steps.files.outputs.all_changed_files }} + npm run playlist:validate -- ${{ steps.files.outputs.all_changed_files }} \ No newline at end of file From 4547d02ff666d4b34b2ae6db6e190db0c24d6f0e Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 11:42:42 +0200 Subject: [PATCH 07/61] Update lk.m3u Closes #13252 Closes #13253 Closes #13254 Closes #13255 Closes #13256 Closes #13257 --- streams/lk.m3u | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/streams/lk.m3u b/streams/lk.m3u index 11eeb066f3..adffaf30a8 100644 --- a/streams/lk.m3u +++ b/streams/lk.m3u @@ -9,3 +9,17 @@ http://live.siyathatv.lk:19904/hls/siyatha_tv.m3u8 https://jk3lz8xklw79-hls-live.5centscdn.com/efm/098f6bcd4621d373cade4e832627b4f6.sdp/playlist.m3u8 #EXTINF:-1 tvg-id="VerbumTV.lk",Verbum TV (414p) [Not 24/7] https://verbumtv.livebox.co.in/verbumtvhls/live.m3u8 +#EXTINF:-1 tvg-id="TVDerana.lk",TV Derana (1080p) [Not 24/7] +https://ythls.onrender.com/channel/UCbkMFGQ_RWIf0OiYeOpf6Ng.m3u8 +#EXTINF:-1 tvg-id="Rupavahini.lk",Rupavahini (1080p) [Not 24/7] +https://ythls.onrender.com/channel/UCi0cdSwyCHgPa95_nX457pw.m3u8 +#EXTINF:-1 tvg-id="Rupavahini.lk",Rupavahini (480p) +http://dammikartmp.tulix.tv/slrc1/slrc1/playlist.m3u8 +#EXTINF:-1 tvg-id="VasanthamTV.lk",Vasantham TV (720p) +https://j78dp2pnlq5r-hls-live.comcities.net/ITNDigital/20a317b0496a4930b375290505e5d628.sdp/playlist_dvr.m3u8 +#EXTINF:-1 tvg-id="HarithaTV.lk",Haritha TV (1080p) [Not 24/7] +https://ythls.onrender.com/channel/UCSe8uUIt3EM83y9N0WHSx_w.m3u8 +#EXTINF:-1 tvg-id="TheBuddhist.lk",The Buddhist (720p) [Not 24/7] +https://ythls.onrender.com/channel/UC37lrcLuvJmWDoooxwiPXXA.m3u8 +#EXTINF:-1 tvg-id="ShraddhaTV.lk",Shraddha TV (720p) [Not 24/7] +https://ythls.onrender.com/channel/UC1WREaxq8LRhdOOmzSFg2pA.m3u8 From 9c6c7343bee8f5c8520827fcaa0afe20fd2f1312 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 11:57:24 +0200 Subject: [PATCH 08/61] Update pe_opencaster & ve.m3u Delete TVes link as it's a channel from Venezuela, nothing related to Peru. --- streams/pe_opencaster.m3u | 2 -- 1 file changed, 2 deletions(-) diff --git a/streams/pe_opencaster.m3u b/streams/pe_opencaster.m3u index 42c54f352c..fcd718794a 100644 --- a/streams/pe_opencaster.m3u +++ b/streams/pe_opencaster.m3u @@ -1,3 +1 @@ #EXTM3U -#EXTINF:-1 tvg-id="TVes.ve",TVes [Not 24/7] -https://rundle.deta.dev/hls/LIVE$TVes.ve/6.m3u8/Level(19012010)?end=END&start=LIVE From 5e1a8591ef5770730cd7422e22c055534afa48f4 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:00:22 +0200 Subject: [PATCH 09/61] Update ve.m3u Closes #13273 --- streams/ve.m3u | 2 ++ 1 file changed, 2 insertions(+) diff --git a/streams/ve.m3u b/streams/ve.m3u index 765d286c2f..d129113a92 100644 --- a/streams/ve.m3u +++ b/streams/ve.m3u @@ -102,3 +102,5 @@ https://ott3.streann.com/loadbalancer/services/public/channels/5d23d5882cdce61da https://vcp.myplaytv.com/petrotv/petrotv/playlist.m3u8 #EXTINF:-1 tvg-id="TNORadio.ve",TNO Radio (720p) https://stmv1.srvstm.com/tnovideo1/tnovideo1/playlist.m3u8 +EXTINF:-1 tvg-id="TVes.ve",TVes (1080p) [Not 24/7] +https://ls.tves.gob.ve/hls/tves.m3u8 From 3bdff6abc5c337ff77bd6302a966d79770cf22b3 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:05:34 +0300 Subject: [PATCH 10/61] Update db.js --- scripts/core/db.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/core/db.js b/scripts/core/db.js index 3cde1161da..6d016e8169 100644 --- a/scripts/core/db.js +++ b/scripts/core/db.js @@ -1,8 +1,11 @@ const nedb = require('nedb-promises') +const fs = require('fs-extra') const file = require('./file') const DB_DIR = process.env.DB_DIR || './scripts/tmp/database' +fs.ensureDirSync(DB_DIR) + class Database { constructor(filepath) { this.filepath = filepath From 03dca6338a7b943615d0b25626bf4dc3149ac765 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:15:44 +0300 Subject: [PATCH 11/61] Update package.json --- .github/workflows/update.yml | 53 ++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/workflows/update.yml diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000000..a02ed59d80 --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,53 @@ +name: update +on: + workflow_dispatch: + schedule: + - cron: '0 */6 * * *' +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: tibdex/github-app-token@v1 + if: ${{ !env.ACT }} + id: create-app-token + with: + app_id: ${{ secrets.APP_ID }} + private_key: ${{ secrets.APP_PRIVATE_KEY }} + - uses: actions/checkout@v3 + if: ${{ env.ACT }} + - uses: actions/checkout@v3 + if: ${{ !env.ACT }} + with: + token: ${{ steps.create-app-token.outputs.token }} + - uses: actions/setup-node@v3 + with: + node-version: 18 + cache: 'npm' + - name: install dependencies + run: npm install + - name: load api data + run: npm run api:load + - name: validate playlists + run: | + npm run playlist:lint + npm run playlist:validate + - name: setup database + run: npm run db:create + - name: generate playlists + run: npm run playlist:generate + - name: generate streams.json + run: npm run api:generate + - name: update readme.md + run: npm run readme:update + - name: deploy to github pages + if: ${{ !env.ACT }} + run: GITHUB_TOKEN=${{ steps.create-app-token.outputs.token }} npm run deploy + - name: commit changes + if: ${{ !env.ACT }} + run: | + git config user.name "iptv-bot[bot]" + git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" + git add README.md + git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify + git status + git push From 04eb669a33c3d3945b14c495e64ff8343c0562a0 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:15:46 +0300 Subject: [PATCH 12/61] Update package.json --- package.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package.json b/package.json index 8326ba89c1..04d2ec1eea 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,8 @@ { "name": "iptv", "scripts": { + "act:check": "act pull_request -W .github/workflows/check.yml", + "act:update": "act workflow_dispatch -W .github/workflows/update.yml", "api:load": "./scripts/commands/api/load.sh", "api:generate": "node scripts/commands/api/generate.js", "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git -x", From 7a60e9b27dcd26b2efdd54cf5687addede94e5be Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:38:40 +0200 Subject: [PATCH 13/61] Update fi.m3u Closes #13223 --- streams/fi.m3u | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/streams/fi.m3u b/streams/fi.m3u index 7960c18c11..76a664df91 100644 --- a/streams/fi.m3u +++ b/streams/fi.m3u @@ -15,11 +15,11 @@ https://live-fi.tvkaista.net/kutonen/live.m3u8 https://live-fi.tvkaista.net/mtv3/live.m3u8 #EXTINF:-1 tvg-id="NarTV.fi",NรคrTV (360p) https://streaming.nartv.fi/live/ngrp:NAR_TV.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NavahangTV.fi",Navahang TV +#EXTINF:-1 tvg-id="NavahangTV.fi",Navahang TV (720p) https://hls.navahang.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="NebesaTV7.ru",ะะตะฑะตัะฐ ะขะ’7 (720p) https://vod.tv7.fi/tv7-ru/tv7-ru.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="NopolaNews.fi",Nopola News +#EXTINF:-1 tvg-id="NopolaNews.fi",Nopola News (1080p) https://virta2.nopolanews.fi:8443/live/smil:Stream1.smil/playlist.m3u8 #EXTINF:-1 tvg-id="Sub.fi",Sub https://live-fi.tvkaista.net/sub/live.m3u8 @@ -37,3 +37,11 @@ https://yletv.akamaized.net/hls/live/622367/yletvteemafemfin/playlist.m3u8 https://yletv.akamaized.net/hls/live/622365/yletv1fin/playlist.m3u8 #EXTINF:-1 tvg-id="YleTV2.fi",YLE TV 2 (720p) [Geo-blocked] https://yletv.akamaized.net/hls/live/622366/yletv2fin/playlist.m3u8 +#EXTINF:-1 tvg-id="MTVUutiset.fi",MTV Uutiset (720p) +https://live.streaming.a2d.tv/asset/20025962.isml/.m3u8 +#EXTINF:-1 tvg-id="AlfaTV.fi",IRR-TV (576p) [Not 24/7] +https://irrtv.digitacdn.net/live/_definst_/irrtv/amlst:irrtv.amlst/playlist.m3u8 +#EXTINF:-1 tvg-id="ArvasTV.fi",ร…rvasTV (1080p) [Not 24/7] +https://ythls.onrender.com/channel/UC__baaN73Zp5Hn0N_d4BTdg.m3u8 +#EXTINF:-1 tvg-id="WorTV.fi",WรถrTV (1080p) [Not 24/7] +https://ythls.onrender.com/channel/UCQ36NJ8-XNhBDvSSsh8gS2Q.m3u8 From 5d9d515a609772372bf8d04c86ad7fcbc92fb42a Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:00:13 +0200 Subject: [PATCH 14/61] Update id.m3u Closes #13230 Closes #13231 Closes #13232 Closes #13233 Closes #13234 Closes #13235 --- streams/id.m3u | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/streams/id.m3u b/streams/id.m3u index 0e02beac7d..99c7e11292 100644 --- a/streams/id.m3u +++ b/streams/id.m3u @@ -12,14 +12,14 @@ https://tv.rodja.live/aliman/ngrp:HD_all/playlist.m3u8 http://210.210.155.37/qwr9ew/s/s07/index1.m3u8 #EXTINF:-1 tvg-id="ANTV.id",ANTV (1080p) [Geo-blocked] https://tv.yankie.my.id/cdn/antv.m3u8 -#EXTINF:-1 tvg-id="ArekTV.id",Arek TV +#EXTINF:-1 tvg-id="ArekTV.id",Arek TV (720p) https://ams.juraganstreaming.com:5443/LiveApp/streams/arektv.m3u8 #EXTINF:-1 tvg-id="AshiilTV.id" user-agent="Mozilla/5.0 (X11; Linux x86_64)",Ashiil TV (360p) [Geo-blocked] #EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux x86_64) https://h1.intechmedia.net/intech/ch2.m3u8 #EXTINF:-1 tvg-id="BaliTV.id",Bali TV (720p) [Geo-blocked] https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(8e867ae0-b2c0-4968-9f60-a11aee8c0987)/index.m3u8 -#EXTINF:-1 tvg-id="BandungTV.id",Bandung TV +#EXTINF:-1 tvg-id="BandungTV.id",Bandung TV (360p) http://202.150.153.254:65500/bandungtvWEBSITE.m3u8 #EXTINF:-1 tvg-id="BantenTV.id",Banten TV (720p) [Not 24/7] https://5bf7b725107e5.streamlock.net/bantentv/bantentv/playlist.m3u8 @@ -42,11 +42,11 @@ https://h1.intechmedia.net/intech/ch58.m3u8 #EXTINF:-1 tvg-id="BinBazTV.id" user-agent="Mozilla/5.0 (X11; Linux x86_64)",Bin Baz TV (360p) [Geo-blocked] #EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux x86_64) https://h1.intechmedia.net/intech/ch22.m3u8 -#EXTINF:-1 tvg-id="BiznetAdventure.id",Biznet Adventure +#EXTINF:-1 tvg-id="BiznetAdventure.id",Biznet Adventure (720p) http://livestream.biznetvideo.net/biznet_adventure/smil:adventure.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="BiznetLifestyle.id",Biznet Lifestyle +#EXTINF:-1 tvg-id="BiznetLifestyle.id",Biznet Lifestyle (480p) http://livestream.biznetvideo.net/biznet_lifestyle/smil:lifestyle.smil/chunklist_w109806785_b2256000_slen_tkYml6a2V5bGl2ZXN0YXJ0dGltZT0wJmJpemtleWxpdmVlbmR0aW1lPTAmYml6a2V5bGl2ZUN1c3RvbVBhcmFtZXRlcj1teVBhcmFtZXRlciZiaXprZXlsaXZlaGFzaD1qZ0RLUGNsY0dkWmZ2cklEeGZNZHBUN3Zfc3JNV0NidWJudEdvOWNDWVdwY0JCUWFsTWxMUXhIc3dtNDNQYlZS.m3u8 -#EXTINF:-1 tvg-id="BiznetKids.id",Biznet Kids +#EXTINF:-1 tvg-id="BiznetKids.id",Biznet Kids (480p) http://livestream.biznetvideo.net/biznet_kids/smil:kids.smil/chunklist_w417362857_b2256000_slen_tkYml6a2V5bGl2ZXN0YXJ0dGltZT0wJmJpemtleWxpdmVlbmR0aW1lPTAmYml6a2V5bGl2ZUN1c3RvbVBhcmFtZXRlcj1teVBhcmFtZXRlciZiaXprZXlsaXZlaGFzaD1xQXJpMU0yeHVfTUFsbkh3VlJ0T3MyNGxSOFlfSFNEaWpOMkNSTmdoaWZVbGxoWXFRU0Rsa2QwcUU4Q2tad3hD.m3u8 #EXTINF:-1 tvg-id="BMSTV.id",Banyumas TV (720p) [Geo-blocked] https://v2.siar.us/bmstv/livestream/playlist.m3u8 @@ -58,7 +58,7 @@ https://e1.siar.us/badartv/live/playlist.m3u8 https://b1news.beritasatumedia.com/Beritasatu/B1News_manifest.m3u8 #EXTINF:-1 tvg-id="BungoTV.id",Bungo TV (480p) [Not 24/7] https://5bf7b725107e5.streamlock.net/bungotv/bungotv/playlist.m3u8 -#EXTINF:-1 tvg-id="CelebesTV.id",Celebes Tv +#EXTINF:-1 tvg-id="CelebesTV.id",Celebes TV [Not 24/7] https://ams.juraganstreaming.com:5443/LiveApp/streams/celebesmedia.m3u8 #EXTINF:-1 tvg-id="Channel4U.id",Channel 4U (720p) [Geo-blocked] https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(81b456ab-b398-4d35-ae05-9be0a173ad71)/index.m3u8 @@ -92,7 +92,7 @@ https://wowza.convergen.co/gprtv/myLive/playlist.m3u8 #EXTINF:-1 tvg-id="HijrahTV.id" user-agent="Mozilla/5.0 (X11; Linux x86_64)",Hijrah TV (360p) [Geo-blocked] #EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux x86_64) https://h1.intechmedia.net/intech/ch8.m3u8 -#EXTINF:-1 tvg-id="HopeChannelIndonesia.id",Hope Channel Indonesia [Not 24/7] +#EXTINF:-1 tvg-id="HopeChannelIndonesia.id",Hope Channel Indonesia (1080p) [Not 24/7] https://ythls.onrender.com/channel/UCTR1wO3hnYzBs0BJIQAyZKw.m3u8 #EXTINF:-1 tvg-id="HumaBetangTV.id",Huma Betang TV (720p) [Not 24/7] https://v3.siar.us/humabetangtv/live/playlist.m3u8 @@ -149,7 +149,7 @@ https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(9430f215-8ccb-43 #EXTINF:-1 tvg-id="MediaSunnahAceh.id" user-agent="Mozilla/5.0 (X11; Linux x86_64)",Media Sunnah Aceh [Geo-blocked] #EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux x86_64) https://h1.intechmedia.net/intech/ch23.m3u8 -#EXTINF:-1 tvg-id="MediaSunnahAceh.id",Media Sunnah Aceh [Not 24/7] +#EXTINF:-1 tvg-id="MediaSunnahAceh.id",Media Sunnah Aceh (720p) [Not 24/7] https://ythls.onrender.com/channel/UCem4zrffr93cp-o8cOPDhdQ.m3u8 #EXTINF:-1 tvg-id="MetroGlobeNetwork.id",Metro Globe Network (1080p) [Not 24/7] https://edge.medcom.id/live-edge/smil:mgnch.smil/playlist.m3u8 @@ -163,7 +163,7 @@ https://tv.rodja.live/tasik/ngrp:mgitv_all/playlist.m3u8 https://cdn.gunadarma.ac.id/streams/mgstv/ingestmgstv.m3u8 #EXTINF:-1 tvg-id="MQTV.id",MQTV (720p) [Not 24/7] https://5bf7b725107e5.streamlock.net/mqtv/mqtv/playlist.m3u8 -#EXTINF:-1 tvg-id="MTATV.id",mta tv (720p) [Geo-blocked] +#EXTINF:-1 tvg-id="MTATV.id",MTA TV (720p) [Geo-blocked] https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(b3673fde-4acd-4f1d-95a5-a204d62545ac)/index.m3u8 #EXTINF:-1 tvg-id="MuadzTV.id" user-agent="Mozilla/5.0 (X11; Linux x86_64)",Muadz (360p) [Geo-blocked] #EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux x86_64) @@ -217,7 +217,7 @@ https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(41869351-4a9c-4e #EXTINF:-1 tvg-id="RasyaadTV.id" user-agent="Mozilla/5.0 (X11; Linux x86_64)",Rasyaad TV (360p) [Geo-blocked] #EXTVLCOPT:http-user-agent=Mozilla/5.0 (X11; Linux x86_64) https://h1.intechmedia.net/intech/ch6.m3u8 -#EXTINF:-1 tvg-id="RasyaadTV.id",Rasyaad TV [Not 24/7] +#EXTINF:-1 tvg-id="RasyaadTV.id",Rasyaad TV (720p) [Not 24/7] https://ythls.onrender.com/channel/UCotIkyDFzztbSm21GNGsK9w.m3u8 #EXTINF:-1 tvg-id="RCTV.id",RCTV (720p) [Not 24/7] http://122.248.43.138:1935/ch9/myStream/playlist.m3u8 @@ -258,8 +258,6 @@ https://v2.siar.us/tatv/live.sdp/playlist.m3u8 http://wms.klikhost.com:1935/tegartv/tegartv/playlist.m3u8 #EXTINF:-1 tvg-id="TegarTVLampung.id",Tegar TV Lampung (480p) [Not 24/7] [Geo-blocked] https://5bf7b725107e5.streamlock.net/tegartv/tegartv/playlist.m3u8 -#EXTINF:-1 tvg-id="TheIndonesiaChannel.id",The Indonesia Channel -https://cdn3.wowza.com/1/NEtzTTZ4c1FTTUN2/SkJBbVJs/hls/live/playlist.m3u8 #EXTINF:-1 tvg-id="TheIndonesiaChannel.id",The Indonesia Channel (720p) [Geo-blocked] https://cdn-telkomsel-01.akamaized.net/Content/HLS/Live/channel(20baf7aa-fd51-480f-87b3-dc4198090e86)/index.m3u8 #EXTINF:-1 tvg-id="Trans7.id",Trans7 (720p) @@ -524,3 +522,15 @@ https://5bf7b725107e5.streamlock.net/btv/btv/playlist.m3u8 https://wowza.convergen.co/ctv/ctv.stream/playlist.m3u8 #EXTINF:-1 tvg-id="DhohoTV.id",Dhoho TV (720p) https://dhohotv.siar.us/dhohotv/live/playlist.m3u8 +#EXTINF:-1 tvg-id="RadarTasikmalayaTV.id",Radar Tasikmalaya TV (720p) [Not 24/7] +http://103.140.188.211:1935/radartv/myStream/playlist.m3u8 +#EXTINF:-1 tvg-id="TVTempo.id",TV Tempo (1080p) +https://app-etslive-2.vidio.com/live/7946/master.m3u8 +#EXTINF:-1 tvg-id="MentariTV.id",Mentari TV (720p) +https://app-etslive-2.vidio.com/live/8237/master.m3u8 +#EXTINF:-1 tvg-id="WesalTV.id",Wesal TV (720p) [Not 24/7] +https://ams.juraganstreaming.com:5443/LiveApp/streams/wesaltv.m3u8 +#EXTINF:-1 tvg-id="TawafTV.id",Tawaf TV (720p) +https://app-etslive-2.vidio.com/live/12607/master.m3u8 +#EXTINF:-1 tvg-id="DuniaGamesTV.id",Dunia Games TV (720p) [Not 24/7] [Geo-blocked] +https://cdn01-telkomsel-01.akamaized.net/Content/HLS/Live/channel(6854467f-52fe-48ee-9822-00233c678709)/index.m3u8 From ac2e43258f315d20bb86af8032b539abf621ba31 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:30:44 +0200 Subject: [PATCH 15/61] Update cd.m3u --- streams/cd.m3u | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/streams/cd.m3u b/streams/cd.m3u index 8e300b5c11..3f081cf4a7 100644 --- a/streams/cd.m3u +++ b/streams/cd.m3u @@ -5,7 +5,15 @@ http://51.254.199.122:8080/bossbrothersTV/index.m3u8 https://radio.congoplanet.com/Congo_Planet_TV.sdp/Congo_Planet_TV/playlist.m3u8 #EXTINF:-1 tvg-id="",Congo Planet Television Pop (1080p) https://radio.congoplanet.com/Congo_Planet_TV_Pop.sdp/Congo_Planet_TV_Pop/playlist.m3u8 -#EXTINF:-1 tvg-id="",RLPRO TV (480p) +#EXTINF:-1 tvg-id="RLPROTV.cd",RL PRO TV (480p) https://rlprotv.vedge.infomaniak.com/livecast/ik:rlprotv/manifest.m3u8 -#EXTINF:-1 tvg-id="",EVI TV (720p) +#EXTINF:-1 tvg-id="EVITV.cd",EVI TV (720p) https://stream.telepack.net/evitv/index.m3u8 +#EXTINF:-1 tvg-id="VeriteTV.uk",Vรฉritรฉ TV (720p) [Not 24/7] +http://51.254.199.122:8080/veriteTV/index.m3u8 +#EXTINF:-1 tvg-id="PSTVHD.cd",PSTV HD (480p) [Not 24/7] +http://51.254.199.122:8080/PSTV/index.m3u8 +#EXTINF:-1 tvg-id="MikubaTV.cd",Mikuba TV (480p) [Not 24/7] +http://51.254.199.122:8080/MIKUBATV/index.m3u8 +#EXTINF:-1 tvg-id="RTNC.cd",RTNC (1080p) [Not 24/7] +https://ythls.onrender.com/channel/UCip2DNtZUPC82a_xLLTFcgA.m3u8 From ea2cba688836bb5da84632d13008bc833e5e6a47 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:57:05 +0200 Subject: [PATCH 16/61] Update cg.m3u --- streams/cg.m3u | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/streams/cg.m3u b/streams/cg.m3u index 61a487c9c7..cb23536b31 100644 --- a/streams/cg.m3u +++ b/streams/cg.m3u @@ -1,5 +1,9 @@ #EXTM3U -#EXTINF:-1 tvg-id="Africanews.cg",Africanews (720p) +#EXTINF:-1 tvg-id="Africanews.cg",Africanews English (720p) [Not 24/7] https://ythls.onrender.com/channel/UC1_E8NeF5QHY2dtdLRBCCLA.m3u8 +#EXTINF:-1 tvg-id="",Africanews Franรงais (720p) [Not 24/7] +https://ythls.onrender.com/channel/UC25EuGAePOPvPrUA5cmu3dQ.m3u8 #EXTINF:-1 tvg-id="NazalisHDTV.cg",Nazali's HDTV (1080p) http://194.163.135.238:5080/WebRTCApp/streams/590264631485484547459082.m3u8 +#EXTINF:-1 tvg-id="ObossoTV.cg",Obosso TV (1080p) [Not 24/7] +https://obossobroadcast.fr/otv/obossotv/playlist.m3u8 From e57f7f5d8a46bd30e980ed8f0902d0a0f1bdb1f0 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 14:03:21 +0200 Subject: [PATCH 17/61] Update gm.m3u --- streams/gm.m3u | 2 ++ 1 file changed, 2 insertions(+) diff --git a/streams/gm.m3u b/streams/gm.m3u index 326e0d125d..5e3be1ef8a 100644 --- a/streams/gm.m3u +++ b/streams/gm.m3u @@ -1,3 +1,5 @@ #EXTM3U #EXTINF:-1 tvg-id="QTVGambia.gm",QTV Gambia (720p) [Not 24/7] https://player.qtv.gm/hls/live.stream.m3u8 +#EXTINF:-1 tvg-id="EyeAfricaTV.gm",Eye Africa TV (720p) [Not 24/7] +https://ythls.onrender.com/channel/UCLYggzo8r31yYj3mjZDrSrA.m3u8 From 017256248ba5b0d82fca1d2a7d24efce66a1f884 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Wed, 21 Jun 2023 14:30:06 +0200 Subject: [PATCH 18/61] Update mx.m3u Closes #13188 Closes #13189 --- streams/mx.m3u | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/streams/mx.m3u b/streams/mx.m3u index 354ca13426..b149a01397 100644 --- a/streams/mx.m3u +++ b/streams/mx.m3u @@ -14,11 +14,11 @@ https://mdstrm.com/live-stream-playlist/609b243156cca108312822a6.m3u8 #EXTINF:-1 tvg-id="B15.mx",B15 (1080p) https://60ed5b6d0df78.streamlock.net:1936/envio2/envio2/playlist.m3u8 #EXTINF:-1 tvg-id="Canal5.mx",Canal 5 (480p) -http://45.174.77.243:8000/play/a0fl/index.m3u8 +http://190.61.102.67:2000/play/a038/index.m3u8 #EXTINF:-1 tvg-id="Canal10Cancun.mx",Canal 10 Cancรบn (720p) [Not 24/7] http://stream2.dynalias.com:1935/live/tvlive1/playlist.m3u8 -#EXTINF:-1 tvg-id="Canal22Nacional.mx",Canal 22 Nacional (1080p) -https://60ed5b6d0df78.streamlock.net:1936/cuarto/cuarto/playlist.m3u8 +#EXTINF:-1 tvg-id="Canal22Nacional.mx",Canal 22 Nacional (720p) [Geo-blocked] +http://mc-qs.lanesh4d0w.tech/iptv-query?streaming-ip=https://conceptoweb-studio.com/radio/video/canal22/ #EXTINF:-1 tvg-id="Canal26.mx",Canal 26 Aguascalientes (1080p) https://60417ddeaf0d9.streamlock.net/telemetrika3/smil:telemetrika3.smil/playlist.m3u8 #EXTINF:-1 tvg-id="Canal28.mx",Canal 28 (720p) [Not 24/7] @@ -113,7 +113,7 @@ https://video1.getstreamhosting.com:1936/8172/8172/playlist.m3u8 https://5e50264bd6766.streamlock.net/rtg/videortg/playlist.m3u8 #EXTINF:-1 tvg-id="RTQQueretaro.mx",RTQ Queretaro (360p) [Not 24/7] http://wms.tecnoxia.com:1935/rytqrolive/rytqrolive/master.m3u8 -#EXTINF:-1 tvg-id="SintesisTV.mx",Sintesis TV +#EXTINF:-1 tvg-id="SintesisTV.mx",Sรญntesis TV (480p) https://raw.githubusercontent.com/azgaresncf/strm2hls/main/streams/sintesis_tv.m3u8 #EXTINF:-1 tvg-id="SistemaMichoacanodeTV.mx",Sistema Michoacano de TV (1080p) https://60ed5b6d0df78.streamlock.net:1936/enlinea/enlinea/playlist.m3u8 @@ -121,8 +121,8 @@ https://60ed5b6d0df78.streamlock.net:1936/enlinea/enlinea/playlist.m3u8 https://5fa5de1a545ae.streamlock.net/4982/4982/playlist.m3u8 #EXTINF:-1 tvg-id="SuperChannel12.mx",Super Channel 12 (1080p) https://servilive.com:3263/live/channel12live.m3u8 -#EXTINF:-1 tvg-id="TeleFormula.mx",TeleFรณrmula [Geo-blocked] -https://mdstrm.com/live-stream-playlist/61e1e088d04d7744686afc42.m3u8 +#EXTINF:-1 tvg-id="TeleFormula.mx",TeleFรณrmula (720p) [Geo-blocked] +https://mdstrm.com/live-stream-playlist/62f2c855f7981b5a5a2d8763.m3u8 #EXTINF:-1 tvg-id="TelemarCampeche.mx",Telemar Campeche (720p) [Geo-blocked] https://5e50264bd6766.streamlock.net/telemarcampeche/videotelemarcampeche/playlist.m3u8 #EXTINF:-1 tvg-id="TeleplaySureste.mx",Teleplay Sureste (360p) @@ -235,13 +235,15 @@ https://5ca9af4645e15.streamlock.net/zacatecas/videozacatecas/playlist.m3u8 https://channel07-notusa.akamaized.net/hls/live/2036971-b/event01/index.m3u8 #EXTINF:-1 tvg-id="",TELE SISTEMA CANAL 9 (486p) [Geo-blocked] http://k4.usastreams.com/ARBtv/ARBtv/playlist.m3u8 -#EXTINF:-1 tvg-id="TUDNMexico.mx",TUDN Mexico (540p) +#EXTINF:-1 tvg-id="TUDNMexico.mx",TUDN Mรฉxico (540p) http://190.61.102.67:2000/play/a08j/index.m3u8 -#EXTINF:-1 tvg-id="Canal22Nacional.mx",Canal22Nacional.mx (720p) [Geo-blocked] -http://mc-qs.lanesh4d0w.tech/iptv-query?streaming-ip=https://conceptoweb-studio.com/radio/video/canal22/ #EXTINF:-1 tvg-id="LasEstrellasLatinAmerica.mx",Las Estrellas Latin America (720p) https://channel01.akamaized.net/hls/live/2022749/event01/index.m3u8 #EXTINF:-1 tvg-id="XHXTDT1.mx",Las Estrellas-HD (XHX-TDT1) (480p) http://190.61.102.67:2000/play/a00g/index.m3u8 #EXTINF:-1 tvg-id="LasEstrellasLatinAmerica.mx",Las Estrellas Latin America (1080p) https://linear-416.frequency.stream/416/hls/master/playlist.m3u8 +#EXTINF:-1 tvg-id="CanalOchoTV.mx",Canal Ocho TV (1080p) +https://ssh101.bozztv.com/ssh101/ochotv/playlist.m3u8 +#EXTINF:-1 tvg-id="Bandamax.mx",Bandamax (480p) +http://190.61.102.67:2000/play/a08h/index.m3u8 From 52ca340f2e0745d397d22a10f328650ffd3befca Mon Sep 17 00:00:00 2001 From: Diego <5572928+sguinetti@users.noreply.github.com> Date: Wed, 21 Jun 2023 15:50:55 -0500 Subject: [PATCH 19/61] Update FAQ.md --- FAQ.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/FAQ.md b/FAQ.md index 548329962b..058801fde8 100644 --- a/FAQ.md +++ b/FAQ.md @@ -187,12 +187,12 @@ If the channel has a another stream and this is broadcasting as an international #EXTINF:-1 tvg-id="VisionLatina.us",Visiรณn Latina ``` -Based on [#5818](https://github.com/iptv-org/iptv/discussions/5818). +Based on [#5818](https://web.archive.org/web/20230212214215/https://github.com/iptv-org/iptv/discussions/5818) and [#420](https://github.com/orgs/iptv-org/discussions/420). ### There are source for verify call sign and coverage area for some TV stations? There are websites to consult the location and characteristics of the station. FCC has [complete official information](https://www.fcc.gov/media/television/tv-service-contour-data-points) about call letters in the United States. You can also consult other websites such as [FCCData](https://fccdata.org/) for US, Canada, Mexico, UK, Australia and Japan. -Based on [#9312](https://github.com/iptv-org/iptv/discussions/9312). +Based on [#9312](https://web.archive.org/web/20230212214215/https://github.com/iptv-org/iptv/discussions/9312). ### Why attributes of channels of this playlist like "tvg-country", "tvg-language", "tvg-logo" are missing? The reason is to reduce the workload when adding streams in the list. Since "tvg-id" links to the [Database](https://github.com/iptv-org/database) repository, each channel has unique attributes like image, name (in English and local speak), country (or countries) broadcasted, category and language. @@ -202,7 +202,7 @@ You can add multiple streams with a single id (in the "tvg-id" parameter), inste ``` #EXTINF:-1 tvg-id="CCTV3.cn",CCTV-3็ปผ่‰บ (1080p) ``` -Based on [#2086](https://github.com/iptv-org/iptv/issues/2086) (countries), [#3490](https://github.com/iptv-org/iptv/discussions/3490) (duplicated tvg-id) and [#6516](https://github.com/iptv-org/iptv/issues/6516) (use of Database). +Based on [#2086](https://github.com/iptv-org/iptv/issues/2086) (countries), [#142](https://github.com/orgs/iptv-org/discussions/142) (duplicated tvg-id) and [#6516](https://github.com/iptv-org/iptv/issues/6516) (use of Database). ### Why some streams have an empty id? Because the stream does not have enough information available. If you appear to know additional data on these, let us know its official name, the language it broadcasts and the country where it originates. From 05f7fece38e24e0fcfde6a2ce535dbef48d21d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= Date: Thu, 22 Jun 2023 23:07:16 +0200 Subject: [PATCH 20/61] Update ar.m3u --- streams/ar.m3u | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streams/ar.m3u b/streams/ar.m3u index 24dcc7a937..0f5a381a5c 100644 --- a/streams/ar.m3u +++ b/streams/ar.m3u @@ -359,7 +359,7 @@ https://video.streamtvradio.com:8443/uv027/uv027/playlist.m3u8 #EXTINF:-1 tvg-id="Pakapaka.ar",Pakapaka (720p) https://5fb24b460df87.streamlock.net/live-cont.ar/pakapaka/playlist.m3u8 #EXTINF:-1 tvg-id="PancTV.ar",Panc TV (720p) -https://video.streamtvradio.com:8443/uv096/uv096/playlist.m3u8 +https://video.trixserver.com:8443/uv096/uv096/playlist.m3u8 #EXTINF:-1 tvg-id="PowerHD.ar",PowerHD https://live2.tensila.com/1-1-1.power-tv/hls/master.m3u8 #EXTINF:-1 tvg-id="PowerHD.ar",Power TV (720p) [Not 24/7] From 9eaa92d8261d7677da4b25acbb276a847ea0f5ae Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Fri, 23 Jun 2023 15:29:54 +0200 Subject: [PATCH 21/61] Update ir.m3u Closes #13183 Closes #13184 Closes #13185 Closes #13186 Closes #13191 Closes #13192 Closes #13194 Closes #13195 Closes #13197 --- streams/ir.m3u | 106 ++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 91 insertions(+), 15 deletions(-) diff --git a/streams/ir.m3u b/streams/ir.m3u index c05b509211..6d41438728 100644 --- a/streams/ir.m3u +++ b/streams/ir.m3u @@ -12,9 +12,9 @@ https://live.asil.tv/live/asil.m3u8 #EXTINF:-1 tvg-id="AssiratTV.ir",Assirat TV (700p) https://svs.itworkscdn.net/assiratvlive/assirat/playlist.m3u8 #EXTINF:-1 tvg-id="AVAFamily.ir",AVA Family (720p) [Not 24/7] -http://51.210.199.5/hls/stream.m3u8 +https://familyhls.avatv.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="AVASeries.ir",AVA Series (720p) -http://51.210.199.4/hls/stream.m3u8 +https://avaserieshls.wns.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="AyenehTV.ir",Ayeneh TV (720p) [Not 24/7] https://livestream.5centscdn.com/cls040318/b0d2763968fd0bdd2dc0d44ba2abf9ce.sdp/index.m3u8 #EXTINF:-1 tvg-id="DiyarTV.tr",Diyar TV (720p) [Not 24/7] @@ -28,21 +28,23 @@ https://live1.presstv.ir/live/hispan.m3u8 #EXTINF:-1 tvg-id="HodHodArabicTV.ir",HodHod Arabic TV (540p) https://nl2.livekadeh.com/hls2/hodhodarabic.m3u8 #EXTINF:-1 tvg-id="HodHodFarsiTV.ir",HodHod Farsi TV (720p) -http://51.210.199.12/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ICnet1.ca",Icnet TV (720p) [Not 24/7] -http://51.210.199.7/hls/stream.m3u8 +https://hls.hodhod.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ICnet1.ca",ICnet 1 (720p) [Not 24/7] +https://60ba7ef02e687.streamlock.net/ICNET/ngrp:my.stream_all/playlist.m3u8 #EXTINF:-1 tvg-id="iFilmArabic.ir",iFilm Arabic (720p) [Not 24/7] https://cdnlive.presstv.ir/cdnlive/smil:ifilmarcdn.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="iFilmArabic.ir",iFilm Arabic (720p) [Not 24/7] +https://live1.presstv.ir/live/ifilmar.m3u8 #EXTINF:-1 tvg-id="IranBeauty.ir",Iran Beauty (720p) [Not 24/7] http://51.210.199.57/hls/stream.m3u8 #EXTINF:-1 tvg-id="MohabatTV.ir",Mohabat TV (540p) http://204.11.235.251:1935/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 #EXTINF:-1 tvg-id="MohabatTV.ir",Mohabat TV (540p) https://5acf9f9415a10.streamlock.net/live_transcoder/ngrp:mohabat.stream_all/playlist.m3u8 -#EXTINF:-1 tvg-id="NavahangTV.fi",NAVAHANG (720p) -http://51.210.227.130/hls/stream.m3u8 +#EXTINF:-1 tvg-id="NavahangTV.fi",Navahang TV (720p) +https://hls.navahang.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="OmideIranTV.ir",Omide Iran (720p) [Not 24/7] -http://51.210.199.38/hls/stream.m3u8 +https://oitnhls.wns.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="PayamJavanTV.ir",Payam Javan TV (720p) [Not 24/7] https://uni01rtmp.tulix.tv/kensecure/pjtv.stream/playlist.m3u8 #EXTINF:-1 tvg-id="PayvandTV.ir",Payvand TV (720p) [Not 24/7] @@ -50,9 +52,9 @@ https://uni6rtmp.tulix.tv/ucur1/Payvand/playlist.m3u8 #EXTINF:-1 tvg-id="PBCTapeshTV.ir",PBC Tapesh TV (720p) [Not 24/7] https://iptv.tapesh.tv/tapesh/playlist.m3u8 #EXTINF:-1 tvg-id="PersianFilm.ir",Persian Film (720p) [Not 24/7] -http://51.210.227.135/hls/stream.m3u8 +https://pfilmhls.wns.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="PMCRoyale.ae",PMC Royale (720p) [Not 24/7] -http://51.210.199.29/hls/stream.m3u8 +https://rohls.pmc.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="PressTV.ir",Press TV (720p) https://cdnlive.presstv.ir/cdnlive/smil:cdnlive.smil/playlist.m3u8 #EXTINF:-1 tvg-id="PressTVFrench.ir",Press TV French (1080p) [Not 24/7] @@ -60,9 +62,9 @@ https://live1.presstv.ir/live/presstvfr/index.m3u8 #EXTINF:-1 tvg-id="SepanjTV.ir",Sepanj TV (720p) [Not 24/7] http://51.210.199.30/hls/stream.m3u8 #EXTINF:-1 tvg-id="SL1.ir",SL 1 (720p) -http://51.210.199.3/hls/stream.m3u8 +https://slonehls.wns.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="SL2.ir",SL 2 (720p) -http://51.210.199.2/hls/stream.m3u8 +https://sltwohls.wns.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="T2TV.ir",T2 TV (720p) [Not 24/7] http://208.113.204.104:8123/live/tapesh-live-stream/index.m3u8 #EXTINF:-1 tvg-id="TinTV.us",Tin TV (720p) [Not 24/7] @@ -70,13 +72,13 @@ https://bozztv.com/1gbw5/tintv/tintv/playlist.m3u8 #EXTINF:-1 tvg-id="VarzeshTV.ir",Varzesh (480p) https://af.ayas.ir/hls2/varzeshtv.m3u8 #EXTINF:-1 tvg-id="VOX1.ir",VOX1 (720p) [Not 24/7] -http://51.210.199.8/hls/stream.m3u8 +https://hls.vox1.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="YourTimeTV.ir",YourTime TV (720p) [Not 24/7] https://hls.yourtime.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="",Ecran TV (720p) [Not 24/7] http://51.210.199.40/hls/stream.m3u8 -#EXTINF:-1 tvg-id="",ITN (720p) [Not 24/7] -http://51.210.199.31/hls/stream.m3u8 +#EXTINF:-1 tvg-id="TVITN.ir",ITN (720p) [Not 24/7] +https://itnhls.wns.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="MarjaeyatTVPersian.iq",Marjaeyat TV Persian (240p) [Not 24/7] https://livefa.marjaeyattv.com/mtv_fa/playlist.m3u8 #EXTINF:-1 tvg-id="",Sahar (480p) @@ -85,3 +87,77 @@ http://cdnlive.irib.ir/live-channels/smil:sahar3/playlist.m3u8 http://51.210.227.134/hls/stream.m3u8 #EXTINF:-1 tvg-id="IRIB3.ir",IRIB 3 (480p) https://af.ayas.ir/hls2/tv3.m3u8 +#EXTINF:-1 tvg-id="iFilmPersian.ir",iFilm Persian (720p) +https://live1.presstv.ir/live/ifilmfa.m3u8 +#EXTINF:-1 tvg-id="AioSport1.ir",Aio Sport 1 (480p) +https://af.ayas.ir/hls2/aiosport.m3u8 +#EXTINF:-1 tvg-id="AioSport2.ir",Aio Sport 2 (480p) [Not 24/7] +https://af.ayas.ir/hls2/aiosport2.m3u8 +#EXTINF:-1 tvg-id="AvangTV.us",Avang TV +https://hls.avang.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="AlZahraTV.ir",Al Zahra TV (1080p) +https://mn-nl.mncdn.com/alzahra/alzahra_hd.smil/playlist.m3u8 +#EXTINF:-1 tvg-id="MihanTV.ir",Mihan TV (720p) +https://iptv.mihantv.com/mihantv/playlist.m3u8 +#EXTINF:-1 tvg-id="NegahTV.ir",Negah TV (720p) +https://iptv.negahtv.com/negahtv/playlist.m3u8 +#EXTINF:-1 tvg-id="",AMG TV (720p) +https://nl.livekadeh.com/hls2/AMG_src.m3u8 +#EXTINF:-1 tvg-id="",Bravo Farsi TV (360p) +https://bravoohls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Farsi TV (1080p) +https://live.farsitv.us/live/stream.m3u8 +#EXTINF:-1 tvg-id="",Today TV (720p) +https://todayhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Health Media TV (720p) +https://6n3yowknl9ok-hls-live.5centscdn.com/HMN/271ddf829afeece44d8732757fba1a66.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="",Persian Bazaar TV (720p) +https://stream.persiantv1.com/ptv1/playlist.m3u8 +#EXTINF:-1 tvg-id="ChannelOne.us",Channel Yek (720p) +https://ch1hls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="IraneFardaTV.us",IraneFarda TV (576p) +https://hls.iranfarda.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="MTC.us",MTC (720p) +https://mtchls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="OXIRTV.ir",OXIR TV (720p) +https://hls.oxir.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="ICCTV.ir",ICC TV (1080p) +https://icchls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Javanan TV (480p) +https://nl.livekadeh.com/hls2/javanantv.m3u8 +#EXTINF:-1 tvg-id="DamacPersian.ae",Damac Persian (720p) +https://damac-tv.icdndhcp.com/hls/stream.m3u8 +#EXTINF:-1 tvg-id="TBNNejatTV.ir",TBN Nejat TV (720p) +https://hls.nejat.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Shabakeh7.us",Shabakeh 7 (576p) +https://t.northtelecom.org/Shabakeh.m3u8 +#EXTINF:-1 tvg-id="",Erfan Halgheh TV (720p) +https://hls.erfanhalgheh.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="KanalJadid.uk",Kanal Jadid (720p) +https://kjhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="SimayeAzadi.uk",Simaye Azadi (1080p) +https://simaytv.akamaized.net/hls/live/2043550/simayhls/index.m3u8 +#EXTINF:-1 tvg-id="KhaterehTV.de",Khatereh TV (720p) +https://khaterehhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Cafe Trade TV (720p) +https://cafetradehls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",FX TV (720p) +https://fxtvhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PayameArameshTV.us",Payame Aramesh TV (720p) +https://hls.keshishhamid.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Iran Jewish TV (404p) +http://iran620.com:1935/derakhte-zendegi/test/playlist.m3u8 +#EXTINF:-1 tvg-id="",Radio Israel Ran (720p) +https://streaminglive.co.il:3730/live/raniamranilive.m3u8 +#EXTINF:-1 tvg-id="iFilmEnglish.ir",iFilm English (480p) +https://live1.presstv.ir/live/ifilmen.m3u8 +#EXTINF:-1 tvg-id="",IRNA24 (720p) +https://irna-tv.icdndhcp.com/live/stream/index.m3u8 +#EXTINF:-1 tvg-id="iFilm2.ir",iFilm 2 (480p) +https://live1.presstv.ir/live/ifilm2.m3u8 +#EXTINF:-1 tvg-id="VelayatTVNetwork.us",Velayat TV (480p) +https://nl.livekadeh.com/hls2/velayattv.m3u8 +#EXTINF:-1 tvg-id="",Abalfadhl TV (720p) +https://t.northtelecom.org/ABALFADHLTV.m3u8 +#EXTINF:-1 tvg-id="",Hausa TV (432p) +https://live1.presstv.ir/live/hausatvha/index.m3u8 From 0c7d127643f5b85b469df858d57eeca15e4b0b7d Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Fri, 23 Jun 2023 16:02:07 +0200 Subject: [PATCH 22/61] Update il.m3u --- streams/il.m3u | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/streams/il.m3u b/streams/il.m3u index b96c63b080..c441b87317 100644 --- a/streams/il.m3u +++ b/streams/il.m3u @@ -7,7 +7,7 @@ https://gstream4.panet.co.il/edge/halaTV/playlist.m3u8 https://live1.panet.co.il/edge_abr/halaTV/playlist.m3u8 #EXTINF:-1 tvg-id="HalaTV.il",Hala TV (1080p) [Not 24/7] https://live2.panet.co.il/edge_abr/halaTV/playlist.m3u8 -#EXTINF:-1 tvg-id="Hidabroot.il",Hidabroot +#EXTINF:-1 tvg-id="Hidabroot.il",Hidabroot (1080p) https://cdn.cybercdn.live/HidabrootIL/Live97/playlist.m3u8 #EXTINF:-1 tvg-id="I24NewsArabic.il",I24 News Arabic (720p) https://bcovlive-a.akamaihd.net/773a2fa387914315ad11e6957cd54f6e/eu-central-1/5377161796001/playlist-all_dvr.m3u8 @@ -23,13 +23,19 @@ https://kanlivep2event-i.akamaihd.net/hls/live/747610/747610/master.m3u8 https://kan23.media.kan.org.il/hls/live/2024691/2024691/master.m3u8 #EXTINF:-1 tvg-id="Makan33.il",Makan 33 (1080p) https://makan.media.kan.org.il/hls/live/2024680/2024680/master.m3u8 -#EXTINF:-1 tvg-id="Now14.il",Now 14 -https://dvr.ch20-cdnwiz.com/hls/live.m3u8 +#EXTINF:-1 tvg-id="Now14.il",Now 14 (1080p) +https://ch14-channel14eur.akamaized.net/hls/live/2099700/CH14_CHANNEL14/master.m3u8 +#EXTINF:-1 tvg-id="Now14.il",Now 14 (1080p) +https://ch14-channel14.akamaized.net/hls/live/2097589/CH14_CHANNEL14/master.m3u8 #EXTINF:-1 tvg-id="ShelanuTV.il",Shelanu TV (720p) https://1247634592.rsc.cdn77.org/1247634592/playlist.m3u8 #EXTINF:-1 tvg-id="TheShoppingChannel.il",ch 21 ืขืจื•ืฅ ื”ืงื ื™ื•ืช (360p) https://shoppingil-rewriter.vidnt.com/index.m3u8 #EXTINF:-1 tvg-id="",Musayof (Israel) (240p) [Not 24/7] http://wowza.media-line.co.il/Musayof-Live/livestream.sdp/playlist.m3u8 -#EXTINF:-1 tvg-id="",Reshet 13 (720p) +#EXTINF:-1 tvg-id="Channel13.il",Reshet 13 (720p) https://d18b0e6mopany4.cloudfront.net/out/v1/08bc71cf0a0f4712b6b03c732b0e6d25/index.m3u8 +#EXTINF:-1 tvg-id="Channel13.il",Reshet 13 (720p) +https://d2xg1g9o5vns8m.cloudfront.net/out/v1/0855d703f7d5436fae6a9c7ce8ca5075/index.m3u8 +#EXTINF:-1 tvg-id="KnessetChannel.il",Knesset Channel (480p) [Not 24/7] +https://contact.gostreaming.tv/Knesset/myStream/playlist.m3u8 From 8fac5c7b88fc92d67bb131275259190155c3373f Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Fri, 23 Jun 2023 16:23:48 +0200 Subject: [PATCH 23/61] Update fr_persiana.m3u --- streams/fr_persiana.m3u | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/streams/fr_persiana.m3u b/streams/fr_persiana.m3u index fdd409c870..76724d35c9 100644 --- a/streams/fr_persiana.m3u +++ b/streams/fr_persiana.m3u @@ -1,27 +1,57 @@ #EXTM3U #EXTINF:-1 tvg-id="PersianaCinema.fr",Persiana Cinema (720p) http://51.210.199.15/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaCinema.fr",Persiana Cinema (720p) +https://persiana-cinema.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaComedy.fr",Persiana Comedy (720p) http://51.210.199.27/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaComedy.fr",Persiana Comedy (720p) +https://persiana-comedy.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaFamily.fr",Persiana Family (720p) http://51.210.199.19/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaFamily.fr",Persiana Family (720p) +https://persiana-family.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaFamilyPlus.fr",Persiana Family Plus (720p) [Not 24/7] http://51.210.199.13/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaGameTech.fr",Persiana Game & Tech (720p) [Not 24/7] http://51.210.199.25/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaIranian.fr",Persiana Iranian (720p) [Not 24/7] http://51.210.199.22/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaIranian.fr",Persiana Iranian (720p) [Not 24/7] +https://persiana-iranian.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaJunior.fr",Persiana Junior (720p) http://51.210.199.18/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaJunior.fr",Persiana Junior (720p) +https://persiana-junior.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaKorea.fr",Persiana Korea (720p) http://51.210.199.14/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaKorea.fr",Persiana Korea (720p) +https://persiana-korea.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaMusic.fr",Persiana Music (720p) http://51.210.199.24/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaMusic.fr",Persiana Music (720p) +https://persiana-music.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaNostalgia.fr",Persiana Nostalgia (720p) http://51.210.199.20/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaNostalgia.fr",Persiana Nostalgia (720p) +https://persiana-nostalgia.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="PersianaPlus.fr",Persiana Plus (1080p) http://51.210.199.21/hls/stream.m3u8 -#EXTINF:-1 tvg-id="PersianaSonnati.fr",Persiana Sonati (576p) [Not 24/7] +#EXTINF:-1 tvg-id="PersianaPlus.fr",Persiana Plus (720p) +https://persiana-plus.icdndhcp.com/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaSonnati.fr",Persiana Sonnati (576p) [Not 24/7] http://51.210.199.59/hls/stream.m3u8 +#EXTINF:-1 tvg-id="PersianaSonnati.fr",Persiana Sonnati (720p) +https://persiana-sonnati.icdndhcp.com/hls/stream.m3u8 #EXTINF:-1 tvg-id="",Persiana Varzesh (720p) [Not 24/7] http://51.210.199.16/hls/stream.m3u8 +#EXTINF:-1 tvg-id="Persiana1.fr",Persiana One (720p) [Not 24/7] +https://persiana-one.icdndhcp.com/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Persiana Rap (720p) +https://persiana-rap.icdndhcp.com/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Persiana Sports (720p) +https://af.ayas.ir/hls2/persiana.m3u8 +#EXTINF:-1 tvg-id="PokerTV.fr",Poker TV (720p) +https://hls.pokertvfa.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Persiana HD (720p) +https://persiana-hd.icdndhcp.com/hls/stream.m3u8 From 152ab73da8d61d4d80c820948ab899ee51c0ea0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Moret?= Date: Sat, 24 Jun 2023 15:47:43 +0200 Subject: [PATCH 24/61] CL : Review changes --- streams/cl.m3u | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/streams/cl.m3u b/streams/cl.m3u index c1d7910262..b197316026 100644 --- a/streams/cl.m3u +++ b/streams/cl.m3u @@ -125,8 +125,8 @@ http://live.mundogo.cl/mundo/EquizTV/index.m3u8 https://github.com/MachineSystems/archived_m3u8/raw/main/elpinguino_cl.m3u8 #EXTINF:-1 tvg-id="ElTipografo.cl",El Tipรณgrafo (1080p) http://live.mundogo.cl/mundo/Tipografo/index.m3u8 -#EXTINF:-1 tvg-id="EnerGeekAnimate.cl",EnerGeek Animate (720p) [Not 24/7] -https://wifispeed.trapemn.tv:1936/infantil/energeek-tres/playlist.m3u8 +#EXTINF:-1 tvg-id="CCPRadio.cl",CCP Radio (720p) [Not 24/7] +https://wifiexpert-1.energeek.cl/energeek/canal-3/playlist.m3u8 #EXTINF:-1 tvg-id="EnerGeekFanpop.cl",EnerGeek Fanpop (720p) [Not 24/7] https://wifispeed.trapemn.tv:1936/infantil/energeek-2/playlist.m3u8 #EXTINF:-1 tvg-id="EnerGeekRetro.cl",EnerGeek Retro (720p) [Not 24/7] From aa99e010fa0fa92e36546333a53a0eefeefec5ca Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 13:57:50 +0300 Subject: [PATCH 25/61] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 04d2ec1eea..38564fe234 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "act:update": "act workflow_dispatch -W .github/workflows/update.yml", "api:load": "./scripts/commands/api/load.sh", "api:generate": "node scripts/commands/api/generate.js", - "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git -x", + "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git", "db:create": "node scripts/commands/database/create.js", "playlist:format": "node scripts/commands/playlist/format.js", "playlist:generate": "node scripts/commands/playlist/generate.js", From 6af1b25bb52422c59dd4c143500d6e8688f7d74f Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:01:14 +0300 Subject: [PATCH 26/61] Update package.json --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 38564fe234..14bd0f3606 100644 --- a/package.json +++ b/package.json @@ -5,13 +5,13 @@ "act:update": "act workflow_dispatch -W .github/workflows/update.yml", "api:load": "./scripts/commands/api/load.sh", "api:generate": "node scripts/commands/api/generate.js", - "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git", + "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git -x", "db:create": "node scripts/commands/database/create.js", "playlist:format": "node scripts/commands/playlist/format.js", "playlist:generate": "node scripts/commands/playlist/generate.js", "playlist:validate": "node scripts/commands/playlist/validate.js", "playlist:lint": "npx m3u-linter -c m3u-linter.json", - "playlist:deploy": "npx gh-pages-clean && npx gh-pages -m \"Deploy to GitHub Pages\" -d .gh-pages -r https://$GITHUB_TOKEN@github.com/iptv-org/iptv.git -x", + "playlist:deploy": "npx gh-pages-clean && npx gh-pages -m \"Deploy to GitHub Pages\" -d .gh-pages -r https://$GITHUB_TOKEN@github.com/iptv-org/iptv.git", "readme:update": "node scripts/commands/readme/update.js", "report:create": "node scripts/commands/report/create.js", "format": "npm run db:create && npm run playlist:format", From 35cb234b10f56c471ca2749d36cf7aabab4c2450 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:01:31 +0300 Subject: [PATCH 27/61] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 14bd0f3606..944729e79e 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "act:update": "act workflow_dispatch -W .github/workflows/update.yml", "api:load": "./scripts/commands/api/load.sh", "api:generate": "node scripts/commands/api/generate.js", - "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git -x", + "api:deploy": "npx gh-pages-clean && npx gh-pages -a -m \"Deploy to iptv-org/api\" -d .api -r https://$GITHUB_TOKEN@github.com/iptv-org/api.git", "db:create": "node scripts/commands/database/create.js", "playlist:format": "node scripts/commands/playlist/format.js", "playlist:generate": "node scripts/commands/playlist/generate.js", From 664161bfc417bac0de04a4bdb423cd330a82dde8 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:05:03 +0300 Subject: [PATCH 28/61] Update update.yml --- .github/workflows/update.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index a02ed59d80..c05265d4e4 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -39,14 +39,16 @@ jobs: run: npm run api:generate - name: update readme.md run: npm run readme:update + - name: update git config + run: | + git config user.name "iptv-bot[bot]" + git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" - name: deploy to github pages if: ${{ !env.ACT }} run: GITHUB_TOKEN=${{ steps.create-app-token.outputs.token }} npm run deploy - name: commit changes if: ${{ !env.ACT }} run: | - git config user.name "iptv-bot[bot]" - git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" git add README.md git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify git status From c7c5876733b91890b6a591c0cc188f10b37d4b2d Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:16:58 +0300 Subject: [PATCH 29/61] Update update.yml --- .github/workflows/update.yml | 34 ++++++++++++++++++++++++++-------- 1 file changed, 26 insertions(+), 8 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index c05265d4e4..1caecef39c 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -7,14 +7,13 @@ jobs: main: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - uses: tibdex/github-app-token@v1 if: ${{ !env.ACT }} id: create-app-token with: app_id: ${{ secrets.APP_ID }} private_key: ${{ secrets.APP_PRIVATE_KEY }} - - uses: actions/checkout@v3 - if: ${{ env.ACT }} - uses: actions/checkout@v3 if: ${{ !env.ACT }} with: @@ -39,16 +38,35 @@ jobs: run: npm run api:generate - name: update readme.md run: npm run readme:update - - name: update git config - run: | - git config user.name "iptv-bot[bot]" - git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" - name: deploy to github pages - if: ${{ !env.ACT }} - run: GITHUB_TOKEN=${{ steps.create-app-token.outputs.token }} npm run deploy + uses: JamesIves/github-pages-deploy-action@4.1.1 + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} + with: + repository-name: iptv-org/iptv + branch: gh-pages + folder: .gh-pages + token: ${{ steps.create-app-token.outputs.token }} + git-config-name: iptv-bot[bot] + git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com + commit-message: '[Bot] Deploy to GitHub Pages' + clean: false + - name: deploy to iptv-org/api + uses: JamesIves/github-pages-deploy-action@4.1.1 + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} + with: + repository-name: iptv-org/api + branch: gh-pages + folder: .api + token: ${{ steps.create-app-token.outputs.token }} + git-config-name: iptv-bot[bot] + git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com + commit-message: '[Bot] Deploy to iptv-org/api' + clean: false - name: commit changes if: ${{ !env.ACT }} run: | + git config user.name "iptv-bot[bot]" + git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" git add README.md git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify git status From 6d699d9237f8df6467d78468d4cde300d01f3347 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:29:44 +0300 Subject: [PATCH 30/61] Update update.yml --- .github/workflows/update.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 1caecef39c..a0070a59d6 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -6,6 +6,8 @@ on: jobs: main: runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: actions/checkout@v3 - uses: tibdex/github-app-token@v1 @@ -68,6 +70,6 @@ jobs: git config user.name "iptv-bot[bot]" git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" git add README.md - git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify + git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify || exit 0 git status git push From cba4809da4868aed9dfd428ddb32bf3cff26d2e6 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:31:26 +0300 Subject: [PATCH 31/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index a0070a59d6..315793486a 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -72,4 +72,4 @@ jobs: git add README.md git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify || exit 0 git status - git push + git push --set-upstream origin master From 754717e8ff085ac4abd4a00ad6fde117597fe6f5 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:40:17 +0300 Subject: [PATCH 32/61] Update update.yml --- .github/workflows/update.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 315793486a..f1a0dd2861 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -72,4 +72,5 @@ jobs: git add README.md git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify || exit 0 git status + git remote add origin https://github.com/iptv-org/iptv.git git push --set-upstream origin master From 58c01a8b6779913e1906f4e792c71e5aef70e778 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:42:53 +0300 Subject: [PATCH 33/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index f1a0dd2861..d0e01af317 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -72,5 +72,5 @@ jobs: git add README.md git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify || exit 0 git status - git remote add origin https://github.com/iptv-org/iptv.git + git remote set-url origin https://github.com/iptv-org/iptv.git git push --set-upstream origin master From 6831b83fe7dbf4f60efbd1b0fded129dc93c1887 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 14:47:27 +0300 Subject: [PATCH 34/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d0e01af317..3133aa9669 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -72,5 +72,5 @@ jobs: git add README.md git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify || exit 0 git status - git remote set-url origin https://github.com/iptv-org/iptv.git + git remote set-url origin https://${{ steps.create-app-token.outputs.token }}@github.com/iptv-org/iptv.git git push --set-upstream origin master From db498b6262ed51c3a852aae4659d27ffd46552c2 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:01:36 +0300 Subject: [PATCH 35/61] Update update.yml --- .github/workflows/update.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 3133aa9669..db3143ce6e 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -65,12 +65,13 @@ jobs: commit-message: '[Bot] Deploy to iptv-org/api' clean: false - name: commit changes - if: ${{ !env.ACT }} - run: | - git config user.name "iptv-bot[bot]" - git config user.email "84861620+iptv-bot[bot]@users.noreply.github.com" - git add README.md - git commit -m "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." --no-verify || exit 0 - git status - git remote set-url origin https://${{ steps.create-app-token.outputs.token }}@github.com/iptv-org/iptv.git - git push --set-upstream origin master + uses: stefanzweifel/git-auto-commit-action@v4 + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} + with: + commit_message: "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." + branch: master + commit_options: '--no-verify' + file_pattern: README.md + repository: iptv-org/iptv + commit_user_name: iptv-bot[bot] + commit_user_email: 84861620+iptv-bot[bot]@users.noreply.github.com From 1f7733f30cbe6683b1b8380c9f37ff6844da6401 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:04:17 +0300 Subject: [PATCH 36/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index db3143ce6e..563b5182e7 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -68,7 +68,7 @@ jobs: uses: stefanzweifel/git-auto-commit-action@v4 if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} with: - commit_message: "[Bot] Update README.md" -m "Committed by [iptv-bot](https://github.com/apps/iptv-bot) via [update](https://github.com/iptv-org/iptv/actions/runs/${{ github.run_id }}) workflow." + commit_message: "[Bot] Update README.md" branch: master commit_options: '--no-verify' file_pattern: README.md From cfc9435f455464d1cec85122ad99635941eea2af Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:11:39 +0300 Subject: [PATCH 37/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 563b5182e7..676e4d1374 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -72,6 +72,6 @@ jobs: branch: master commit_options: '--no-verify' file_pattern: README.md - repository: iptv-org/iptv + repository: https://github.com/iptv-org/iptv.git commit_user_name: iptv-bot[bot] commit_user_email: 84861620+iptv-bot[bot]@users.noreply.github.com From 57d15a2d9b3c77a6095d9bc7009a89c44bbdc9f7 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:18:39 +0300 Subject: [PATCH 38/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 676e4d1374..563b5182e7 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -72,6 +72,6 @@ jobs: branch: master commit_options: '--no-verify' file_pattern: README.md - repository: https://github.com/iptv-org/iptv.git + repository: iptv-org/iptv commit_user_name: iptv-bot[bot] commit_user_email: 84861620+iptv-bot[bot]@users.noreply.github.com From aa0678142f1b408e851e3dd83ba926221e207513 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:27:23 +0300 Subject: [PATCH 39/61] Update update.yml --- .github/workflows/update.yml | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 563b5182e7..05c77c5016 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -40,6 +40,18 @@ jobs: run: npm run api:generate - name: update readme.md run: npm run readme:update + - name: commit changes + uses: stefanzweifel/git-auto-commit-action@v4 + if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} + with: + commit_message: "[Bot] Update README.md" + branch: master + commit_options: '--no-verify' + file_pattern: README.md + repository: . + commit_user_name: iptv-bot[bot] + commit_user_email: 84861620+iptv-bot[bot]@users.noreply.github.com + commit_author: iptv-bot[bot] <84861620+iptv-bot[bot]@users.noreply.github.com> - name: deploy to github pages uses: JamesIves/github-pages-deploy-action@4.1.1 if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} @@ -64,14 +76,3 @@ jobs: git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com commit-message: '[Bot] Deploy to iptv-org/api' clean: false - - name: commit changes - uses: stefanzweifel/git-auto-commit-action@v4 - if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} - with: - commit_message: "[Bot] Update README.md" - branch: master - commit_options: '--no-verify' - file_pattern: README.md - repository: iptv-org/iptv - commit_user_name: iptv-bot[bot] - commit_user_email: 84861620+iptv-bot[bot]@users.noreply.github.com From edd7562f655c2a12fa96188d0d02a80e8f3665ca Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 12:28:28 +0000 Subject: [PATCH 40/61] [Bot] Update README.md --- README.md | 157 +++++++++++++++++++++++++++--------------------------- 1 file changed, 79 insertions(+), 78 deletions(-) diff --git a/README.md b/README.md index 5072ed356a..e2c234fe94 100644 --- a/README.md +++ b/README.md @@ -60,34 +60,34 @@ Same thing, but split up into separate files: Auto15https://iptv-org.github.io/iptv/categories/auto.m3u - Animation44https://iptv-org.github.io/iptv/categories/animation.m3u + Animation43https://iptv-org.github.io/iptv/categories/animation.m3u Business54https://iptv-org.github.io/iptv/categories/business.m3u Classic54https://iptv-org.github.io/iptv/categories/classic.m3u Comedy53https://iptv-org.github.io/iptv/categories/comedy.m3u Cooking21https://iptv-org.github.io/iptv/categories/cooking.m3u Culture65https://iptv-org.github.io/iptv/categories/culture.m3u - Documentary59https://iptv-org.github.io/iptv/categories/documentary.m3u + Documentary60https://iptv-org.github.io/iptv/categories/documentary.m3u Education114https://iptv-org.github.io/iptv/categories/education.m3u - Entertainment323https://iptv-org.github.io/iptv/categories/entertainment.m3u + Entertainment325https://iptv-org.github.io/iptv/categories/entertainment.m3u Family39https://iptv-org.github.io/iptv/categories/family.m3u - General993https://iptv-org.github.io/iptv/categories/general.m3u + General996https://iptv-org.github.io/iptv/categories/general.m3u Kids177https://iptv-org.github.io/iptv/categories/kids.m3u - Legislative150https://iptv-org.github.io/iptv/categories/legislative.m3u + Legislative151https://iptv-org.github.io/iptv/categories/legislative.m3u Lifestyle77https://iptv-org.github.io/iptv/categories/lifestyle.m3u - Movies272https://iptv-org.github.io/iptv/categories/movies.m3u - Music443https://iptv-org.github.io/iptv/categories/music.m3u - News638https://iptv-org.github.io/iptv/categories/news.m3u + Movies276https://iptv-org.github.io/iptv/categories/movies.m3u + Music446https://iptv-org.github.io/iptv/categories/music.m3u + News642https://iptv-org.github.io/iptv/categories/news.m3u Outdoor44https://iptv-org.github.io/iptv/categories/outdoor.m3u Relax16https://iptv-org.github.io/iptv/categories/relax.m3u - Religious361https://iptv-org.github.io/iptv/categories/religious.m3u + Religious362https://iptv-org.github.io/iptv/categories/religious.m3u Series164https://iptv-org.github.io/iptv/categories/series.m3u Science24https://iptv-org.github.io/iptv/categories/science.m3u Shop73https://iptv-org.github.io/iptv/categories/shop.m3u - Sports193https://iptv-org.github.io/iptv/categories/sports.m3u + Sports196https://iptv-org.github.io/iptv/categories/sports.m3u Travel30https://iptv-org.github.io/iptv/categories/travel.m3u Weather14https://iptv-org.github.io/iptv/categories/weather.m3u XXX45https://iptv-org.github.io/iptv/categories/xxx.m3u - Undefined5053https://iptv-org.github.io/iptv/categories/undefined.m3u + Undefined5098https://iptv-org.github.io/iptv/categories/undefined.m3u @@ -115,7 +115,7 @@ Same thing, but split up into separate files: Albanian50https://iptv-org.github.io/iptv/languages/sqi.m3u Amharic8https://iptv-org.github.io/iptv/languages/amh.m3u - Arabic345https://iptv-org.github.io/iptv/languages/ara.m3u + Arabic346https://iptv-org.github.io/iptv/languages/ara.m3u Armenian29https://iptv-org.github.io/iptv/languages/hye.m3u Assamese7https://iptv-org.github.io/iptv/languages/asm.m3u Assyrian Neo-Aramaic1https://iptv-org.github.io/iptv/languages/aii.m3u @@ -138,27 +138,27 @@ Same thing, but split up into separate files: Dhivehi3https://iptv-org.github.io/iptv/languages/div.m3u Dimili1https://iptv-org.github.io/iptv/languages/zza.m3u Dutch184https://iptv-org.github.io/iptv/languages/nld.m3u - English2075https://iptv-org.github.io/iptv/languages/eng.m3u + English2079https://iptv-org.github.io/iptv/languages/eng.m3u Estonian7https://iptv-org.github.io/iptv/languages/est.m3u Faroese1https://iptv-org.github.io/iptv/languages/fao.m3u Fataleka1https://iptv-org.github.io/iptv/languages/far.m3u Filipino1https://iptv-org.github.io/iptv/languages/fil.m3u - Finnish23https://iptv-org.github.io/iptv/languages/fin.m3u - French290https://iptv-org.github.io/iptv/languages/fra.m3u + Finnish25https://iptv-org.github.io/iptv/languages/fin.m3u + French297https://iptv-org.github.io/iptv/languages/fra.m3u Galician12https://iptv-org.github.io/iptv/languages/glg.m3u Galolen1https://iptv-org.github.io/iptv/languages/gal.m3u Georgian8https://iptv-org.github.io/iptv/languages/kat.m3u - German278https://iptv-org.github.io/iptv/languages/deu.m3u + German279https://iptv-org.github.io/iptv/languages/deu.m3u Goan Konkani1https://iptv-org.github.io/iptv/languages/gom.m3u Greek93https://iptv-org.github.io/iptv/languages/ell.m3u Greenlandic2https://iptv-org.github.io/iptv/languages/kal.m3u Gujarati10https://iptv-org.github.io/iptv/languages/guj.m3u Haitian3https://iptv-org.github.io/iptv/languages/hat.m3u - Hebrew10https://iptv-org.github.io/iptv/languages/heb.m3u + Hebrew12https://iptv-org.github.io/iptv/languages/heb.m3u Hindi163https://iptv-org.github.io/iptv/languages/hin.m3u Hungarian77https://iptv-org.github.io/iptv/languages/hun.m3u Icelandic4https://iptv-org.github.io/iptv/languages/isl.m3u - Indonesian165https://iptv-org.github.io/iptv/languages/ind.m3u + Indonesian171https://iptv-org.github.io/iptv/languages/ind.m3u Inuktitut1https://iptv-org.github.io/iptv/languages/iku.m3u Irish4https://iptv-org.github.io/iptv/languages/gle.m3u Italian325https://iptv-org.github.io/iptv/languages/ita.m3u @@ -194,7 +194,7 @@ Same thing, but split up into separate files: Panjabi25https://iptv-org.github.io/iptv/languages/pan.m3u Papiamento1https://iptv-org.github.io/iptv/languages/pap.m3u Pashto14https://iptv-org.github.io/iptv/languages/pus.m3u - Persian66https://iptv-org.github.io/iptv/languages/fas.m3u + Persian85https://iptv-org.github.io/iptv/languages/fas.m3u Polish53https://iptv-org.github.io/iptv/languages/pol.m3u Portuguese335https://iptv-org.github.io/iptv/languages/por.m3u Romanian117https://iptv-org.github.io/iptv/languages/ron.m3u @@ -205,16 +205,16 @@ Same thing, but split up into separate files: Serbian81https://iptv-org.github.io/iptv/languages/srp.m3u Serbo-Croatian1https://iptv-org.github.io/iptv/languages/hbs.m3u Sindhi1https://iptv-org.github.io/iptv/languages/snd.m3u - Sinhala4https://iptv-org.github.io/iptv/languages/sin.m3u + Sinhala9https://iptv-org.github.io/iptv/languages/sin.m3u Slovak39https://iptv-org.github.io/iptv/languages/slk.m3u Slovenian11https://iptv-org.github.io/iptv/languages/slv.m3u Somali4https://iptv-org.github.io/iptv/languages/som.m3u - Spanish1742https://iptv-org.github.io/iptv/languages/spa.m3u + Spanish1743https://iptv-org.github.io/iptv/languages/spa.m3u Swahili3https://iptv-org.github.io/iptv/languages/swa.m3u - Swedish18https://iptv-org.github.io/iptv/languages/swe.m3u + Swedish20https://iptv-org.github.io/iptv/languages/swe.m3u Tagalog14https://iptv-org.github.io/iptv/languages/tgl.m3u Tajik2https://iptv-org.github.io/iptv/languages/tgk.m3u - Tamil61https://iptv-org.github.io/iptv/languages/tam.m3u + Tamil62https://iptv-org.github.io/iptv/languages/tam.m3u Telugu31https://iptv-org.github.io/iptv/languages/tel.m3u Tetum1https://iptv-org.github.io/iptv/languages/tet.m3u Thai80https://iptv-org.github.io/iptv/languages/tha.m3u @@ -229,7 +229,7 @@ Same thing, but split up into separate files: Wolof3https://iptv-org.github.io/iptv/languages/wol.m3u Yucatec Maya1https://iptv-org.github.io/iptv/languages/yua.m3u Yue Chinese10https://iptv-org.github.io/iptv/languages/yue.m3u - Undefined1251https://iptv-org.github.io/iptv/languages/undefined.m3u + Undefined1267https://iptv-org.github.io/iptv/languages/undefined.m3u @@ -263,7 +263,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ฆ๐Ÿ‡ด Angola9https://iptv-org.github.io/iptv/countries/ao.m3u ๐Ÿ‡ฆ๐Ÿ‡ฎ Anguilla6https://iptv-org.github.io/iptv/countries/ai.m3u ๐Ÿ‡ฆ๐Ÿ‡ฌ Antigua and Barbuda8https://iptv-org.github.io/iptv/countries/ag.m3u - ๐Ÿ‡ฆ๐Ÿ‡ท Argentina305https://iptv-org.github.io/iptv/countries/ar.m3u + ๐Ÿ‡ฆ๐Ÿ‡ท Argentina306https://iptv-org.github.io/iptv/countries/ar.m3u       Buenos Aires26https://iptv-org.github.io/iptv/subdivisions/ar-b.m3u       Catamarca2https://iptv-org.github.io/iptv/subdivisions/ar-k.m3u       Chaco5https://iptv-org.github.io/iptv/subdivisions/ar-h.m3u @@ -302,7 +302,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ง๐Ÿ‡ฏ Benin15https://iptv-org.github.io/iptv/countries/bj.m3u ๐Ÿ‡ง๐Ÿ‡ฒ Bermuda5https://iptv-org.github.io/iptv/countries/bm.m3u ๐Ÿ‡ง๐Ÿ‡น Bhutan7https://iptv-org.github.io/iptv/countries/bt.m3u - ๐Ÿ‡ง๐Ÿ‡ด Bolivia90https://iptv-org.github.io/iptv/countries/bo.m3u + ๐Ÿ‡ง๐Ÿ‡ด Bolivia91https://iptv-org.github.io/iptv/countries/bo.m3u       Oruro1https://iptv-org.github.io/iptv/subdivisions/bo-o.m3u ๐Ÿ‡ง๐Ÿ‡ฆ Bosnia and Herzegovina30https://iptv-org.github.io/iptv/countries/ba.m3u ๐Ÿ‡ง๐Ÿ‡ผ Botswana8https://iptv-org.github.io/iptv/countries/bw.m3u @@ -354,7 +354,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ฐ๐Ÿ‡พ Cayman Islands6https://iptv-org.github.io/iptv/countries/ky.m3u ๐Ÿ‡จ๐Ÿ‡ซ Central African Republic8https://iptv-org.github.io/iptv/countries/cf.m3u ๐Ÿ‡น๐Ÿ‡ฉ Chad9https://iptv-org.github.io/iptv/countries/td.m3u - ๐Ÿ‡จ๐Ÿ‡ฑ Chile259https://iptv-org.github.io/iptv/countries/cl.m3u + ๐Ÿ‡จ๐Ÿ‡ฑ Chile260https://iptv-org.github.io/iptv/countries/cl.m3u       Biobio3https://iptv-org.github.io/iptv/subdivisions/cl-bi.m3u       Coquimbo1https://iptv-org.github.io/iptv/subdivisions/cl-co.m3u       La Araucania2https://iptv-org.github.io/iptv/subdivisions/cl-ar.m3u @@ -364,7 +364,7 @@ Same thing, but split up into separate files:       Nuble3https://iptv-org.github.io/iptv/subdivisions/cl-nb.m3u       Valparaiso2https://iptv-org.github.io/iptv/subdivisions/cl-vs.m3u ๐Ÿ‡จ๐Ÿ‡ณ China634https://iptv-org.github.io/iptv/countries/cn.m3u - ๐Ÿ‡จ๐Ÿ‡ด Colombia132https://iptv-org.github.io/iptv/countries/co.m3u + ๐Ÿ‡จ๐Ÿ‡ด Colombia133https://iptv-org.github.io/iptv/countries/co.m3u       San Andres, Providencia y Santa Catalina1https://iptv-org.github.io/iptv/subdivisions/co-sap.m3u       Antioquia1https://iptv-org.github.io/iptv/subdivisions/co-ant.m3u       Atlantico1https://iptv-org.github.io/iptv/subdivisions/co-atl.m3u @@ -383,19 +383,19 @@ Same thing, but split up into separate files:       Valle del Cauca4https://iptv-org.github.io/iptv/subdivisions/co-vac.m3u ๐Ÿ‡ฐ๐Ÿ‡ฒ Comoros35https://iptv-org.github.io/iptv/countries/km.m3u ๐Ÿ‡จ๐Ÿ‡ฐ Cook Islands6https://iptv-org.github.io/iptv/countries/ck.m3u - ๐Ÿ‡จ๐Ÿ‡ท Costa Rica102https://iptv-org.github.io/iptv/countries/cr.m3u + ๐Ÿ‡จ๐Ÿ‡ท Costa Rica103https://iptv-org.github.io/iptv/countries/cr.m3u       Puntarenas1https://iptv-org.github.io/iptv/subdivisions/cr-p.m3u       San Jose2https://iptv-org.github.io/iptv/subdivisions/cr-sj.m3u ๐Ÿ‡ญ๐Ÿ‡ท Croatia28https://iptv-org.github.io/iptv/countries/hr.m3u - ๐Ÿ‡จ๐Ÿ‡บ Cuba64https://iptv-org.github.io/iptv/countries/cu.m3u + ๐Ÿ‡จ๐Ÿ‡บ Cuba65https://iptv-org.github.io/iptv/countries/cu.m3u ๐Ÿ‡จ๐Ÿ‡ผ Curacao11https://iptv-org.github.io/iptv/countries/cw.m3u ๐Ÿ‡จ๐Ÿ‡พ Cyprus41https://iptv-org.github.io/iptv/countries/cy.m3u ๐Ÿ‡จ๐Ÿ‡ฟ Czech Republic42https://iptv-org.github.io/iptv/countries/cz.m3u - ๐Ÿ‡จ๐Ÿ‡ฉ Democratic Republic of the Congo13https://iptv-org.github.io/iptv/countries/cd.m3u + ๐Ÿ‡จ๐Ÿ‡ฉ Democratic Republic of the Congo17https://iptv-org.github.io/iptv/countries/cd.m3u ๐Ÿ‡ฉ๐Ÿ‡ฐ Denmark29https://iptv-org.github.io/iptv/countries/dk.m3u ๐Ÿ‡ฉ๐Ÿ‡ฏ Djibouti40https://iptv-org.github.io/iptv/countries/dj.m3u ๐Ÿ‡ฉ๐Ÿ‡ฒ Dominica6https://iptv-org.github.io/iptv/countries/dm.m3u - ๐Ÿ‡ฉ๐Ÿ‡ด Dominican Republic204https://iptv-org.github.io/iptv/countries/do.m3u + ๐Ÿ‡ฉ๐Ÿ‡ด Dominican Republic205https://iptv-org.github.io/iptv/countries/do.m3u       Distrito Nacional (Santo Domingo)2https://iptv-org.github.io/iptv/subdivisions/do-01.m3u       El Seibo1https://iptv-org.github.io/iptv/subdivisions/do-08.m3u       La Altagracia2https://iptv-org.github.io/iptv/subdivisions/do-11.m3u @@ -406,11 +406,11 @@ Same thing, but split up into separate files:       Santiago1https://iptv-org.github.io/iptv/subdivisions/do-25.m3u       Valverde1https://iptv-org.github.io/iptv/subdivisions/do-27.m3u ๐Ÿ‡น๐Ÿ‡ฑ East Timor29https://iptv-org.github.io/iptv/countries/tl.m3u - ๐Ÿ‡ช๐Ÿ‡จ Ecuador90https://iptv-org.github.io/iptv/countries/ec.m3u + ๐Ÿ‡ช๐Ÿ‡จ Ecuador91https://iptv-org.github.io/iptv/countries/ec.m3u       Loja1https://iptv-org.github.io/iptv/subdivisions/ec-l.m3u       Orellana1https://iptv-org.github.io/iptv/subdivisions/ec-d.m3u ๐Ÿ‡ช๐Ÿ‡ฌ Egypt66https://iptv-org.github.io/iptv/countries/eg.m3u - ๐Ÿ‡ธ๐Ÿ‡ป El Salvador81https://iptv-org.github.io/iptv/countries/sv.m3u + ๐Ÿ‡ธ๐Ÿ‡ป El Salvador82https://iptv-org.github.io/iptv/countries/sv.m3u ๐Ÿ‡ฌ๐Ÿ‡ถ Equatorial Guinea9https://iptv-org.github.io/iptv/countries/gq.m3u ๐Ÿ‡ช๐Ÿ‡ท Eritrea8https://iptv-org.github.io/iptv/countries/er.m3u ๐Ÿ‡ช๐Ÿ‡ช Estonia22https://iptv-org.github.io/iptv/countries/ee.m3u @@ -418,24 +418,24 @@ Same thing, but split up into separate files: ๐Ÿ‡ซ๐Ÿ‡ฐ Falkland Islands5https://iptv-org.github.io/iptv/countries/fk.m3u ๐Ÿ‡ซ๐Ÿ‡ด Faroe Islands1https://iptv-org.github.io/iptv/countries/fo.m3u ๐Ÿ‡ซ๐Ÿ‡ฏ Fiji7https://iptv-org.github.io/iptv/countries/fj.m3u - ๐Ÿ‡ซ๐Ÿ‡ฎ Finland37https://iptv-org.github.io/iptv/countries/fi.m3u + ๐Ÿ‡ซ๐Ÿ‡ฎ Finland41https://iptv-org.github.io/iptv/countries/fi.m3u       Keski-Suomi1https://iptv-org.github.io/iptv/subdivisions/fi-08.m3u -       Pohjanmaa1https://iptv-org.github.io/iptv/subdivisions/fi-12.m3u - ๐Ÿ‡ซ๐Ÿ‡ท France196https://iptv-org.github.io/iptv/countries/fr.m3u +       Pohjanmaa2https://iptv-org.github.io/iptv/subdivisions/fi-12.m3u + ๐Ÿ‡ซ๐Ÿ‡ท France199https://iptv-org.github.io/iptv/countries/fr.m3u ๐Ÿ‡ฌ๐Ÿ‡ซ French Guiana9https://iptv-org.github.io/iptv/countries/gf.m3u ๐Ÿ‡ต๐Ÿ‡ซ French Polynesia7https://iptv-org.github.io/iptv/countries/pf.m3u ๐Ÿ‡น๐Ÿ‡ซ French Southern Territories8https://iptv-org.github.io/iptv/countries/tf.m3u ๐Ÿ‡ฌ๐Ÿ‡ฆ Gabon10https://iptv-org.github.io/iptv/countries/ga.m3u - ๐Ÿ‡ฌ๐Ÿ‡ฒ Gambia9https://iptv-org.github.io/iptv/countries/gm.m3u + ๐Ÿ‡ฌ๐Ÿ‡ฒ Gambia10https://iptv-org.github.io/iptv/countries/gm.m3u ๐Ÿ‡ฌ๐Ÿ‡ช Georgia21https://iptv-org.github.io/iptv/countries/ge.m3u - ๐Ÿ‡ฉ๐Ÿ‡ช Germany265https://iptv-org.github.io/iptv/countries/de.m3u + ๐Ÿ‡ฉ๐Ÿ‡ช Germany266https://iptv-org.github.io/iptv/countries/de.m3u ๐Ÿ‡ฌ๐Ÿ‡ญ Ghana31https://iptv-org.github.io/iptv/countries/gh.m3u ๐Ÿ‡ฌ๐Ÿ‡ท Greece98https://iptv-org.github.io/iptv/countries/gr.m3u ๐Ÿ‡ฌ๐Ÿ‡ฑ Greenland7https://iptv-org.github.io/iptv/countries/gl.m3u ๐Ÿ‡ฌ๐Ÿ‡ฉ Grenada6https://iptv-org.github.io/iptv/countries/gd.m3u ๐Ÿ‡ฌ๐Ÿ‡ต Guadeloupe11https://iptv-org.github.io/iptv/countries/gp.m3u ๐Ÿ‡ฌ๐Ÿ‡บ Guam6https://iptv-org.github.io/iptv/countries/gu.m3u - ๐Ÿ‡ฌ๐Ÿ‡น Guatemala116https://iptv-org.github.io/iptv/countries/gt.m3u + ๐Ÿ‡ฌ๐Ÿ‡น Guatemala117https://iptv-org.github.io/iptv/countries/gt.m3u       Escuintla2https://iptv-org.github.io/iptv/subdivisions/gt-05.m3u       Izabal1https://iptv-org.github.io/iptv/subdivisions/gt-18.m3u       Quiche1https://iptv-org.github.io/iptv/subdivisions/gt-14.m3u @@ -449,12 +449,12 @@ Same thing, but split up into separate files: ๐Ÿ‡ฌ๐Ÿ‡ผ Guinea-Bissau8https://iptv-org.github.io/iptv/countries/gw.m3u ๐Ÿ‡ฌ๐Ÿ‡พ Guyana5https://iptv-org.github.io/iptv/countries/gy.m3u ๐Ÿ‡ญ๐Ÿ‡น Haiti34https://iptv-org.github.io/iptv/countries/ht.m3u - ๐Ÿ‡ญ๐Ÿ‡ณ Honduras110https://iptv-org.github.io/iptv/countries/hn.m3u + ๐Ÿ‡ญ๐Ÿ‡ณ Honduras111https://iptv-org.github.io/iptv/countries/hn.m3u ๐Ÿ‡ญ๐Ÿ‡ฐ Hong Kong21https://iptv-org.github.io/iptv/countries/hk.m3u ๐Ÿ‡ญ๐Ÿ‡บ Hungary84https://iptv-org.github.io/iptv/countries/hu.m3u ๐Ÿ‡ฎ๐Ÿ‡ธ Iceland16https://iptv-org.github.io/iptv/countries/is.m3u ๐Ÿ‡ฎ๐Ÿ‡ณ India439https://iptv-org.github.io/iptv/countries/in.m3u - ๐Ÿ‡ฎ๐Ÿ‡ฉ Indonesia202https://iptv-org.github.io/iptv/countries/id.m3u + ๐Ÿ‡ฎ๐Ÿ‡ฉ Indonesia208https://iptv-org.github.io/iptv/countries/id.m3u       Aceh2https://iptv-org.github.io/iptv/subdivisions/id-ac.m3u       Bali2https://iptv-org.github.io/iptv/subdivisions/id-ba.m3u       Banten2https://iptv-org.github.io/iptv/subdivisions/id-bt.m3u @@ -462,7 +462,7 @@ Same thing, but split up into separate files:       Gorontalo1https://iptv-org.github.io/iptv/subdivisions/id-go.m3u       Jakarta Raya5https://iptv-org.github.io/iptv/subdivisions/id-jk.m3u       Jambi4https://iptv-org.github.io/iptv/subdivisions/id-ja.m3u -       Jawa Barat9https://iptv-org.github.io/iptv/subdivisions/id-jb.m3u +       Jawa Barat10https://iptv-org.github.io/iptv/subdivisions/id-jb.m3u       Jawa Tengah6https://iptv-org.github.io/iptv/subdivisions/id-jt.m3u       Jawa Timur11https://iptv-org.github.io/iptv/subdivisions/id-ji.m3u       Kalimantan Barat2https://iptv-org.github.io/iptv/subdivisions/id-kb.m3u @@ -484,10 +484,11 @@ Same thing, but split up into separate files:       Sumatera Barat2https://iptv-org.github.io/iptv/subdivisions/id-sb.m3u       Sumatera Selatan2https://iptv-org.github.io/iptv/subdivisions/id-ss.m3u       Yogyakarta4https://iptv-org.github.io/iptv/subdivisions/id-yo.m3u - ๐Ÿ‡ฎ๐Ÿ‡ท Iran61https://iptv-org.github.io/iptv/countries/ir.m3u + ๐Ÿ‡ฎ๐Ÿ‡ท Iran93https://iptv-org.github.io/iptv/countries/ir.m3u +       Tehran2https://iptv-org.github.io/iptv/subdivisions/ir-23.m3u ๐Ÿ‡ฎ๐Ÿ‡ถ Iraq78https://iptv-org.github.io/iptv/countries/iq.m3u ๐Ÿ‡ฎ๐Ÿ‡ช Ireland22https://iptv-org.github.io/iptv/countries/ie.m3u - ๐Ÿ‡ฎ๐Ÿ‡ฑ Israel19https://iptv-org.github.io/iptv/countries/il.m3u + ๐Ÿ‡ฎ๐Ÿ‡ฑ Israel20https://iptv-org.github.io/iptv/countries/il.m3u ๐Ÿ‡ฎ๐Ÿ‡น Italy407https://iptv-org.github.io/iptv/countries/it.m3u ๐Ÿ‡จ๐Ÿ‡ฎ Ivory Coast26https://iptv-org.github.io/iptv/countries/ci.m3u ๐Ÿ‡ฏ๐Ÿ‡ฒ Jamaica10https://iptv-org.github.io/iptv/countries/jm.m3u @@ -520,7 +521,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ฒ๐Ÿ‡ท Mauritania38https://iptv-org.github.io/iptv/countries/mr.m3u ๐Ÿ‡ฒ๐Ÿ‡บ Mauritius9https://iptv-org.github.io/iptv/countries/mu.m3u ๐Ÿ‡พ๐Ÿ‡น Mayotte8https://iptv-org.github.io/iptv/countries/yt.m3u - ๐Ÿ‡ฒ๐Ÿ‡ฝ Mexico217https://iptv-org.github.io/iptv/countries/mx.m3u + ๐Ÿ‡ฒ๐Ÿ‡ฝ Mexico219https://iptv-org.github.io/iptv/countries/mx.m3u       Aguascalientes1https://iptv-org.github.io/iptv/subdivisions/mx-agu.m3u       Baja California2https://iptv-org.github.io/iptv/subdivisions/mx-bcn.m3u       Chihuahua2https://iptv-org.github.io/iptv/subdivisions/mx-chh.m3u @@ -557,7 +558,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ณ๐Ÿ‡ฑ Netherlands202https://iptv-org.github.io/iptv/countries/nl.m3u ๐Ÿ‡ณ๐Ÿ‡จ New Caledonia6https://iptv-org.github.io/iptv/countries/nc.m3u ๐Ÿ‡ณ๐Ÿ‡ฟ New Zealand32https://iptv-org.github.io/iptv/countries/nz.m3u - ๐Ÿ‡ณ๐Ÿ‡ฎ Nicaragua77https://iptv-org.github.io/iptv/countries/ni.m3u + ๐Ÿ‡ณ๐Ÿ‡ฎ Nicaragua78https://iptv-org.github.io/iptv/countries/ni.m3u ๐Ÿ‡ณ๐Ÿ‡ช Niger9https://iptv-org.github.io/iptv/countries/ne.m3u ๐Ÿ‡ณ๐Ÿ‡ฌ Nigeria41https://iptv-org.github.io/iptv/countries/ng.m3u ๐Ÿ‡ณ๐Ÿ‡บ Niue6https://iptv-org.github.io/iptv/countries/nu.m3u @@ -571,16 +572,16 @@ Same thing, but split up into separate files:       Islamabad1https://iptv-org.github.io/iptv/subdivisions/pk-is.m3u ๐Ÿ‡ต๐Ÿ‡ผ Palau6https://iptv-org.github.io/iptv/countries/pw.m3u ๐Ÿ‡ต๐Ÿ‡ธ Palestine58https://iptv-org.github.io/iptv/countries/ps.m3u - ๐Ÿ‡ต๐Ÿ‡ฆ Panama76https://iptv-org.github.io/iptv/countries/pa.m3u + ๐Ÿ‡ต๐Ÿ‡ฆ Panama77https://iptv-org.github.io/iptv/countries/pa.m3u ๐Ÿ‡ต๐Ÿ‡ฌ Papua New Guinea6https://iptv-org.github.io/iptv/countries/pg.m3u - ๐Ÿ‡ต๐Ÿ‡พ Paraguay99https://iptv-org.github.io/iptv/countries/py.m3u + ๐Ÿ‡ต๐Ÿ‡พ Paraguay100https://iptv-org.github.io/iptv/countries/py.m3u       Alto Parana2https://iptv-org.github.io/iptv/subdivisions/py-10.m3u       Boqueron1https://iptv-org.github.io/iptv/subdivisions/py-19.m3u       Caaguazu1https://iptv-org.github.io/iptv/subdivisions/py-5.m3u       Central1https://iptv-org.github.io/iptv/subdivisions/py-11.m3u       Itapua1https://iptv-org.github.io/iptv/subdivisions/py-7.m3u       Presidente Hayes1https://iptv-org.github.io/iptv/subdivisions/py-15.m3u - ๐Ÿ‡ต๐Ÿ‡ช Peru233https://iptv-org.github.io/iptv/countries/pe.m3u + ๐Ÿ‡ต๐Ÿ‡ช Peru234https://iptv-org.github.io/iptv/countries/pe.m3u       Amazonas2https://iptv-org.github.io/iptv/subdivisions/pe-ama.m3u       Apurimac1https://iptv-org.github.io/iptv/subdivisions/pe-apu.m3u       Arequipa4https://iptv-org.github.io/iptv/subdivisions/pe-are.m3u @@ -596,9 +597,9 @@ Same thing, but split up into separate files: ๐Ÿ‡ต๐Ÿ‡ณ Pitcairn Islands6https://iptv-org.github.io/iptv/countries/pn.m3u ๐Ÿ‡ต๐Ÿ‡ฑ Poland65https://iptv-org.github.io/iptv/countries/pl.m3u ๐Ÿ‡ต๐Ÿ‡น Portugal51https://iptv-org.github.io/iptv/countries/pt.m3u - ๐Ÿ‡ต๐Ÿ‡ท Puerto Rico78https://iptv-org.github.io/iptv/countries/pr.m3u + ๐Ÿ‡ต๐Ÿ‡ท Puerto Rico79https://iptv-org.github.io/iptv/countries/pr.m3u ๐Ÿ‡ถ๐Ÿ‡ฆ Qatar36https://iptv-org.github.io/iptv/countries/qa.m3u - ๐Ÿ‡จ๐Ÿ‡ฌ Republic of the Congo10https://iptv-org.github.io/iptv/countries/cg.m3u + ๐Ÿ‡จ๐Ÿ‡ฌ Republic of the Congo12https://iptv-org.github.io/iptv/countries/cg.m3u       Brazzaville1https://iptv-org.github.io/iptv/subdivisions/cg-bzv.m3u ๐Ÿ‡ท๐Ÿ‡ด Romania111https://iptv-org.github.io/iptv/countries/ro.m3u       Gorj1https://iptv-org.github.io/iptv/subdivisions/ro-gj.m3u @@ -657,7 +658,7 @@ Same thing, but split up into separate files:       Illes Balears1https://iptv-org.github.io/iptv/subdivisions/es-ib.m3u       La Rioja1https://iptv-org.github.io/iptv/subdivisions/es-ri.m3u       Pais Vasco6https://iptv-org.github.io/iptv/subdivisions/es-pv.m3u - ๐Ÿ‡ฑ๐Ÿ‡ฐ Sri Lanka11https://iptv-org.github.io/iptv/countries/lk.m3u + ๐Ÿ‡ฑ๐Ÿ‡ฐ Sri Lanka17https://iptv-org.github.io/iptv/countries/lk.m3u ๐Ÿ‡ธ๐Ÿ‡ฉ Sudan43https://iptv-org.github.io/iptv/countries/sd.m3u ๐Ÿ‡ธ๐Ÿ‡ท Suriname5https://iptv-org.github.io/iptv/countries/sr.m3u ๐Ÿ‡ธ๐Ÿ‡ฟ Swaziland9https://iptv-org.github.io/iptv/countries/sz.m3u @@ -681,10 +682,10 @@ Same thing, but split up into separate files: ๐Ÿ‡ป๐Ÿ‡ฎ U.S. Virgin Islands6https://iptv-org.github.io/iptv/countries/vi.m3u ๐Ÿ‡บ๐Ÿ‡ฌ Uganda18https://iptv-org.github.io/iptv/countries/ug.m3u ๐Ÿ‡บ๐Ÿ‡ฆ Ukraine86https://iptv-org.github.io/iptv/countries/ua.m3u - ๐Ÿ‡ฆ๐Ÿ‡ช United Arab Emirates72https://iptv-org.github.io/iptv/countries/ae.m3u - ๐Ÿ‡ฌ๐Ÿ‡ง United Kingdom192https://iptv-org.github.io/iptv/countries/uk.m3u + ๐Ÿ‡ฆ๐Ÿ‡ช United Arab Emirates73https://iptv-org.github.io/iptv/countries/ae.m3u + ๐Ÿ‡ฌ๐Ÿ‡ง United Kingdom193https://iptv-org.github.io/iptv/countries/uk.m3u       Wales2https://iptv-org.github.io/iptv/subdivisions/gb-wls.m3u - ๐Ÿ‡บ๐Ÿ‡ธ United States1810https://iptv-org.github.io/iptv/countries/us.m3u + ๐Ÿ‡บ๐Ÿ‡ธ United States1815https://iptv-org.github.io/iptv/countries/us.m3u       Alabama4https://iptv-org.github.io/iptv/subdivisions/us-al.m3u       Alaska2https://iptv-org.github.io/iptv/subdivisions/us-ak.m3u       Arizona13https://iptv-org.github.io/iptv/subdivisions/us-az.m3u @@ -737,7 +738,7 @@ Same thing, but split up into separate files:       Washington7https://iptv-org.github.io/iptv/subdivisions/us-wa.m3u       Wisconsin7https://iptv-org.github.io/iptv/subdivisions/us-wi.m3u       Wyoming1https://iptv-org.github.io/iptv/subdivisions/us-wy.m3u - ๐Ÿ‡บ๐Ÿ‡พ Uruguay73https://iptv-org.github.io/iptv/countries/uy.m3u + ๐Ÿ‡บ๐Ÿ‡พ Uruguay74https://iptv-org.github.io/iptv/countries/uy.m3u ๐Ÿ‡บ๐Ÿ‡ฟ Uzbekistan9https://iptv-org.github.io/iptv/countries/uz.m3u ๐Ÿ‡ป๐Ÿ‡บ Vanuatu6https://iptv-org.github.io/iptv/countries/vu.m3u ๐Ÿ‡ป๐Ÿ‡ฆ Vatican City13https://iptv-org.github.io/iptv/countries/va.m3u @@ -775,38 +776,38 @@ Same thing, but split up into separate files: RegionChannelsPlaylist - Africa300https://iptv-org.github.io/iptv/regions/afr.m3u - Americas3582https://iptv-org.github.io/iptv/regions/amer.m3u - Asia-Pacific1934https://iptv-org.github.io/iptv/regions/apac.m3u - Arab world348https://iptv-org.github.io/iptv/regions/arab.m3u - Association of Southeast Asian Nations444https://iptv-org.github.io/iptv/regions/asean.m3u - Asia2837https://iptv-org.github.io/iptv/regions/asia.m3u + Africa307https://iptv-org.github.io/iptv/regions/afr.m3u + Americas3587https://iptv-org.github.io/iptv/regions/amer.m3u + Asia-Pacific1946https://iptv-org.github.io/iptv/regions/apac.m3u + Arab world349https://iptv-org.github.io/iptv/regions/arab.m3u + Association of Southeast Asian Nations450https://iptv-org.github.io/iptv/regions/asean.m3u + Asia2883https://iptv-org.github.io/iptv/regions/asia.m3u Benelux243https://iptv-org.github.io/iptv/regions/benelux.m3u Caribbean201https://iptv-org.github.io/iptv/regions/carib.m3u Central Asia60https://iptv-org.github.io/iptv/regions/cas.m3u Central and Eastern Europe969https://iptv-org.github.io/iptv/regions/cee.m3u Central America187https://iptv-org.github.io/iptv/regions/cenamer.m3u Commonwealth of Independent States455https://iptv-org.github.io/iptv/regions/cis.m3u - Europe, the Middle East and Africa3653https://iptv-org.github.io/iptv/regions/emea.m3u - Europe3083https://iptv-org.github.io/iptv/regions/eur.m3u - Hispanic America1359https://iptv-org.github.io/iptv/regions/hispam.m3u + Europe, the Middle East and Africa3701https://iptv-org.github.io/iptv/regions/emea.m3u + Europe3092https://iptv-org.github.io/iptv/regions/eur.m3u + Hispanic America1360https://iptv-org.github.io/iptv/regions/hispam.m3u Latin America and the Caribbean1653https://iptv-org.github.io/iptv/regions/lac.m3u Latin America1638https://iptv-org.github.io/iptv/regions/latam.m3u Maghreb55https://iptv-org.github.io/iptv/regions/maghreb.m3u - Middle East and North Africa611https://iptv-org.github.io/iptv/regions/mena.m3u - Middle East567https://iptv-org.github.io/iptv/regions/mideast.m3u - Northern America1935https://iptv-org.github.io/iptv/regions/nam.m3u - Northern Europe122https://iptv-org.github.io/iptv/regions/neur.m3u - North America2465https://iptv-org.github.io/iptv/regions/noram.m3u - Nordics86https://iptv-org.github.io/iptv/regions/nord.m3u + Middle East and North Africa645https://iptv-org.github.io/iptv/regions/mena.m3u + Middle East601https://iptv-org.github.io/iptv/regions/mideast.m3u + Northern America1940https://iptv-org.github.io/iptv/regions/nam.m3u + Northern Europe126https://iptv-org.github.io/iptv/regions/neur.m3u + North America2471https://iptv-org.github.io/iptv/regions/noram.m3u + Nordics90https://iptv-org.github.io/iptv/regions/nord.m3u Oceania57https://iptv-org.github.io/iptv/regions/oce.m3u - South Asia565https://iptv-org.github.io/iptv/regions/sas.m3u - Southeast Asia467https://iptv-org.github.io/iptv/regions/sea.m3u + South Asia571https://iptv-org.github.io/iptv/regions/sas.m3u + Southeast Asia473https://iptv-org.github.io/iptv/regions/sea.m3u Southern Europe1065https://iptv-org.github.io/iptv/regions/ser.m3u - South America1117https://iptv-org.github.io/iptv/regions/southam.m3u - Sub-Saharan Africa232https://iptv-org.github.io/iptv/regions/ssa.m3u - West Africa123https://iptv-org.github.io/iptv/regions/wafr.m3u - Western Europe925https://iptv-org.github.io/iptv/regions/wer.m3u + South America1116https://iptv-org.github.io/iptv/regions/southam.m3u + Sub-Saharan Africa239https://iptv-org.github.io/iptv/regions/ssa.m3u + West Africa124https://iptv-org.github.io/iptv/regions/wafr.m3u + Western Europe930https://iptv-org.github.io/iptv/regions/wer.m3u From 7a1f3529fb168ae4a02547ccf35038e72d46f614 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:31:36 +0300 Subject: [PATCH 41/61] Update template.md --- .readme/template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readme/template.md b/.readme/template.md index b27b593d07..e6764f3e62 100644 --- a/.readme/template.md +++ b/.readme/template.md @@ -1,4 +1,4 @@ -# IPTV +# IPTV [![update](https://github.com/iptv-org/iptv/actions/workflows/update.yml/badge.svg)](https://github.com/iptv-org/iptv/actions/workflows/update.yml) Collection of publicly available IPTV (Internet Protocol television) channels from all over the world. From 3f084c9ce037df1d55fee39a4bedc13cb1c7d2f8 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Sun, 25 Jun 2023 15:33:08 +0300 Subject: [PATCH 42/61] Update update.yml --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 05c77c5016..e5b3ee34ec 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -63,7 +63,7 @@ jobs: git-config-name: iptv-bot[bot] git-config-email: 84861620+iptv-bot[bot]@users.noreply.github.com commit-message: '[Bot] Deploy to GitHub Pages' - clean: false + clean: true - name: deploy to iptv-org/api uses: JamesIves/github-pages-deploy-action@4.1.1 if: ${{ !env.ACT && github.ref == 'refs/heads/master' }} From 00c683ed5f706be59e224f41d918153fd6231a10 Mon Sep 17 00:00:00 2001 From: UltraHDR <108294295+UltraHDR@users.noreply.github.com> Date: Sun, 25 Jun 2023 18:52:43 +0100 Subject: [PATCH 43/61] Update ae.m3u --- streams/ae.m3u | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streams/ae.m3u b/streams/ae.m3u index 683f51654c..52e539156f 100644 --- a/streams/ae.m3u +++ b/streams/ae.m3u @@ -56,7 +56,7 @@ https://dmithrvll.cdn.mangomolo.com/dubairacing/smil:dubairacing.smil/playlist.m #EXTINF:-1 tvg-id="DubaiRacing3.ae",Dubai Racing 3 (1080p) https://dmithrvll.cdn.mangomolo.com/dubaimubasher/smil:dubaimubasher.smil/playlist.m3u8 #EXTINF:-1 tvg-id="DubaiRacing.ae",Dubai Racing (1080p) -https://dmisvthvll.cdn.mangomolo.com/events/smil:events.smil/playlist.m3u8 +https://dmisvthvll.cdn.mgmlcdn.com/events/smil:events.stream.smil/playlist.m3u8 #EXTINF:-1 tvg-id="DubaiSports1.ae",Dubai Sports 1 (1080p) https://dmitnthvll.cdn.mangomolo.com/dubaisports/smil:dubaisports.stream.smil/chunklist.m3u8 #EXTINF:-1 tvg-id="DubaiSports2.ae",Dubai Sports 2 (720p) From 060a9e99fb0c3a253fa92d561649da9baff36e21 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Sun, 25 Jun 2023 18:05:22 +0000 Subject: [PATCH 44/61] [Bot] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2c234fe94..9ff6456d0d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# IPTV +# IPTV [![update](https://github.com/iptv-org/iptv/actions/workflows/update.yml/badge.svg)](https://github.com/iptv-org/iptv/actions/workflows/update.yml) Collection of publicly available IPTV (Internet Protocol television) channels from all over the world. From 694ea54edd5422e3a0b1c151ab3d58c3030fc743 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 17:51:14 +0200 Subject: [PATCH 45/61] Update iq.m3u Closes #13293 --- streams/iq.m3u | 58 +++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 46 insertions(+), 12 deletions(-) diff --git a/streams/iq.m3u b/streams/iq.m3u index 998a1d685b..7a1954c716 100644 --- a/streams/iq.m3u +++ b/streams/iq.m3u @@ -7,9 +7,9 @@ https://5ab29cc78f681.streamlock.net/afarinTV/livestream/playlist.m3u8 http://streaming.aletejahtv.iq:1935/etejah-newLive/smil:etejahNew.smil/playlist.m3u8 #EXTINF:-1 tvg-id="AlghadeerTV.iq",AlGhadeer (720p) [Not 24/7] https://sd343444.vodu.store:3356/live/Alghadeer/index.m3u8 -#EXTINF:-1 tvg-id="AlIraqia.iq",Al Iraqia +#EXTINF:-1 tvg-id="AlIraqia.iq",Al Iraqia (720p) https://cdn.catiacast.video/abr/8d2ffb0aba244e8d9101a9488a7daa05/playlist.m3u8 -#EXTINF:-1 tvg-id="AlIraqiaNews.iq",Al Iraqia News +#EXTINF:-1 tvg-id="AlIraqiaNews.iq",Al Iraqia News (720p) https://cdn.catiacast.video/abr/78054972db7708422595bc96c6e024ac/playlist.m3u8 #EXTINF:-1 tvg-id="AlIraqiaSport.iq",Al Iraqia Sport (1080p) [Geo-blocked] https://au7live.tooliserver.com/live/149075_0.m3u8?session= @@ -33,11 +33,11 @@ https://5d94523502c2d.streamlock.net/alsharqiyalive/mystream/playlist.m3u8 https://media.streambrothers.com:1936/8248/8248/playlist.m3u8 #EXTINF:-1 tvg-id="AssyrianANB.iq",Assyrian ANB (720p) https://anbsat.ddns.net/anb/live/ANB/playlist.m3u8 -#EXTINF:-1 tvg-id="DijlahTV.iq",Dijlah (1080p) +#EXTINF:-1 tvg-id="DijlahTV.iq",Dijlah TV (1080p) http://91.134.145.75:10001/Dijlah/index.m3u8 -#EXTINF:-1 tvg-id="DijlahTV.iq",Dijlah TV +#EXTINF:-1 tvg-id="DijlahTV.iq",Dijlah TV (1080p) https://ghaasiflu.online/Dijlah/index.m3u8 -#EXTINF:-1 tvg-id="GaliKurdistan.iq",Gali Kurdistan +#EXTINF:-1 tvg-id="GaliKurdistan.iq",Gali Kurdistan (720p) [Not 24/7] https://live.bradosti.net/live/GaliKurdistan_playlist.m3u8 #EXTINF:-1 tvg-id="ImamHusseinTV1.iq",Imam Hussein TV 1 (1080p) [Not 24/7] https://live.imamhossaintv.com/live/ih1.m3u8 @@ -55,7 +55,7 @@ https://mn-nl.mncdn.com/arbaeen/arbaeen_hd.smil/index.m3u8 https://svs.itworkscdn.net/inewsiqlive/inewsiq.smil/playlist.m3u8 #EXTINF:-1 tvg-id="KirkukTV.iq",Kirkuk TV https://5ab29cc78f681.streamlock.net/IHTV/livestream/playlist.m3u8 -#EXTINF:-1 tvg-id="KurdChannel.iq",Kurd Channel +#EXTINF:-1 tvg-id="KurdChannel.iq",Kurd Channel (480p) https://kurd-channel.ikoflix.com/hls/stream_2.m3u8 #EXTINF:-1 tvg-id="Kurdistan24.iq",Kurdistan 24 (720p) https://d1x82nydcxndze.cloudfront.net/live/index.m3u8 @@ -67,21 +67,55 @@ https://ikomg2.mmdlive.lldns.net/ikomg2/366ca61db4c646a2bf9cd9f92dd6321c/manifes https://ikomg2.mmdlive.lldns.net/ikomg2/107b7df8f5444d778f349100739a09cd/manifest.m3u8 #EXTINF:-1 tvg-id="NRTTV.iq",NRT TV (720p) [Not 24/7] https://media.streambrothers.com:1936/8226/8226/playlist.m3u8 -#EXTINF:-1 tvg-id="NUBARtv.iq",NUBAR TV +#EXTINF:-1 tvg-id="NUBARtv.iq",NUBAR TV (1080p) http://stream.nubar.tv:1935/private/NUBARtv/playlist.m3u8 #EXTINF:-1 tvg-id="PayamTV.iq",Payam TV (720p) [Not 24/7] https://5ab29cc78f681.streamlock.net/PayamTV/livestream/playlist.m3u8 #EXTINF:-1 tvg-id="RudawTV.iq",Rudaw TV (1080p) https://svs.itworkscdn.net/rudawlive/rudawlive.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="WaarTV.iq",Waar TV +#EXTINF:-1 tvg-id="WaarTV.iq",Waar TV (480p) https://ca-rt.onetv.app/Waar/index-0.m3u8 -#EXTINF:-1 tvg-id="WaarTV.iq",Waar TV +#EXTINF:-1 tvg-id="WaarTV.iq",Waar TV (720p) https://ikomg4.s.llnwi.net/waarhd/waar-hd.m3u8 #EXTINF:-1 tvg-id="ZagrosTV.iq",Zagros (720p) [Not 24/7] https://5a3ed7a72ed4b.streamlock.net/zagrostv/SMIL:myStream.smil/playlist.m3u8 -#EXTINF:-1 tvg-id="",NUBAR Plus TV +#EXTINF:-1 tvg-id="",NUBAR Plus TV (720p) http://stream.nubar.tv:1935/private/NUBARPlus/playlist.m3u8 -#EXTINF:-1 tvg-id="",SPI TV +#EXTINF:-1 tvg-id="",SPI TV (720p) https://cdn1.karwan.tv/spi-tv/index.m3u8 -#EXTINF:-1 tvg-id="",SPI Quran +#EXTINF:-1 tvg-id="",SPI Quran (720p) https://cdn1.karwan.tv/spi-quran/index.m3u8 +#EXTINF:-1 tvg-id="AlNaeemTV.iq",Al-Naeem TV (576p) +https://nl2.livekadeh.com/hls2/alnaeem_high.m3u8 +#EXTINF:-1 tvg-id="Alquran.iq",Alquran (1080p) +https://ktv.imamhussain.org/stream/hls/ch1.m3u8 +#EXTINF:-1 tvg-id="BayyinatTV.iq",Bayyinat TV (404p) +https://nl2.livekadeh.com/hls2/Bayyinat_high.m3u8 +#EXTINF:-1 tvg-id="BeitolAbbasTVChannel.iq",BeitolAbbas TV Channel (720p) +https://live.beitolabbas.tv/live/beitolabbastv.m3u8 +#EXTINF:-1 tvg-id="HadiTV2.iq",Hadi TV 2 (720p) +https://live.ishiacloud.com/haditv.co.uk/haditv2.m3u8 +#EXTINF:-1 tvg-id="ImamAliTV.iq",Imam Ali TV (1080p) [Not 24/7] +https://ythls.onrender.com/UCi4CSgJk3i_slWnWG9Y14qA.m3u8 +#EXTINF:-1 tvg-id="DuaChannel.iq",Dua Channel (720p) +https://live.ishiacloud.com/haditv.co.uk/dua-channel.m3u8 +#EXTINF:-1 tvg-id="IshtarTV.iq",Ishtar TV (1080p) +http://ishtar.cdncast.xyz:1935/live/iShtarHD/playlist.m3u8 +#EXTINF:-1 tvg-id="KarbalaTV.iq",Karbala TV (1080p) [Not 24/7] +https://ythls.onrender.com/UCI4gZRGRdfnfPajdxs8QtPQ.m3u8 +#EXTINF:-1 tvg-id="SpedaTV.iq",Speda TV (720p) +https://speda.dwasat.com/upload/images/spedahd.m3u8 +#EXTINF:-1 tvg-id="",Alhurra Iraq (720p) +https://mbn-ingest-worldsafe.akamaized.net/hls/live/2038899/MBN_Iraq_Worldsafe_HLS/master.m3u8 +#EXTINF:-1 tvg-id="Alhurra.us",Alhurra (720p) +https://mbn-ingest-worldsafe.akamaized.net/hls/live/2038900/MBN_Alhurra_Worldsafe_HLS/master.m3u8 +#EXTINF:-1 tvg-id="DijlahTarab.iq",Dijlah Tarab (1080p) +https://ghaasiflu.online/tarab/index.m3u8 +#EXTINF:-1 tvg-id="MarjaeyatTVEnglish.iq",Marjaeyat TV English (1080p) +https://livefa.marjaeyattv.com/mtv_en/playlist.m3u8 +#EXTINF:-1 tvg-id="MarjaeyatTVArabic.iq",Marjaeyat TV Arabic (1080p) +https://livefa.marjaeyattv.com/mtv_ar/playlist.m3u8 +#EXTINF:-1 tvg-id="UTV.iq",UTV (1080p) +https://mn-nl.mncdn.com/utviraqi2/64c80359/index.m3u8 +#EXTINF:-1 tvg-id="AlforatTV.iq",Alforat TV (1080p) +http://95.216.180.111:1935/live/10/playlist.m3u8 From 48a2b461cb5f9973f49cacfcd07e4707317706db Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:24:44 +0200 Subject: [PATCH 46/61] Update af.m3u --- streams/af.m3u | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/streams/af.m3u b/streams/af.m3u index 488aa1b217..83570f28f4 100644 --- a/streams/af.m3u +++ b/streams/af.m3u @@ -21,9 +21,9 @@ http://51.210.199.58/hls/stream.m3u8 https://playout395.livestreamingcdn.com/live/Stream1/playlist.m3u8 #EXTINF:-1 tvg-id="LemarTV.af",Lemar TV (720p) https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/lemartv.m3u8 -#EXTINF:-1 tvg-id="RTASport.af",RTA Sports +#EXTINF:-1 tvg-id="RTASport.af",RTA Sport (720p) https://hls.rtasport.live/hls/stream.m3u8 -#EXTINF:-1 tvg-id="ShamshadTV.af",Shamshad TV +#EXTINF:-1 tvg-id="ShamshadTV.af",Shamshad TV (240p) https://5a1178b42cc03.streamlock.net/shamshadtelevision/shamshadtelevision/index.m3u8 #EXTINF:-1 tvg-id="TOLOnews.af",Tolo News (720p) https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/tolonews.m3u8 @@ -33,3 +33,19 @@ https://raw.githubusercontent.com/taodicakhia/IPTV_Exception/master/channels/af/ https://d10rltuy0iweup.cloudfront.net/ATNINT/myStream/playlist.m3u8 #EXTINF:-1 tvg-id="SharqRadioTV.af",Sharq Radio TV (1080p) https://59nyqa5elwap-hls-live.5centscdn.com/Sharq/eec89088ee408b80387155272b113256.sdp/playlist.m3u8 +#EXTINF:-1 tvg-id="NoorTV.af",Noor TV (720p) +https://www.hewadwal.com:19360/noortv_abr/noortv_abr.m3u8 +#EXTINF:-1 tvg-id="RTA.af",RTA (720p) +https://hls.rta.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Afghan Nobel Movies (720p) +https://live.relentlessinnovations.net:1936/afghannobel/afghannobel/playlist.m3u8 +#EXTINF:-1 tvg-id="ImanTV.af",Iman TV (480p) +https://live.relentlessinnovations.net:1936/imantv/imantv/playlist.m3u8 +#EXTINF:-1 tvg-id="",Sohail TV (1080p) +https://iptv.sohailtv.com/sohail/playlist/index.m3u8 +#EXTINF:-1 tvg-id="",Watan-e-Maa TV (720p) +https://5caf24a595d94.streamlock.net:1937/8132/8132/playlist.m3u8 +#EXTINF:-1 tvg-id="EslahTV.af",Eslah TV (720p) +https://eslahtvhls.wns.live/hls/stream.m3u8 +#EXTINF:-1 tvg-id="",Dunya-e-Naw TV (576p) +https://dunyanhls.wns.live/hls/stream.m3u8 From 55ab9b62beda1a3fd6e97c3ea83db1425a534066 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:31:27 +0200 Subject: [PATCH 47/61] Update sy.m3u Closes #13292 --- streams/sy.m3u | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/streams/sy.m3u b/streams/sy.m3u index 38ea89f51a..1aabc4765e 100644 --- a/streams/sy.m3u +++ b/streams/sy.m3u @@ -11,7 +11,7 @@ https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc/master22-vod.m3 https://eitc.secure2.footprint.net/egress/chandler/emirates/eitc2/m3u8/sdi2-720p.m3u8 #EXTINF:-1 tvg-id="NourElSham.sy",Nour El-Sham (360p) [Not 24/7] http://vod.ortas.sy:1935/oLive/nour05042022/playlist.m3u8 -#EXTINF:-1 tvg-id="RonahiTV.sy",Ronahi TV +#EXTINF:-1 tvg-id="RonahiTV.sy",Ronahi TV (1080p) https://ikomg1.s.llnwi.net/ronahi-tv/ronahi-tv.m3u8 #EXTINF:-1 tvg-id="SamaTV.sy",Sama TV (578p) [Not 24/7] https://stream.sama-tv.net/hls/samatv.m3u8 @@ -31,3 +31,5 @@ http://vod.alikhbaria.net:1935/oLive/snews05042022/playlist.m3u8 http://vod.ortas.sy:1935/oLive/snews05042022/playlist.m3u8 #EXTINF:-1 tvg-id="SyrianSatelliteChannel.sy",Syria Satellite Channel (360p) [Not 24/7] http://vod.ortas.sy:1935/oLive/sat05042022/playlist.m3u8 +#EXTINF:-1 tvg-id="AlalamNewsChannelSyria.sy",Alalam News Channel Syria (576p) +https://live2.presstv.ir/live/alam/Playlist.m3u8 From be22da73c1d1422f671df177b678737e2e2d4d39 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:36:24 +0200 Subject: [PATCH 48/61] Update my.m3u Closes #13291 --- streams/my.m3u | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streams/my.m3u b/streams/my.m3u index 83a3182895..83974253b9 100644 --- a/streams/my.m3u +++ b/streams/my.m3u @@ -12,7 +12,7 @@ http://210.210.155.37/dr9445/h/h04/index.m3u8 #EXTINF:-1 tvg-id="eGGNetwork.my",Egg Network (720p) http://210.210.155.37/uq2663/h/h22/index.m3u8 #EXTINF:-1 tvg-id="MaahTV.my",Maah TV (720p) [Not 24/7] -http://51.210.199.33/hls/stream.m3u8 +https://hls.maahtv.live/hls/stream.m3u8 #EXTINF:-1 tvg-id="SukanRTM.my",Sukan RTM [Geo-blocked] https://d25tgymtnqzu8s.cloudfront.net/smil:sukan/manifest.mpd #EXTINF:-1 tvg-id="TV3.my",TV3 (720p) [Geo-blocked] From 1c0ba3395e3656c98c8f297b7f734bc4664ee835 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:53:40 +0200 Subject: [PATCH 49/61] Update pr.m3u Closes #13296 Closes #13297 --- streams/pr.m3u | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/streams/pr.m3u b/streams/pr.m3u index d35dafe6af..28f6ca46c9 100644 --- a/streams/pr.m3u +++ b/streams/pr.m3u @@ -33,7 +33,7 @@ https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream1/master.m https://fl496518-exthls-p1.flovp.com/fl496518/live/live.m3u8 #EXTINF:-1 tvg-id="WRUADT1.us",WRUA-DT1 (Tiva TV) (720p) https://link.frontlayer.com/services/hls2/fl496518/index.m3u8 -#EXTINF:-1 tvg-id="WSBSDT1.us",WSBS-DT1 (Mega TV) (1080p) +#EXTINF:-1 tvg-id="WTCVDT1.us",WTCV-DT1 (Mega TV) (1080p) https://livestream.lamusica.com/megatvP320/ngrp:megatvP320_all/playlist.m3u8 #EXTINF:-1 tvg-id="WWXYDT1.us",WWXY-DT1 (Boricua TV) (1080p) https://2-fss-2.streamhoster.com/pl_138/amlst:201284-1347630/playlist.m3u8 @@ -49,3 +49,7 @@ https://59a564764e2b6.streamlock.net/palestra/palestra/playlist.m3u8 https://59825a54e4454.streamlock.net:8443/william652/william652/playlist.m3u8 #EXTINF:-1 tvg-id="",WZNT (Zeta 93) (1080p) [Not 24/7] https://livestream.lamusica.com/nacionz/ngrp:nacionz_all/playlist.m3u8 +#EXTINF:-1 tvg-id="WAPADT1.us",WAPA-DT1 (WAPA-TV) (1080p) +https://live.field59.com/wapa/wapa1/playlist.m3u8 +#EXTINF:-1 tvg-id="WAPADT2.us",WAPA-DT2 (WAPA Deportes) (1080p) +https://live.field59.com/wapa/wapa2/playlist.m3u8 From 181e8ac66e83faad1c58c6bb9af49c84ad40867d Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:57:22 +0200 Subject: [PATCH 50/61] Update hu.m3u Closes #13267 --- streams/hu.m3u | 2 ++ 1 file changed, 2 insertions(+) diff --git a/streams/hu.m3u b/streams/hu.m3u index 80f207a6a0..353643d951 100644 --- a/streams/hu.m3u +++ b/streams/hu.m3u @@ -147,3 +147,5 @@ http://194.76.186.33:8000/play/a02o/index.m3u8 http://194.76.186.33:8000/play/a00x/index.m3u8 #EXTINF:-1 tvg-id="HBOHungary.hu",HBO (1080p) http://194.76.186.33:8000/play/a03n/index.m3u8 +#EXTINF:-1 tvg-id="SuperOne.hu",SuperOne (1080p) +http://84.17.61.203:8086/udp/238.2.25.83:1234 From 7d05f469b0042e1317625c360527de66d01e7610 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:59:29 +0200 Subject: [PATCH 51/61] Update uy.m3u Closes #13286 --- streams/uy.m3u | 2 ++ 1 file changed, 2 insertions(+) diff --git a/streams/uy.m3u b/streams/uy.m3u index 0d4c0f38b5..fb57b99fcb 100644 --- a/streams/uy.m3u +++ b/streams/uy.m3u @@ -17,5 +17,7 @@ https://59825a54e4454.streamlock.net:8443/jorge854/jorge854/playlist.m3u8 https://ythls.onrender.com/channel/UCxZ7Z0-z9EnTZAyKmeP2_MQ.m3u8 #EXTINF:-1 tvg-id="UCL.uy",UCL (720p) http://162.246.18.122:8081/telepuerto-master/ucl-abr/playlist.m3u8 +#EXTINF:-1 tvg-id="UCL.uy",UCL (720p) +https://livedelta.cdn.antel.net.uy/out/u/url_canalu.m3u8 #EXTINF:-1 tvg-id="UruguayPresidencia.uy",Uruguay Presidencia (1080p) [Not 24/7] https://ythls.onrender.com/channel/UCz1Li9JcQB9XP-HfgN0IYLQ.m3u8 From c61fdaaa83891717ae55dc573278caee0ae2e460 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 19:05:57 +0200 Subject: [PATCH 52/61] Update py.m3u Closes #13247 Closes #13248 --- streams/py.m3u | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/streams/py.m3u b/streams/py.m3u index c68bcde273..37ec907f81 100644 --- a/streams/py.m3u +++ b/streams/py.m3u @@ -69,3 +69,7 @@ https://59ce1298bfb98.streamlock.net/oviedotv/oviedotv/playlist.m3u8 https://ythls.onrender.com/channel/UCMXLvWR4z1Z4P4JvubxMQtg.m3u8 #EXTINF:-1 tvg-id="5DiasTV.py",5Dรญas TV (720p) [Not 24/7] https://ythls.onrender.com/channel/UCiyJDRTHlTOGn6Fc5_BxcJw.m3u8 +#EXTINF:-1 tvg-id="Gen.py",Gen (1080p) +http://mc-qs.lanesh4d0w.tech/iptv-query?streaming-ip=https://www.desdepylabs.com/External/tvaccion/gentv +#EXTINF:-1 tvg-id="CanalPro.py",Canal Pro (720p) [Not 24/7] +http://mc-qs.lanesh4d0w.tech/iptv-query?streaming-ip=https://twitch.tv/canalpropy From f455889633f67acf25dd00567c0572770eab0203 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 19:13:43 +0200 Subject: [PATCH 53/61] Update jp.m3u Closes #13288 --- streams/jp.m3u | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/streams/jp.m3u b/streams/jp.m3u index 61fd0a95ba..358f2eb743 100644 --- a/streams/jp.m3u +++ b/streams/jp.m3u @@ -21,23 +21,23 @@ https://nhkw-zh-hlscomp.akamaized.net/ixxemlzk1vqvy44o/playlist.m3u8 https://nhkwlive-ojp.akamaized.net/hls/live/2003459/nhkwlive-ojp-en/index.m3u8 #EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (720p) https://nhkwlive-xjp.akamaized.net/hls/live/2003458/nhkwlive-xjp-en/index.m3u8 -#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan +#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (720p) https://nhkwlive-xjp.akamaized.net/hls/live/2003458/nhkwlive-xjp-en/index_1M.m3u8 -#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (YouTube) (1080p) +#EXTINF:-1 tvg-id="NHKWorldJapan.jp",NHK World Japan (1080p) [Not 24/7] https://ythls.onrender.com/channel/UCSPEjw8F2nQDtmUKPFNF7_A.m3u8 -#EXTINF:-1 tvg-id="NHKWorldPremium.jp",NHK World Premium -https://nhkwlive-pre-in.webcdn.stream.ne.jp/hls/live/nhkwlive-pre/index_1M.m3u8 +#EXTINF:-1 tvg-id="NHKWorldPremium.jp",NHK World Premium (1080p) +https://cdn.skygo.mn/live/disk1/NHK_World_Premium/HLSv3-FTA/NHK_World_Premium.m3u8 #EXTINF:-1 tvg-id="NipponTV.jp",Nippon TV (540p) [Not 24/7] https://ntv3.mov3.co/hls/ntv.m3u8 #EXTINF:-1 tvg-id="NTVNews24.jp",NTV News24 (480p) https://n24-cdn-live.ntv.co.jp/ch01/index.m3u8 #EXTINF:-1 tvg-id="NTVNews24.jp",NTV News24 (480p) https://n24-cdn-live.ntv.co.jp/ch02/index.m3u8 -#EXTINF:-1 tvg-id="NTVNews24.jp",NTV News24 (1080p) +#EXTINF:-1 tvg-id="NTVNews24.jp",NTV News24 (1080p) [Not 24/7] https://ythls.onrender.com/channel/UCuTAXTexrhetbOe3zgskJBQ.m3u8 #EXTINF:-1 tvg-id="ShopChannel.jp",Shop Channel (1080p) [Not 24/7] https://stream3.shopch.jp/HLS/master.m3u8 -#EXTINF:-1 tvg-id="TBSNews.jp",TBS News +#EXTINF:-1 tvg-id="TBSNews.jp",TBS News (720p) [Not 24/7] https://ythls.onrender.com/channel/UC6AG81pAkf6Lbi_1VC5NmPA.m3u8 #EXTINF:-1 tvg-id="TokyoMX1.jp",Tokyo MX1 (720p) https://movie.mcas.jp/mcas/mx1_2/master.m3u8 From 1d081545f2b5f5b7831f28e22e00bf52564827f3 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Mon, 26 Jun 2023 18:05:58 +0000 Subject: [PATCH 54/61] [Bot] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9ff6456d0d..0f7ac95b50 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ Same thing, but split up into separate files: Travel30https://iptv-org.github.io/iptv/categories/travel.m3u Weather14https://iptv-org.github.io/iptv/categories/weather.m3u XXX45https://iptv-org.github.io/iptv/categories/xxx.m3u - Undefined5098https://iptv-org.github.io/iptv/categories/undefined.m3u + Undefined5100https://iptv-org.github.io/iptv/categories/undefined.m3u @@ -144,7 +144,7 @@ Same thing, but split up into separate files: Fataleka1https://iptv-org.github.io/iptv/languages/far.m3u Filipino1https://iptv-org.github.io/iptv/languages/fil.m3u Finnish25https://iptv-org.github.io/iptv/languages/fin.m3u - French297https://iptv-org.github.io/iptv/languages/fra.m3u + French299https://iptv-org.github.io/iptv/languages/fra.m3u Galician12https://iptv-org.github.io/iptv/languages/glg.m3u Galolen1https://iptv-org.github.io/iptv/languages/gal.m3u Georgian8https://iptv-org.github.io/iptv/languages/kat.m3u @@ -421,7 +421,7 @@ Same thing, but split up into separate files: ๐Ÿ‡ซ๐Ÿ‡ฎ Finland41https://iptv-org.github.io/iptv/countries/fi.m3u       Keski-Suomi1https://iptv-org.github.io/iptv/subdivisions/fi-08.m3u       Pohjanmaa2https://iptv-org.github.io/iptv/subdivisions/fi-12.m3u - ๐Ÿ‡ซ๐Ÿ‡ท France199https://iptv-org.github.io/iptv/countries/fr.m3u + ๐Ÿ‡ซ๐Ÿ‡ท France201https://iptv-org.github.io/iptv/countries/fr.m3u ๐Ÿ‡ฌ๐Ÿ‡ซ French Guiana9https://iptv-org.github.io/iptv/countries/gf.m3u ๐Ÿ‡ต๐Ÿ‡ซ French Polynesia7https://iptv-org.github.io/iptv/countries/pf.m3u ๐Ÿ‡น๐Ÿ‡ซ French Southern Territories8https://iptv-org.github.io/iptv/countries/tf.m3u @@ -788,8 +788,8 @@ Same thing, but split up into separate files: Central and Eastern Europe969https://iptv-org.github.io/iptv/regions/cee.m3u Central America187https://iptv-org.github.io/iptv/regions/cenamer.m3u Commonwealth of Independent States455https://iptv-org.github.io/iptv/regions/cis.m3u - Europe, the Middle East and Africa3701https://iptv-org.github.io/iptv/regions/emea.m3u - Europe3092https://iptv-org.github.io/iptv/regions/eur.m3u + Europe, the Middle East and Africa3703https://iptv-org.github.io/iptv/regions/emea.m3u + Europe3094https://iptv-org.github.io/iptv/regions/eur.m3u Hispanic America1360https://iptv-org.github.io/iptv/regions/hispam.m3u Latin America and the Caribbean1653https://iptv-org.github.io/iptv/regions/lac.m3u Latin America1638https://iptv-org.github.io/iptv/regions/latam.m3u @@ -807,7 +807,7 @@ Same thing, but split up into separate files: South America1116https://iptv-org.github.io/iptv/regions/southam.m3u Sub-Saharan Africa239https://iptv-org.github.io/iptv/regions/ssa.m3u West Africa124https://iptv-org.github.io/iptv/regions/wafr.m3u - Western Europe930https://iptv-org.github.io/iptv/regions/wer.m3u + Western Europe932https://iptv-org.github.io/iptv/regions/wer.m3u From 5a8829f9020511dd593785116b97544ffb247369 Mon Sep 17 00:00:00 2001 From: freearhey <7253922+freearhey@users.noreply.github.com> Date: Mon, 26 Jun 2023 23:53:44 +0300 Subject: [PATCH 55/61] Update check.yml --- .github/workflows/check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 665c1f9679..4bb2702bdb 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -25,9 +25,9 @@ jobs: - name: download data from api if: steps.files.outputs.any_changed == 'true' run: | - mkdir -p scripts/data - curl -L -o scripts/data/blocklist.json https://iptv-org.github.io/api/blocklist.json - curl -L -o scripts/data/channels.json https://iptv-org.github.io/api/channels.json + mkdir -p scripts/tmp/data + curl -L -o scripts/tmp/data/blocklist.json https://iptv-org.github.io/api/blocklist.json + curl -L -o scripts/tmp/data/channels.json https://iptv-org.github.io/api/channels.json - name: install dependencies if: steps.files.outputs.any_changed == 'true' run: npm install From 6b6ceba368217ffa2508e33e6fdcfa4a066735d0 Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 23:25:14 +0200 Subject: [PATCH 56/61] Update iq.m3u --- streams/iq.m3u | 4 ---- 1 file changed, 4 deletions(-) diff --git a/streams/iq.m3u b/streams/iq.m3u index 7a1954c716..e1a97e589f 100644 --- a/streams/iq.m3u +++ b/streams/iq.m3u @@ -93,8 +93,6 @@ https://ktv.imamhussain.org/stream/hls/ch1.m3u8 https://nl2.livekadeh.com/hls2/Bayyinat_high.m3u8 #EXTINF:-1 tvg-id="BeitolAbbasTVChannel.iq",BeitolAbbas TV Channel (720p) https://live.beitolabbas.tv/live/beitolabbastv.m3u8 -#EXTINF:-1 tvg-id="HadiTV2.iq",Hadi TV 2 (720p) -https://live.ishiacloud.com/haditv.co.uk/haditv2.m3u8 #EXTINF:-1 tvg-id="ImamAliTV.iq",Imam Ali TV (1080p) [Not 24/7] https://ythls.onrender.com/UCi4CSgJk3i_slWnWG9Y14qA.m3u8 #EXTINF:-1 tvg-id="DuaChannel.iq",Dua Channel (720p) @@ -107,8 +105,6 @@ https://ythls.onrender.com/UCI4gZRGRdfnfPajdxs8QtPQ.m3u8 https://speda.dwasat.com/upload/images/spedahd.m3u8 #EXTINF:-1 tvg-id="",Alhurra Iraq (720p) https://mbn-ingest-worldsafe.akamaized.net/hls/live/2038899/MBN_Iraq_Worldsafe_HLS/master.m3u8 -#EXTINF:-1 tvg-id="Alhurra.us",Alhurra (720p) -https://mbn-ingest-worldsafe.akamaized.net/hls/live/2038900/MBN_Alhurra_Worldsafe_HLS/master.m3u8 #EXTINF:-1 tvg-id="DijlahTarab.iq",Dijlah Tarab (1080p) https://ghaasiflu.online/tarab/index.m3u8 #EXTINF:-1 tvg-id="MarjaeyatTVEnglish.iq",Marjaeyat TV English (1080p) From 1a99a23c150d41ad44852d38a475385a2ed9d39c Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 23:26:48 +0200 Subject: [PATCH 57/61] Update us.m3u Moved Alhurra.us --- streams/us.m3u | 2 ++ 1 file changed, 2 insertions(+) diff --git a/streams/us.m3u b/streams/us.m3u index 85c36afeb8..02950c5c7b 100644 --- a/streams/us.m3u +++ b/streams/us.m3u @@ -1030,3 +1030,5 @@ https://cdn-unified-hls.streamspot.com/ingest1/6ec6f5ba47/playlist.m3u8?origin=1 https://hls-cdn.tvstartup16.net/tvstartup16-channel/live/mp4:jimbobklynedge/playlist.m3u8 #EXTINF:-1 tvg-id="",BLUES TV https://2-fss-2.streamhoster.com/pl_138/205510-3094608-1/playlist.m3u8 +#EXTINF:-1 tvg-id="Alhurra.us",Alhurra (720p) +https://mbn-ingest-worldsafe.akamaized.net/hls/live/2038900/MBN_Alhurra_Worldsafe_HLS/master.m3u8 From b389e94cc5528026cc787f50083c42d25ac2695c Mon Sep 17 00:00:00 2001 From: Carlinhos027 <111005658+Carlinhos027@users.noreply.github.com> Date: Mon, 26 Jun 2023 23:28:42 +0200 Subject: [PATCH 58/61] Update pr.m3u Corrected WSBS --- streams/pr.m3u | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streams/pr.m3u b/streams/pr.m3u index 28f6ca46c9..d6ab9d6b8a 100644 --- a/streams/pr.m3u +++ b/streams/pr.m3u @@ -33,7 +33,7 @@ https://nbculocallive.akamaized.net/hls/live/2037499/puertorico/stream1/master.m https://fl496518-exthls-p1.flovp.com/fl496518/live/live.m3u8 #EXTINF:-1 tvg-id="WRUADT1.us",WRUA-DT1 (Tiva TV) (720p) https://link.frontlayer.com/services/hls2/fl496518/index.m3u8 -#EXTINF:-1 tvg-id="WTCVDT1.us",WTCV-DT1 (Mega TV) (1080p) +#EXTINF:-1 tvg-id="WSBSDT1.us",WSBS-DT1 (Mega TV) (1080p) https://livestream.lamusica.com/megatvP320/ngrp:megatvP320_all/playlist.m3u8 #EXTINF:-1 tvg-id="WWXYDT1.us",WWXY-DT1 (Boricua TV) (1080p) https://2-fss-2.streamhoster.com/pl_138/amlst:201284-1347630/playlist.m3u8 From d630bfc5ad313b9c729b90c62425b55fc983a517 Mon Sep 17 00:00:00 2001 From: M Date: Mon, 26 Jun 2023 20:54:52 -0400 Subject: [PATCH 59/61] Update template.md fix discussions link. --- .readme/template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readme/template.md b/.readme/template.md index e6764f3e62..9d2dd978d7 100644 --- a/.readme/template.md +++ b/.readme/template.md @@ -129,7 +129,7 @@ Links to other useful IPTV-related resources can be found in the [iptv-org/aweso ## Discussions -If you have a question or an idea, you can post it in the [Discussions](https://github.com/iptv-org/iptv/discussions) tab. +If you have a question or an idea, you can post it in the [Discussions](https://github.com/orgs/iptv-org/discussions) tab. ## FAQ From 8270859f5109851541e71a106ff663c029190bca Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 12:06:35 +0000 Subject: [PATCH 60/61] [Bot] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0f7ac95b50..b2aa9ac438 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Same thing, but split up into separate files: Education114https://iptv-org.github.io/iptv/categories/education.m3u Entertainment325https://iptv-org.github.io/iptv/categories/entertainment.m3u Family39https://iptv-org.github.io/iptv/categories/family.m3u - General996https://iptv-org.github.io/iptv/categories/general.m3u + General991https://iptv-org.github.io/iptv/categories/general.m3u Kids177https://iptv-org.github.io/iptv/categories/kids.m3u Legislative151https://iptv-org.github.io/iptv/categories/legislative.m3u Lifestyle77https://iptv-org.github.io/iptv/categories/lifestyle.m3u @@ -83,11 +83,11 @@ Same thing, but split up into separate files: Series164https://iptv-org.github.io/iptv/categories/series.m3u Science24https://iptv-org.github.io/iptv/categories/science.m3u Shop73https://iptv-org.github.io/iptv/categories/shop.m3u - Sports196https://iptv-org.github.io/iptv/categories/sports.m3u + Sports195https://iptv-org.github.io/iptv/categories/sports.m3u Travel30https://iptv-org.github.io/iptv/categories/travel.m3u Weather14https://iptv-org.github.io/iptv/categories/weather.m3u XXX45https://iptv-org.github.io/iptv/categories/xxx.m3u - Undefined5100https://iptv-org.github.io/iptv/categories/undefined.m3u + Undefined5106https://iptv-org.github.io/iptv/categories/undefined.m3u @@ -115,7 +115,7 @@ Same thing, but split up into separate files: Albanian50https://iptv-org.github.io/iptv/languages/sqi.m3u Amharic8https://iptv-org.github.io/iptv/languages/amh.m3u - Arabic346https://iptv-org.github.io/iptv/languages/ara.m3u + Arabic340https://iptv-org.github.io/iptv/languages/ara.m3u Armenian29https://iptv-org.github.io/iptv/languages/hye.m3u Assamese7https://iptv-org.github.io/iptv/languages/asm.m3u Assyrian Neo-Aramaic1https://iptv-org.github.io/iptv/languages/aii.m3u @@ -144,7 +144,7 @@ Same thing, but split up into separate files: Fataleka1https://iptv-org.github.io/iptv/languages/far.m3u Filipino1https://iptv-org.github.io/iptv/languages/fil.m3u Finnish25https://iptv-org.github.io/iptv/languages/fin.m3u - French299https://iptv-org.github.io/iptv/languages/fra.m3u + French298https://iptv-org.github.io/iptv/languages/fra.m3u Galician12https://iptv-org.github.io/iptv/languages/glg.m3u Galolen1https://iptv-org.github.io/iptv/languages/gal.m3u Georgian8https://iptv-org.github.io/iptv/languages/kat.m3u @@ -229,7 +229,7 @@ Same thing, but split up into separate files: Wolof3https://iptv-org.github.io/iptv/languages/wol.m3u Yucatec Maya1https://iptv-org.github.io/iptv/languages/yua.m3u Yue Chinese10https://iptv-org.github.io/iptv/languages/yue.m3u - Undefined1267https://iptv-org.github.io/iptv/languages/undefined.m3u + Undefined1273https://iptv-org.github.io/iptv/languages/undefined.m3u From f7c8ade06711028352bf3c72f3066537cae458ef Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Tue, 27 Jun 2023 18:05:27 +0000 Subject: [PATCH 61/61] [Bot] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b2aa9ac438..b63be25850 100644 --- a/README.md +++ b/README.md @@ -827,7 +827,7 @@ Links to other useful IPTV-related resources can be found in the [iptv-org/aweso ## Discussions -If you have a question or an idea, you can post it in the [Discussions](https://github.com/iptv-org/iptv/discussions) tab. +If you have a question or an idea, you can post it in the [Discussions](https://github.com/orgs/iptv-org/discussions) tab. ## FAQ