From 1733bbcec55f4e7943facd07ab3d91c21b296032 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Thu, 19 Aug 2021 20:00:04 +0300 Subject: [PATCH 1/7] Update tvtv.us.channels.xml --- sites/tvtv.us.channels.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sites/tvtv.us.channels.xml b/sites/tvtv.us.channels.xml index ffe99308..60675d52 100755 --- a/sites/tvtv.us.channels.xml +++ b/sites/tvtv.us.channels.xml @@ -2437,7 +2437,7 @@ MASN2 MBC America MBC America (WKTB-CD5) - MBC Drama (Korean) + MBC Drama MCAETv MCAETv (K38JP-DT3) MGM HD USA From f8727a3a3f865692192c9ff578b86fb5df400386 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 23 Aug 2021 15:57:44 +0300 Subject: [PATCH 2/7] Delete albepg.com.channels.xml --- sites/albepg.com.channels.xml | 124 ---------------------------------- 1 file changed, 124 deletions(-) delete mode 100755 sites/albepg.com.channels.xml diff --git a/sites/albepg.com.channels.xml b/sites/albepg.com.channels.xml deleted file mode 100755 index 15864a2d..00000000 --- a/sites/albepg.com.channels.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - 21 Junior - 21 Popullore - 24 Kitchen Srbija - 3 Plus - ABC News - AlbUK TV - Alsat - Animal Planet Europe - Arena Sport 1 - Arena Sport 2 - Arena Sport 3 - Arena Sport 4 - Arta - BBF Music TV - BabyTV Europe - Balkanika TV - Bang Bang - Boomerang EMEA - Click TV - Discovery Channel Bulgaria - Elrodi TV - Euronews Albania - Eurosport 1 - Explorer Histori - Explorer Natyra - Explorer Shkencë - Family HD - FashionTV Europe - Film Aksion - Film Drame - Film Dy HD - Film Hits - Film Hits +1 - Film Komedi - Film Një HD - Film Thriller - Folk+ - Fox Life Regional - Fox Srbija - In TV - Investigation Discovery Europe - Junior TV - Kanal 10 - Kanal D Drama - Kanali 7 - Klan Kosova - Klan Macedonia - Klan Plus - Kohavision - Living HD - MFM - MTV Live HD - Muse - My Music - National Geographic Channel HD Europe - Nesër TV - News 24 - On-TV - Ora News - Peace TV English - RTSH 1 - RTSH 2 - RTSH 3 - RTSH Agro - RTSH Femije - RTSH Film - RTSH Korca - RTSH Muzikë - RTSH Plus - RTSH Shkolle - RTSH Shqip - RTSH Sport - RTV21 - STV Folk - Stinët - Super Sonic TV - SuperSport 1 - SuperSport 2 - SuperSport 3 - SuperSport 4 - SuperSport 5 - SuperSport 6 - SuperSport Kosova 1 - SuperSport Kosova 2 - SuperSport Kosova 3 - T7 - TV 21 Macedonia - TV Klan - TV Koha - TV Shenja - TV Tetova - TVM2 - Telesport - Tip TV - Top Channel - Top News - Tribuna Channel - Tring Action - Tring Comedy - Tring Family - Tring Fantasy - Tring History - Tring International - Tring Jolly - Tring Kids - Tring Life - Tring Planet - Tring Shqip - Tring Smile - Tring Sport 1 - Tring Sport 2 - Tring Sport 3 - Tring Sport 4 - Tring Sport News - Tring Super - Tring Tring - Tring World - Vizion Plus - Çufo - - \ No newline at end of file From a9dc6f593acb0f6ff53d56a04ec83f3479f8844d Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 23 Aug 2021 15:57:47 +0300 Subject: [PATCH 3/7] Delete albepg.com.config.js --- sites/albepg.com.config.js | 51 -------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 sites/albepg.com.config.js diff --git a/sites/albepg.com.config.js b/sites/albepg.com.config.js deleted file mode 100644 index dcfe09fb..00000000 --- a/sites/albepg.com.config.js +++ /dev/null @@ -1,51 +0,0 @@ -const epgParser = require('epg-parser') -const dayjs = require('dayjs') -const utc = require('dayjs/plugin/utc') -const customParseFormat = require('dayjs/plugin/customParseFormat') - -dayjs.extend(utc) -dayjs.extend(customParseFormat) - -module.exports = { - lang: 'sq', - site: 'albepg.com', - channels: 'albepg.com.channels.xml', - output: '.gh-pages/guides/albepg.com.guide.xml', - request: { - timeout: 15000, - headers: { - Referer: 'http://albepg.com/epg.html' - } - }, - url: function () { - return `http://albepg.com/epg/guide.xml` - }, - logo: function ({ channel }) { - return `http://albepg.com/tvlogi/${channel.site_id}.png` - }, - parser: function ({ content, channel, date }) { - const results = epgParser.parse(content) - let programs = [] - results.programs - .filter(item => item.channel === channel.site_id) - .forEach(item => { - if (item.title.length && item.start && item.stop) { - const description = item.desc.length ? item.desc[0].value : null - const category = item.category.length ? item.category[0].value : null - const start = dayjs.utc(item.start, 'YYYYMMDDHHmmss Z') - const stop = dayjs.utc(item.stop, 'YYYYMMDDHHmmss Z') - if (start.diff(date.format('YYYY-MM-DD'), 'd') === 0) { - programs.push({ - title: item.title[0].value, - description, - category, - start: start.toString(), - stop: stop.toString() - }) - } - } - }) - - return programs - } -} From 3e7d6a69a30a6a1e20b8f85109248f21b4c7e89c Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 23 Aug 2021 15:57:51 +0300 Subject: [PATCH 4/7] Update auto-update.yml --- .github/workflows/auto-update.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index 99411305..12685ff1 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -18,7 +18,6 @@ jobs: hd-plus.de, astro.com.my, comteco.com.bo, - albepg.com, mi.tv, meo.pt, tvgid.ua, From c3cbf42231dd6ac07dbfdd37c722511d89f125d6 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Mon, 23 Aug 2021 15:57:54 +0300 Subject: [PATCH 5/7] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index fa8767c7..cbd77a52 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,6 @@ To load a program guide, all you need to do is copy the link to one of the guide CountryEPG - 🇦🇱 Albaniahttps://iptv-org.github.io/epg/guides/albepg.com.guide.xml 🇦🇩 Andorrahttps://iptv-org.github.io/epg/guides/andorradifusio.ad.guide.xml 🇦🇷 Argentinahttps://iptv-org.github.io/epg/guides/mi.tv.guide.xml 🇦🇺 Australiahttps://iptv-org.github.io/epg/guides/ontvtonight.com.guide.xml From fbe7787aaaf2e420f931447b4f901acfc689669a Mon Sep 17 00:00:00 2001 From: mobilegear Date: Thu, 26 Aug 2021 14:28:45 +0700 Subject: [PATCH 6/7] Update vidio.com.channels.xml --- sites/vidio.com.channels.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/sites/vidio.com.channels.xml b/sites/vidio.com.channels.xml index 527e0676..748cde94 100644 --- a/sites/vidio.com.channels.xml +++ b/sites/vidio.com.channels.xml @@ -27,6 +27,7 @@ Champions TV 2 Fox Sports Asia beIN Sports 1 Asia + beIN Sports 2 Asia Fox Sports 2 Asia Fox Sports 3 Asia Arirang TV From 22b197d3f46fd2a4e57fee03ce43d6be32c0a7e5 Mon Sep 17 00:00:00 2001 From: "iptv-bot[bot]" <84861620+iptv-bot[bot]@users.noreply.github.com> Date: Fri, 27 Aug 2021 03:50:08 +0300 Subject: [PATCH 7/7] [Bot] Update codes (#54) Co-authored-by: freearhey --- codes.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/codes.csv b/codes.csv index 2ae650d2..998dbacc 100644 --- a/codes.csv +++ b/codes.csv @@ -858,6 +858,7 @@ beIN Sports 11,beINSports11.qa beIN Sports 12,beINSports12.qa beIN Sports 13,beINSports13.qa beIN Sports 2,beINSports2.qa +beIN Sports 2 Asia,beINSports2Asia.qa beIN Sports 3,beINSports3.qa beIN Sports Canada,beINSportsCanada.qa beIN Sports en Español,beINSportsenEspanol.qa