diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml
index 04f55165..0ce1e28e 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,
diff --git a/README.md b/README.md
index 917e9abd..d0ec5f7a 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
Country | EPG |
- 🇦🇱 Albania | https://iptv-org.github.io/epg/guides/albepg.com.guide.xml |
🇩🇿 Algeria | https://iptv-org.github.io/epg/guides/elcinema.com.guide.xml |
🇦🇩 Andorra | https://iptv-org.github.io/epg/guides/andorradifusio.ad.guide.xml |
🇦🇷 Argentina | https://iptv-org.github.io/epg/guides/mi.tv.guide.xml |
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
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
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
- }
-}
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
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