fusion telemach, more listings

This commit is contained in:
theofficialomega
2025-08-21 13:29:35 +02:00
parent 97968aa3df
commit 17df63aecb
16 changed files with 1811 additions and 1527 deletions

View File

@@ -9,23 +9,29 @@ let session
module.exports = {
site: 'epg.telemach.ba',
days: 3,
url({ channel, date }) {
url({ channel, date, country }) {
const communityId = country === 'ba' ? 12 : country === 'me' ? 5 : 12
const languageId = country === 'ba' ? 59 : country === 'me' ? 10001 : 59
return `https://api-web.ug-be.cdn.united.cloud/v1/public/events/epg?fromTime=${date.format(
'YYYY-MM-DDTHH:mm:ss-00:00'
)}&toTime=${date
.add(1, 'days')
.subtract(1, 's')
.format('YYYY-MM-DDTHH:mm:ss-00:00')}&communityId=12&languageId=59&cid=${channel.site_id}`
.format('YYYY-MM-DDTHH:mm:ss-00:00')}&communityId=${communityId}&languageId=${languageId}&cid=${channel.site_id}`
},
request: {
async headers() {
async headers({ country } = {}) {
if (!session) {
session = await loadSessionDetails()
if (!session || !session.access_token) return null
session = await loadSessionDetails()
if (!session || !session.access_token) return null
}
const referer = country === 'me' ? 'https://epg.telemach.me/' : 'https://epg.telemach.ba/'
return {
Authorization: `Bearer ${session.access_token}`
Authorization: `Bearer ${session.access_token}`,
Referer: referer
}
}
},
@@ -54,27 +60,43 @@ module.exports = {
return []
}
},
async channels() {
const session = await loadSessionDetails()
if (!session || !session.access_token) return null
async channels({ country }) {
const communityID = country === 'ba' ? 12 : country === 'me' ? 5 : 12
const languageID = country === 'ba' ? 59 : country === 'me' ? 10001 : 59
const lang = country === 'ba' ? 'hr' : country === 'me' ? 'bs' : ''
const tokenSession = await loadSessionDetails()
if (!tokenSession || !tokenSession.access_token) return null
const data = await axios
.get(
'https://api-web.ug-be.cdn.united.cloud/v1/public/channels?channelType=TV&communityId=12&languageId=59&imageSize=L',
`https://api-web.ug-be.cdn.united.cloud/v1/public/channels?channelType=TV&communityId=${communityID}&languageId=${languageID}&imageSize=L`,
{
headers: {
Authorization: `Bearer ${session.access_token}`
Authorization: `Bearer ${tokenSession.access_token}`
}
}
)
.then(r => r.data)
.catch(console.error)
.catch(err => {
console.error(err)
return null
})
return data.map(item => ({
lang: 'hr',
site_id: item.id,
name: item.name
}))
if (!Array.isArray(data)) return []
return data
.map(item => ({
lang,
site_id: item.id,
name: item.name
}))
.sort((a, b) => {
const ai = Number(a.site_id)
const bi = Number(b.site_id)
if (!Number.isFinite(ai) || !Number.isFinite(bi)) return String(a.site_id).localeCompare(String(b.site_id))
return ai - bi
})
}
}
@@ -84,17 +106,20 @@ function parseImage(item) {
return Array.isArray(item?.images) && item.images[0] ? `${baseURL}${item.images[0].path}` : null
}
function loadSessionDetails() {
return axios
.post(
'https://api-web.ug-be.cdn.united.cloud/oauth/token?grant_type=client_credentials',
{},
{
headers: {
Authorization: `Basic ${BASIC_TOKEN}`
async function loadSessionDetails() {
try {
const r = await axios
.post(
'https://api-web.ug-be.cdn.united.cloud/oauth/token?grant_type=client_credentials',
{},
{
headers: {
Authorization: `Basic ${BASIC_TOKEN}`
}
}
}
)
.then(r => r.data)
.catch(console.log)
)
return r.data
} catch (message) {
return console.log(message)
}
}

View File

@@ -36,7 +36,7 @@ const channel = {
}
it('can generate valid url', async () => {
const result = url({ date, channel })
const result = url({ date, channel, country : 'ba' })
expect(result).toBe(
'https://api-web.ug-be.cdn.united.cloud/v1/public/events/epg?fromTime=2025-01-20T00:00:00-00:00&toTime=2025-01-20T23:59:59-00:00&communityId=12&languageId=59&cid=1607'

View File

@@ -1,57 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<channels>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="17">Animal Planet HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="18">SK HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="30">OBN</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="30">OBN (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="31">RTRS</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="32">Alternativna TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="33">Federalna TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="43">Diva</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="44">TV1000</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="45">AMC HD (INT)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="49">CineStar TV Fantasy HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="51">CineStar TV Premiere 1 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="52">CineStar TV Premiere 2 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="56">STAR HD (INT)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="57">STAR Life HD (INT)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="58">STAR Crime HD (INT)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="59">STAR Movies HD (INT)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="60">HBO HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="61">HBO 2 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="62">HBO 3 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="63">Cinemax HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="64">Cinemax 2 HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="67">SK 2 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="68">SK 3 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="69">SK 4 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="67">SK 2 HD (SR/BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="68">SK 3 HD (SR/BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="69">SK 4 HD (SR/BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="73">SK Golf HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="84">Eurosport 1 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="90">Disney Channel</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="92">Pink Kids</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="95">Nickelodeon HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="99">History HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="101">Lov i Ribolov (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="107">National Geographic HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="111">Nat Geo Wild HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="115">History 2 HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="116">Crime &amp; Investigation (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="118">24Kitchen HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="119">TLC HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="120">E! Entertainment (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="125">Travel Channel HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="173">Pink Movies</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="175">Pink Action</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="197">Alfa (Sarajevo)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="198">BHT 1</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="199">N1 HD (BH)/(SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="199">N1 HD (BH)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="200">Televizija Hema</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="201">BN Music HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="283">CineStar TV 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="299">Hayat 2</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="338">SLO 1 HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="409">Balkanika</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="449">BN HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="461">TRT Avaz</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="409">Balkanika (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="449">BN HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="461">TRT Avaz (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="462">CineStar TV Action HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="465">BHT 1 HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="466">Hayat HD</channel>
@@ -70,7 +38,7 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="485">TV Lukavac</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="486">MTV Igman HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="489">Laudato TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="492">Z1</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="492">Z1 (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="493">Cinema TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="494">Hayatovci</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="495">Hayat Folk Box</channel>
@@ -79,66 +47,38 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="541">Posavina TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="552">TV5 HD (BH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="557">SK 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="563">Epic Drama HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="566">Pink Romance</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="567">Pink Thriller</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="568">Pink Comedy</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="574">Nickelodeon (HR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="576">SCI FI HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="580">CineStar TV Comedy &amp; Family HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="581">Pink Western</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="582">Pink Horror</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="583">Pink Soap</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="584">Pink Sci-Fi &amp; Fantasy</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="574">Nickelodeon (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="587">Pink BH</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="640">Nova BH HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="640">Nova BH HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="651">RTV Sana</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="653">RTRS Plus</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="654">Sevdah TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="655">TV Sarajevo HD (BH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="656">RTV Zenica HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="657">Al Jazeera Balkans HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="658">NTV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="675">Izvorna TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="687">SK Esports (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="691">Pink super kids</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="692">Pink Style</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="695">Pink Pedia</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="698">Pink Kuvar</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="705">Lol</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="706">Ha ha</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="728">Nova Sport HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="730">Viasat Explore HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="731">Viasat History HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="732">Viasat Nature HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="743">HRT 1 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="744">HRT 2 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="745">RTL 2 HR HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="746">Nova HR HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="747">RTL HR HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="745">RTL 2 HR HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="746">Nova HR HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="747">RTL HR HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="748">O Kanal HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="773">CineStar TV 2 HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="774">Home and Garden TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="776">Discovery Channel HD (SR)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="777">Cinestar TV 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="850">RTV7</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="853">RTV BIR HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="870">Nicktoons (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="921">Pikaboo HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="922">Nick Jr. (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="941">SK 4K IPTV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="990">Pickbox HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1082">Eurosport 4K IPTV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1096">O Kanal Plus HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1097">O Kanal Music HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1102">IDJKids HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1104">Grand International HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1104">Grand International HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1105">Cartoon Network (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1120">Da Vinci HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1142">SK 5 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1143">SK 6 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1337">Maria Vision TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1338">Shift TV HD</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1341">Al Jazeera Arabic</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1338">Shift TV HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1341">Al Jazeera Arabic (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1477">Pink Premium HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1478">ID HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1491">Cartoonito (BIH)</channel>
@@ -154,6 +94,7 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1502">SK 9 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1503">SK Fight (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1505">Eurosport 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1506">Nickelodeon HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1507">FilmBox Extra HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1508">FilmBox Premium HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1509">Doku TV HD (BIH)</channel>
@@ -167,7 +108,7 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1520">Grand narodna televizija 2 (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1522">Cinemania HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1523">Bujrum TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1524">RTV Novi Pazar</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1524">RTV Novi Pazar (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1526">Tropik TV</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1527">MTV (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1582">Prva World (BIH)</channel>
@@ -186,13 +127,11 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1599">VOX (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1600">Pro7 (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1601">Pink Crime &amp; Mystery (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1602">Insajder TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1603">Nova Max (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1604">Nova Series (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1605">MTV 00s (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1606">Rai Uno (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1607">N1 HD (HR)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1608">N1 HD (SR)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1608">N1 HD (RS)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1609">MTV 80s (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1610">MTV 90s (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1611">Club MTV (BIH)</channel>
@@ -220,7 +159,6 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1635">Motorvision+ HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1636">Bravo Music (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1638">Pink Classic (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1639">Extreme Sports (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1640">BBC Earth HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1641">Deutsche Welle (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1642">TVMNE (RTCG Sat (BIH))</channel>
@@ -257,6 +195,63 @@
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1696">Pink Serije (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1697">Brainz HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1698">Nova S HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1700">SLO 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1740">Kitchen TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1742">Marquee TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1830">Animal Planet HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1831">AMC HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1832">CineStar TV Premiere 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1833">CineStar TV Premiere 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1834">STAR HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1835">STAR Life HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1836">STAR Crime HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1837">STAR Movies HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1838">Pink Western (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1839">Pink Kuvar (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1840">HBO HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1841">HBO 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1842">HBO 3 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1844">Epic Drama HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1845">CineStar TV Fantasy HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1846">CineStar TV Comedy &amp; Family HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1847">Cinemax HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1848">Cinemax 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1849">SCI FI HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1850">Pink Action (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1851">Nova Sport HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1852">Eurosport 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1853">Disney Channel (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1854">Pink Kids (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1855">National Geographic HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1856">Discovery Channel HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1857">History HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1858">Viasat History HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1859">History 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1860">Lov i Ribolov (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1861">Viasat Explore HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1862">Viasat Nature HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1863">Nat Geo Wild HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1864">Crime &amp; Investigation (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1865">Home and Garden TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1866">Travel Channel HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1867">E! Entertainment (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1868">Pink Comedy (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1869">Pink Romance (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1870">Pink Movies (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1871">Pink Thriller (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1872">Pink Soap (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1873">Pink Sci-Fi &amp; Fantasy (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1874">Pink Horror (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1875">Pink Style (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1876">Ha ha (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1877">Lol (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1878">Pink Pedia (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1879">Pink super kids (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1880">Diva (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1881">HRT 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1882">HRT 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1932">Viasat True Crime HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1942">24Kitchen HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="1949">Viasat Kino HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="hr" xmltv_id="" site_id="2052">Eurosport 4K (BIH)</channel>
</channels>

View File

@@ -0,0 +1,225 @@
<?xml version="1.0" encoding="UTF-8"?>
<channels>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="36">TV Adria (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="199">N1 HD (BH)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="452">Prva HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="454">TV 7 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="505">TV Pljevlja (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="542">TV Nikšić (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="543">TV Budva (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="545">A plus TV (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="546">TB1 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="575">TVCG 1 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="586">Pink M (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="640">Nova BH HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="717">TVCG 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="746">Nova HR HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="747">RTL HR HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="748">O Kanal HD</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="772">RTV Herceg Novi (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="874">Srpska TV (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="979">TVCG 3 exParlamentarni kanal (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1088">Gradska TV (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1104">Grand International HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1135">Adriatic Sport 1 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1136">Adriatic Sport 2 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1137">Adriatic Sport 3 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1477">Pink Premium HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1478">ID HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1490">RED TV (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1491">Cartoonito (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1492">Disney Junior (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1494">Nova Television HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1496">IDJTV HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1505">Eurosport 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1510">BabyTV HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1511">Minimax (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1512">HRT 3 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1518">CNN (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1519">Current Time (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1520">Grand narodna televizija 2 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1522">Cinemania HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1524">RTV Novi Pazar (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1582">Prva World (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1583">Prva Kick (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1584">Prva Plus (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1587">Yachting TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1593">DM Sat (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1594">Grand Nostalgija (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1595">Narodna TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1596">CMC HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1597">Pink Music (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1598">Pink Plus (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1601">Pink Crime &amp; Mystery (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1604">Nova Series (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1605">MTV 00s (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1606">Rai Uno (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1607">N1 HD (HR)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1608">N1 HD (RS)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1609">MTV 80s (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1610">MTV 90s (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1611">Club MTV (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1612">MTV Hits (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1614">FTV HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1615">B92 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1616">Pink Zabava (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1618">BBC News (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1619">Pink Extra (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1620">Pink Film (BiH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1621">Pink Reality (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1622">MTV Live HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1623">Zadruga Live 1 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1624">Zadruga Live 2 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1625">Zadruga Live 3 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1626">Zadruga Live 4 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1628">Hustler HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1629">Hustler (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1630">Dusk! (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1631">Private TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1632">Nick Music (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1635">Motorvision+ HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1636">Bravo Music (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1638">Pink Classic (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1641">Deutsche Welle (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1645">SHORTSTV HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1647">TV5 Monde (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1657">Reality Kings HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1658">Brazzers TV Europe (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1659">Blue Hustler (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1660">RedLight (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1664">FREEДOM (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1665">Euronews HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1667">Jim Jam (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1668">1+1 International (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1673">Sky News (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1683">Pink Folk (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1684">Pink Folk 2 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1685">Pink n roll (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1686">Pink World (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1687">Pink Show (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1688">Pink Music 2 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1689">Pink Hits (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1690">Pink Hits 2 (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1691">Pink Fashion (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1692">Pink Koncert (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1693">City Play (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1694">Pink World Cinema (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1695">Pink Family (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1696">Pink Serije (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1697">Brainz HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1700">SLO 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1740">Kitchen TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1742">Marquee TV (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1838">Pink Western (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1839">Pink Kuvar (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1850">Pink Action (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1852">Eurosport 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1854">Pink Kids (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1860">Lov i Ribolov (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1868">Pink Comedy (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1869">Pink Romance (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1870">Pink Movies (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1871">Pink Thriller (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1872">Pink Soap (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1873">Pink Sci-Fi &amp; Fantasy (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1874">Pink Horror (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1875">Pink Style (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1876">Ha ha (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1877">Lol (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1878">Pink Pedia (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1879">Pink super kids (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1881">HRT 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1882">HRT 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1956">RTS 1 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1957">RTS 2 HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1958">Pink HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1959">TV e (CG)/(BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1960">Nova M HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1961">TV Vijesti HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1962">NOVA S HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1963">Happy (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1964">Studio B (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1965">RTS 3 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1966">ICT Business (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1967">STAR HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1968">STAR LIFE HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1969">STAR CRIME HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1970">STAR MOVIES HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1971">AMC HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1972">EPIC DRAMA HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1973">FilmBox Premium HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1974">Diva (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1975">Viasat Kino (ME) ex TV1000</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1976">Cinestar TV Comedy &amp; Family HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1977">Pickbox HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1978">CineStar TV 1 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1979">CineStar TV Fantasy HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1980">CineStar TV Action HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1981">CineStar TV Premiere 1 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1982">CineStar TV Premiere 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1983">CineStar TV 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1984">FilmBox Extra HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1985">SCI FI HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1986">HBO HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1987">HBO 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1988">HBO 3 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1989">Cinemax HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1990">Cinemax 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1991">Superstar TV (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1992">Superstar TV 2 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1993">Superstar TV 3 (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1994">Arena Sport 1X2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1995">Arena Sport 1 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1996">Arena Sport 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1997">Arena Sport 3 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1998">Arena Sport 4 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="1999">Arena Sport 5 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2000">Arena Sport 6 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2001">Arena Sport 7 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2002">Arena Sport 8 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2003">Arena Sport 9 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2004">Arena Sport 10 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2005">Arena Premium 1 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2006">Arena Premium 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2007">Arena Premium 3 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2008">Arena Fight HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2009">Arena Esport HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2010">SOS Kanal Plus (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2011">Pikaboo HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2012">Nickelodeon (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2013">Disney Channel (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2014">Cartoon Network HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2015">IDJKids HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2016">Nick Jr. (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2017">Nicktoons (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2018">Nickelodeon HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2019">National Geographic HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2020">Discovery Channel HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2021">History HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2022">Viasat Explore HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2023">Animal Planet HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2024">Viasat Nature HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2025">Viasat History HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2026">Viasat True Crime HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2027">Nat Geo Wild HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2028">BBC Earth HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2029">History 2 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2030">Crime &amp; Investigation (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2031">24Kitchen HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2032">TLC HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2033">E! Entertainment (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2034">Travel Channel HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2035">Home and Garden TV HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2036">TV Duga Plus (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2037">MTV (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2038">TVE (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2039">Russian Kino (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2040">Telemach Info Kanal (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2045">Da Vinci HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2050">Vesti HD (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2052">Eurosport 4K (BIH)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2070">Arena Adrenalin HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2071">Arena Tenis HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2072">Arena Premium 5 HD (ME)</channel>
<channel site="epg.telemach.ba" lang="bs" xmltv_id="" site_id="2073">Arena Premium 4 HD (ME)</channel>
</channels>

View File

@@ -10,8 +10,10 @@ npm run grab --- --site=epg.telemach.ba
### Update channel list
Available countries : ba/me
```sh
npm run channels:parse --- --config=./sites/epg.telemach.ba/epg.telemach.ba.config.js --output=./sites/epg.telemach.ba/epg.telemach.ba.channels.xml
npm run channels:parse --- --config=./sites/epg.telemach.ba/epg.telemach.ba.config.js --output=./sites/epg.telemach.ba/epg.telemach.ba_<COUNTRY>.channels.xml --set=country:<COUNTRY>
```
### Test