Merge pull request #269 from iptv-org/add-teliatv-ee

Add guide from teliatv.ee
This commit is contained in:
Aleksandr Statciuk 2021-11-20 23:23:53 +03:00 committed by GitHub
commit c31d3b1a59
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 546 additions and 0 deletions

View file

@ -0,0 +1,69 @@
const axios = require('axios')
const dayjs = require('dayjs')
module.exports = {
site: 'teliatv.ee',
url({ date, channel }) {
return `https://api.teliatv.ee/dtv-api/3.2/${channel.lang}/epg/guide?channelIds=${
channel.site_id
}&relations=programmes&images=webGuideItemLarge&startAt=${date
.add(1, 'd')
.format('YYYY-MM-DDTHH:mm')}&startAtOp=lte&endAt=${date.format(
'YYYY-MM-DDTHH:mm'
)}&endAtOp=gt`
},
logo({ channel }) {
return `https://inet-static.mw.elion.ee/images/channels/300x300/${channel.site_id}.png`
},
parser({ content, channel }) {
let programs = []
const items = parseItems(content, channel)
items.forEach(item => {
programs.push({
title: item.name,
icon: parseIcon(item),
start: dayjs(item.startAt),
stop: dayjs(item.endAt)
})
})
return programs
},
async channels({ lang }) {
const data = await axios
.get(`https://api.teliatv.ee/dtv-api/3.0/${lang}/channel-lists?listClass=tv&ui=tv-web`)
.then(r => r.data)
.catch(console.log)
return Object.values(data.channels).map(item => {
return {
lang,
site_id: item.id,
name: item.title
}
})
}
}
function parseIcon(item) {
return item.images.webGuideItemLarge
? `https://inet-static.mw.elion.ee${item.images.webGuideItemLarge}`
: null
}
function parseItems(content, channel) {
const data = JSON.parse(content)
if (!data || !data.relations || !data.categoryItems) return []
const items = data.categoryItems[channel.site_id] || []
return items
.map(i => {
const programmeId = i.related.programmeIds[0]
if (!programmeId) return null
const progData = data.relations.programmes[programmeId]
if (!progData) return null
return { ...i, ...progData }
})
.filter(i => i)
}

View file

@ -0,0 +1,66 @@
// node ./scripts/channels.js --config=./sites/teliatv.ee/teliatv.ee.config.js --output=./sites/teliatv.ee/teliatv.ee_ee-et.channels.xml --set=lang:et
// node ./scripts/channels.js --config=./sites/teliatv.ee/teliatv.ee.config.js --output=./sites/teliatv.ee/teliatv.ee_ee-ru.channels.xml --set=lang:ru
// node ./scripts/channels.js --config=./sites/teliatv.ee/teliatv.ee.config.js --output=./sites/teliatv.ee/teliatv.ee_ee-en.channels.xml --set=lang:en
// npx epg-grabber --config=sites/teliatv.ee/teliatv.ee.config.js --channels=sites/teliatv.ee/teliatv.ee_ee-et.channels.xml --output=.gh-pages/guides/ee-et/teliatv.ee.epg.xml --days=2
const { parser, url, logo } = require('./teliatv.ee.config.js')
const dayjs = require('dayjs')
const utc = require('dayjs/plugin/utc')
const customParseFormat = require('dayjs/plugin/customParseFormat')
dayjs.extend(customParseFormat)
dayjs.extend(utc)
const date = dayjs.utc('2021-11-20', 'YYYY-MM-DD').startOf('d')
const channel = {
lang: 'et',
site_id: '1',
xmltv_id: 'ETV.ee'
}
it('can generate valid url', () => {
expect(url({ date, channel })).toBe(
'https://api.teliatv.ee/dtv-api/3.2/et/epg/guide?channelIds=1&relations=programmes&images=webGuideItemLarge&startAt=2021-11-21T00:00&startAtOp=lte&endAt=2021-11-20T00:00&endAtOp=gt'
)
})
it('can generate valid url with different language', () => {
const ruChannel = {
lang: 'ru',
site_id: '1',
xmltv_id: 'ETV.ee'
}
expect(url({ date, channel: ruChannel })).toBe(
'https://api.teliatv.ee/dtv-api/3.2/ru/epg/guide?channelIds=1&relations=programmes&images=webGuideItemLarge&startAt=2021-11-21T00:00&startAtOp=lte&endAt=2021-11-20T00:00&endAtOp=gt'
)
})
it('can generate valid logo url', () => {
expect(logo({ channel })).toBe('https://inet-static.mw.elion.ee/images/channels/300x300/1.png')
})
it('can parse response', () => {
const content = `{"categoryItems":{"1":[{"id":136227,"type":"epgSeries","name":"Inimjaht","originalName":"Manhunt","price":null,"owner":"ETV","ownerId":1,"images":{"webGuideItemLarge":"/resized/ri93Qj4OLXXvg7QAsUOcKMnIb3g=/570x330/filters:format(jpeg)/inet-static.mw.elion.ee/epg_images/9/b/17e48b3966e65c02.jpg"},"packetIds":[30,34,38,129,130,162,191,242,243,244,447,483,484,485,486],"related":{"programmeIds":[27224371]}}]},"relations":{"programmes":{"27224371":{"id":27224371,"startAt":"2021-11-20T00:05:00+02:00","endAt":"2021-11-20T00:55:00+02:00","publicTo":"2021-12-04T02:05:00+02:00","status":"default","channelId":1,"broadcastId":78248901,"hasMarkers":false,"catchup":false}}}}`
const result = parser({ content, channel }).map(p => {
p.start = p.start.toJSON()
p.stop = p.stop.toJSON()
return p
})
expect(result).toMatchObject([
{
start: '2021-11-19T22:05:00.000Z',
stop: '2021-11-19T22:55:00.000Z',
title: `Inimjaht`,
icon: 'https://inet-static.mw.elion.ee/resized/ri93Qj4OLXXvg7QAsUOcKMnIb3g=/570x330/filters:format(jpeg)/inet-static.mw.elion.ee/epg_images/9/b/17e48b3966e65c02.jpg'
}
])
})
it('can handle empty guide', () => {
const result = parser({
date,
channel,
content: `{"categoryItems":{},"relations":{}}`
})
expect(result).toMatchObject([])
})

View file

@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?>
<site site="teliatv.ee">
<channels>
<channel lang="en" xmltv_id="1Plus2.lv" site_id="1341">1+2</channel>
<channel lang="en" xmltv_id="AljazeeraEnglish.qa" site_id="89">Aljazeera English</channel>
<channel lang="en" xmltv_id="AloTV.ee" site_id="157">Alo TV</channel>
<channel lang="en" xmltv_id="AMCRussia.us" site_id="829">AMC Russia</channel>
<channel lang="en" xmltv_id="AnimalPlanetRossiya.us" site_id="31">Animal Planet Rossiya</channel>
<channel lang="en" xmltv_id="ARTEFrancais.fr" site_id="24">ARTE Français</channel>
<channel lang="en" xmltv_id="BBCEarthAsia.uk" site_id="1264">BBC Earth Asia</channel>
<channel lang="en" xmltv_id="BBCWorldNewsEurope.uk" site_id="52">BBC World News Europe</channel>
<channel lang="en" xmltv_id="BloombergTVEurope.us" site_id="81">Bloomberg TV Europe</channel>
<channel lang="en" xmltv_id="BoomerangCentralEasternEurope.us" site_id="57">Boomerang Central &amp; Eastern Europe</channel>
<channel lang="en" xmltv_id="Canal24Horas.es" site_id="144">Canal 24 Horas</channel>
<channel lang="en" xmltv_id="CartoonNetworkRussiaSouthEastEurope.us" site_id="55">Cartoon Network Russia &amp; South East Europe</channel>
<channel lang="en" xmltv_id="ClubMTV.us" site_id="70">Club MTV</channel>
<channel lang="en" xmltv_id="CMusicTV.uk" site_id="155">C Music TV</channel>
<channel lang="en" xmltv_id="CNBCEurope.us" site_id="82">CNBC Europe</channel>
<channel lang="en" xmltv_id="CNNInternationalEurope.us" site_id="50">CNN International Europe</channel>
<channel lang="en" xmltv_id="DiscoveryChannelRossiya.us" site_id="26">Discovery Channel Rossiya</channel>
<channel lang="en" xmltv_id="DiscoveryScienceRossiya.us" site_id="33">Discovery Science Rossiya</channel>
<channel lang="en" xmltv_id="DisneyChannelScandinavia.us" site_id="102">Disney Channel Scandinavia</channel>
<channel lang="en" xmltv_id="DisneyJuniorScandinavia.us" site_id="103">Disney Junior Scandinavia</channel>
<channel lang="en" xmltv_id="DomKinoInternational.ru" site_id="95">Dom Kino International</channel>
<channel lang="en" xmltv_id="Dozhd.ru" site_id="828">Dozhd</channel>
<channel lang="en" xmltv_id="DTXRossiya.us" site_id="217">DTX Rossiya</channel>
<channel lang="en" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel>
<channel lang="en" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel>
<channel lang="en" xmltv_id="Duo4.ee" site_id="101">Duo 4</channel>
<channel lang="en" xmltv_id="Duo5.ee" site_id="728">Duo 5</channel>
<channel lang="en" xmltv_id="Duo6.ee" site_id="1080">Duo 6</channel>
<channel lang="en" xmltv_id="Duo7.ee" site_id="1343">Duo 7</channel>
<channel lang="en" xmltv_id="Dusk.nl" site_id="1088">Dusk</channel>
<channel lang="en" xmltv_id="DWEnglish.de" site_id="73">DW English</channel>
<channel lang="en" xmltv_id="EestiKanal.ee" site_id="1333">Eesti Kanal</channel>
<channel lang="en" xmltv_id="EntusiastTV.ee" site_id="1290">Entusiast TV</channel>
<channel lang="en" xmltv_id="EpicDrama.se" site_id="1292">Epic Drama</channel>
<channel lang="en" xmltv_id="ETV.ee" site_id="1">ETV</channel>
<channel lang="en" xmltv_id="ETV2.ee" site_id="111">ETV 2</channel>
<channel lang="en" xmltv_id="ETVPlus.ee" site_id="1252">ETV +</channel>
<channel lang="en" xmltv_id="Eurochannel.us" site_id="1241">Eurochannel</channel>
<channel lang="en" xmltv_id="EuroNewsRusskiy.fr" site_id="59">EuroNews Russkiy</channel>
<channel lang="en" xmltv_id="Eurosport1Rossiya.fr" site_id="35">Eurosport 1 Rossiya</channel>
<channel lang="en" xmltv_id="FashionTVRussia.fr" site_id="54">FashionTV Russia</channel>
<channel lang="en" xmltv_id="FightSports.us" site_id="1268">Fight Sports</channel>
<channel lang="en" xmltv_id="Filmzone.ee" site_id="1238">Filmzone</channel>
<channel lang="en" xmltv_id="FilmzonePlus.ee" site_id="1239">Filmzone+</channel>
<channel lang="en" xmltv_id="FoxLifeRussia.us" site_id="105">Fox Life Russia</channel>
<channel lang="en" xmltv_id="FoxRussia.us" site_id="77">Fox Russia</channel>
<channel lang="en" xmltv_id="France2.fr" site_id="256">France 2</channel>
<channel lang="en" xmltv_id="France24English.fr" site_id="143">France 24 English</channel>
<channel lang="en" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel>
<channel lang="en" xmltv_id="History2Asia.us" site_id="1236">History 2 Asia</channel>
<channel lang="en" xmltv_id="HistoryRussia.us" site_id="251">History Russia</channel>
<channel lang="en" xmltv_id="HustlerTVEurope.us" site_id="90">Hustler TV Europe</channel>
<channel lang="en" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel>
<channel lang="en" xmltv_id="InvestigationDiscoveryRossiya.us" site_id="32">Investigation Discovery Rossiya</channel>
<channel lang="en" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel>
<channel lang="en" xmltv_id="KaruselInternational.ru" site_id="75">Karusel International</channel>
<channel lang="en" xmltv_id="KidzonePlus.ee" site_id="1293">Kidzone+</channel>
<channel lang="en" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel>
<channel lang="en" xmltv_id="KIKA.de" site_id="78">KIKA</channel>
<channel lang="en" xmltv_id="LifeTV.ee" site_id="220">Life TV</channel>
<channel lang="en" xmltv_id="LoloTV.lv" site_id="222">Lolo TV</channel>
<channel lang="en" xmltv_id="MCMTopRussia.fr" site_id="84">MCM Top Russia</channel>
<channel lang="en" xmltv_id="Mezzo.fr" site_id="36">Mezzo</channel>
<channel lang="en" xmltv_id="MezzoLiveHD.fr" site_id="789">Mezzo Live HD</channel>
<channel lang="en" xmltv_id="MoyaPlaneta.ru" site_id="151">Moya Planeta</channel>
<channel lang="en" xmltv_id="MTV00s.us" site_id="38">MTV 00s</channel>
<channel lang="en" xmltv_id="MTV80s.us" site_id="72">MTV 80s</channel>
<channel lang="en" xmltv_id="MTV90s.us" site_id="69">MTV 90s</channel>
<channel lang="en" xmltv_id="MTVGlobal.us" site_id="39">MTV Global</channel>
<channel lang="en" xmltv_id="MTVHitsEurope.us" site_id="71">MTV Hits Europe</channel>
<channel lang="en" xmltv_id="MTVLiveHD.us" site_id="1302">MTV Live HD</channel>
<channel lang="en" xmltv_id="MyHits.ee" site_id="76">MyHits</channel>
<channel lang="en" xmltv_id="MyZenTV.fr" site_id="1306">MyZen TV</channel>
<channel lang="en" xmltv_id="NationalGeographicChannelHDEurope.us" site_id="19">National Geographic Channel HD Europe</channel>
<channel lang="en" xmltv_id="NationalGeographicWildEurope.us" site_id="79">National Geographic Wild Europe</channel>
<channel lang="en" xmltv_id="NickelodeonCIS.us" site_id="58">Nickelodeon CIS</channel>
<channel lang="en" xmltv_id="NickJrScandinavia.us" site_id="1300">Nick Jr Scandinavia</channel>
<channel lang="en" xmltv_id="NicktoonsScandinavia.us" site_id="1301">Nicktoons Scandinavia</channel>
<channel lang="en" xmltv_id="NTV.de" site_id="145">N-TV</channel>
<channel lang="en" xmltv_id="NTVMirBaltic.ru" site_id="14">NTV Mir Baltic</channel>
<channel lang="en" xmltv_id="NTVSerial.ru" site_id="1289">NTV Serial</channel>
<channel lang="en" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel>
<channel lang="en" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel>
<channel lang="en" xmltv_id="PerviyBaltijskyiKanal.ru" site_id="28">Perviy Baltijskyi Kanal</channel>
<channel lang="en" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel>
<channel lang="en" xmltv_id="ProSiebenDeutschland.de" site_id="60">ProSieben Deutschland</channel>
<channel lang="en" xmltv_id="PyatnitsaInternational.ru" site_id="1304">Pyatnitsa! International</channel>
<channel lang="en" xmltv_id="Rai1.it" site_id="86">Rai 1</channel>
<channel lang="en" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel>
<channel lang="en" xmltv_id="RENTVBaltic.ru" site_id="23">REN TV Baltic</channel>
<channel lang="en" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel>
<channel lang="en" xmltv_id="Rossiya24.ru" site_id="153">Rossiya 24</channel>
<channel lang="en" xmltv_id="RTLDeutschland.de" site_id="20">RTL Deutschland</channel>
<channel lang="en" xmltv_id="RTRPlaneta.ru" site_id="18">RTR Planeta</channel>
<channel lang="en" xmltv_id="Sat1Deutschland.de" site_id="11">Sat. 1 Deutschland</channel>
<channel lang="en" xmltv_id="SetantaSports1Evraziya.ie" site_id="1206">Setanta Sports 1 Evraziya</channel>
<channel lang="en" xmltv_id="SkyNewsInternational.uk" site_id="91">Sky News International</channel>
<channel lang="en" xmltv_id="Smartzone.ee" site_id="1344">Smartzone</channel>
<channel lang="en" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel>
<channel lang="en" xmltv_id="StingrayDjazz.ca" site_id="1129">Stingray Djazz</channel>
<channel lang="en" xmltv_id="StingrayIConcerts.ca" site_id="731">Stingray IConcerts</channel>
<channel lang="en" xmltv_id="STSBaltic.ru" site_id="1087">STS Baltic</channel>
<channel lang="en" xmltv_id="SuperRTLDeutschland.de" site_id="17">Super RTL Deutschland</channel>
<channel lang="en" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel>
<channel lang="en" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel>
<channel lang="en" xmltv_id="TelecafeInternational.ru" site_id="703">Telecafé International</channel>
<channel lang="en" xmltv_id="TelekanalFutbol.ru" site_id="262">Telekanal Futbol</channel>
<channel lang="en" xmltv_id="TLCRussia.us" site_id="823">TLC Russia</channel>
<channel lang="en" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel>
<channel lang="en" xmltv_id="TravelChannelEurope.us" site_id="1222">Travel Channel Europe</channel>
<channel lang="en" xmltv_id="TV3Eesti.ee" site_id="2">TV 3 Eesti</channel>
<channel lang="en" xmltv_id="TV3Film.lv" site_id="226">TV 3 Film</channel>
<channel lang="en" xmltv_id="TV3Plus.lv" site_id="221">TV 3 Plus</channel>
<channel lang="en" xmltv_id="TV3Sport.lv" site_id="228">TV 3 Sport</channel>
<channel lang="en" xmltv_id="TV3Sport2.lv" site_id="229">TV 3 Sport 2</channel>
<channel lang="en" xmltv_id="TV5MondeEurope.fr" site_id="85">TV5Monde Europe</channel>
<channel lang="en" xmltv_id="TV6Eesti.ee" site_id="223">TV 6 Eesti</channel>
<channel lang="en" xmltv_id="TV1000Action.se" site_id="227">TV 1000 Action</channel>
<channel lang="en" xmltv_id="TV1000East.se" site_id="224">TV 1000 East</channel>
<channel lang="en" xmltv_id="TV1000RusskoeKino.se" site_id="225">TV 1000 Russkoe Kino</channel>
<channel lang="en" xmltv_id="TVCentrInternational.ru" site_id="717">TV Centr International</channel>
<channel lang="en" xmltv_id="TVEInternacionalEuropa.es" site_id="255">TVE Internacional Europa</channel>
<channel lang="en" xmltv_id="TVN.ee" site_id="140">TVN</channel>
<channel lang="en" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel>
<channel lang="en" xmltv_id="UsadbaInternational.ru" site_id="737">Usadba International</channel>
<channel lang="en" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel>
<channel lang="en" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel>
<channel lang="en" xmltv_id="ViasatNatureEast.se" site_id="716">Viasat Nature East</channel>
<channel lang="en" xmltv_id="VIPComedy.se" site_id="1303">VIP Comedy</channel>
<channel lang="en" xmltv_id="Vremya.ru" site_id="94">Vremya</channel>
<channel lang="en" xmltv_id="YLETV1.fi" site_id="12">YLE TV 1</channel>
<channel lang="en" xmltv_id="YLETV2.fi" site_id="13">YLE TV 2</channel>
</channels>
</site>

View file

@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?>
<site site="teliatv.ee">
<channels>
<channel lang="et" xmltv_id="1Plus2.lv" site_id="1341">1+2</channel>
<channel lang="et" xmltv_id="AljazeeraEnglish.qa" site_id="89">Aljazeera English</channel>
<channel lang="et" xmltv_id="AloTV.ee" site_id="157">Alo TV</channel>
<channel lang="et" xmltv_id="AMCRussia.us" site_id="829">AMC Russia</channel>
<channel lang="et" xmltv_id="AnimalPlanetRossiya.us" site_id="31">Animal Planet Rossiya</channel>
<channel lang="et" xmltv_id="ARTEFrancais.fr" site_id="24">ARTE Français</channel>
<channel lang="et" xmltv_id="BBCEarthAsia.uk" site_id="1264">BBC Earth Asia</channel>
<channel lang="et" xmltv_id="BBCWorldNewsEurope.uk" site_id="52">BBC World News Europe</channel>
<channel lang="et" xmltv_id="BloombergTVEurope.us" site_id="81">Bloomberg TV Europe</channel>
<channel lang="et" xmltv_id="BoomerangCentralEasternEurope.us" site_id="57">Boomerang Central &amp; Eastern Europe</channel>
<channel lang="et" xmltv_id="Canal24Horas.es" site_id="144">Canal 24 Horas</channel>
<channel lang="et" xmltv_id="CartoonNetworkRussiaSouthEastEurope.us" site_id="55">Cartoon Network Russia &amp; South East Europe</channel>
<channel lang="et" xmltv_id="ClubMTV.us" site_id="70">Club MTV</channel>
<channel lang="et" xmltv_id="CMusicTV.uk" site_id="155">C Music TV</channel>
<channel lang="et" xmltv_id="CNBCEurope.us" site_id="82">CNBC Europe</channel>
<channel lang="et" xmltv_id="CNNInternationalEurope.us" site_id="50">CNN International Europe</channel>
<channel lang="et" xmltv_id="DiscoveryChannelRossiya.us" site_id="26">Discovery Channel Rossiya</channel>
<channel lang="et" xmltv_id="DiscoveryScienceRossiya.us" site_id="33">Discovery Science Rossiya</channel>
<channel lang="et" xmltv_id="DisneyChannelScandinavia.us" site_id="102">Disney Channel Scandinavia</channel>
<channel lang="et" xmltv_id="DisneyJuniorScandinavia.us" site_id="103">Disney Junior Scandinavia</channel>
<channel lang="et" xmltv_id="DomKinoInternational.ru" site_id="95">Dom Kino International</channel>
<channel lang="et" xmltv_id="Dozhd.ru" site_id="828">Dozhd</channel>
<channel lang="et" xmltv_id="DTXRossiya.us" site_id="217">DTX Rossiya</channel>
<channel lang="et" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel>
<channel lang="et" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel>
<channel lang="et" xmltv_id="Duo4.ee" site_id="101">Duo 4</channel>
<channel lang="et" xmltv_id="Duo5.ee" site_id="728">Duo 5</channel>
<channel lang="et" xmltv_id="Duo6.ee" site_id="1080">Duo 6</channel>
<channel lang="et" xmltv_id="Duo7.ee" site_id="1343">Duo 7</channel>
<channel lang="et" xmltv_id="Dusk.nl" site_id="1088">Dusk</channel>
<channel lang="et" xmltv_id="DWEnglish.de" site_id="73">DW English</channel>
<channel lang="et" xmltv_id="EestiKanal.ee" site_id="1333">Eesti Kanal</channel>
<channel lang="et" xmltv_id="EntusiastTV.ee" site_id="1290">Entusiast TV</channel>
<channel lang="et" xmltv_id="EpicDrama.se" site_id="1292">Epic Drama</channel>
<channel lang="et" xmltv_id="ETV.ee" site_id="1">ETV</channel>
<channel lang="et" xmltv_id="ETV2.ee" site_id="111">ETV 2</channel>
<channel lang="et" xmltv_id="ETVPlus.ee" site_id="1252">ETV +</channel>
<channel lang="et" xmltv_id="Eurochannel.us" site_id="1241">Eurochannel</channel>
<channel lang="et" xmltv_id="EuroNewsRusskiy.fr" site_id="59">EuroNews Russkiy</channel>
<channel lang="et" xmltv_id="Eurosport1Rossiya.fr" site_id="35">Eurosport 1 Rossiya</channel>
<channel lang="et" xmltv_id="FashionTVRussia.fr" site_id="54">FashionTV Russia</channel>
<channel lang="et" xmltv_id="FightSports.us" site_id="1268">Fight Sports</channel>
<channel lang="et" xmltv_id="Filmzone.ee" site_id="1238">Filmzone</channel>
<channel lang="et" xmltv_id="FilmzonePlus.ee" site_id="1239">Filmzone+</channel>
<channel lang="et" xmltv_id="FoxLifeRussia.us" site_id="105">Fox Life Russia</channel>
<channel lang="et" xmltv_id="FoxRussia.us" site_id="77">Fox Russia</channel>
<channel lang="et" xmltv_id="France2.fr" site_id="256">France 2</channel>
<channel lang="et" xmltv_id="France24English.fr" site_id="143">France 24 English</channel>
<channel lang="et" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel>
<channel lang="et" xmltv_id="History2Asia.us" site_id="1236">History 2 Asia</channel>
<channel lang="et" xmltv_id="HistoryRussia.us" site_id="251">History Russia</channel>
<channel lang="et" xmltv_id="HustlerTVEurope.us" site_id="90">Hustler TV Europe</channel>
<channel lang="et" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel>
<channel lang="et" xmltv_id="InvestigationDiscoveryRossiya.us" site_id="32">Investigation Discovery Rossiya</channel>
<channel lang="et" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel>
<channel lang="et" xmltv_id="KaruselInternational.ru" site_id="75">Karusel International</channel>
<channel lang="et" xmltv_id="KidzonePlus.ee" site_id="1293">Kidzone+</channel>
<channel lang="et" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel>
<channel lang="et" xmltv_id="KIKA.de" site_id="78">KIKA</channel>
<channel lang="et" xmltv_id="LifeTV.ee" site_id="220">Life TV</channel>
<channel lang="et" xmltv_id="LoloTV.lv" site_id="222">Lolo TV</channel>
<channel lang="et" xmltv_id="MCMTopRussia.fr" site_id="84">MCM Top Russia</channel>
<channel lang="et" xmltv_id="Mezzo.fr" site_id="36">Mezzo</channel>
<channel lang="et" xmltv_id="MezzoLiveHD.fr" site_id="789">Mezzo Live HD</channel>
<channel lang="et" xmltv_id="MoyaPlaneta.ru" site_id="151">Moya Planeta</channel>
<channel lang="et" xmltv_id="MTV00s.us" site_id="38">MTV 00s</channel>
<channel lang="et" xmltv_id="MTV80s.us" site_id="72">MTV 80s</channel>
<channel lang="et" xmltv_id="MTV90s.us" site_id="69">MTV 90s</channel>
<channel lang="et" xmltv_id="MTVGlobal.us" site_id="39">MTV Global</channel>
<channel lang="et" xmltv_id="MTVHitsEurope.us" site_id="71">MTV Hits Europe</channel>
<channel lang="et" xmltv_id="MTVLiveHD.us" site_id="1302">MTV Live HD</channel>
<channel lang="et" xmltv_id="MyHits.ee" site_id="76">MyHits</channel>
<channel lang="et" xmltv_id="MyZenTV.fr" site_id="1306">MyZen TV</channel>
<channel lang="et" xmltv_id="NationalGeographicChannelHDEurope.us" site_id="19">National Geographic Channel HD Europe</channel>
<channel lang="et" xmltv_id="NationalGeographicWildEurope.us" site_id="79">National Geographic Wild Europe</channel>
<channel lang="et" xmltv_id="NickelodeonCIS.us" site_id="58">Nickelodeon CIS</channel>
<channel lang="et" xmltv_id="NickJrScandinavia.us" site_id="1300">Nick Jr Scandinavia</channel>
<channel lang="et" xmltv_id="NicktoonsScandinavia.us" site_id="1301">Nicktoons Scandinavia</channel>
<channel lang="et" xmltv_id="NTV.de" site_id="145">N-TV</channel>
<channel lang="et" xmltv_id="NTVMirBaltic.ru" site_id="14">NTV Mir Baltic</channel>
<channel lang="et" xmltv_id="NTVSerial.ru" site_id="1289">NTV Serial</channel>
<channel lang="et" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel>
<channel lang="et" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel>
<channel lang="et" xmltv_id="PerviyBaltijskyiKanal.ru" site_id="28">Perviy Baltijskyi Kanal</channel>
<channel lang="et" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel>
<channel lang="et" xmltv_id="ProSiebenDeutschland.de" site_id="60">ProSieben Deutschland</channel>
<channel lang="et" xmltv_id="PyatnitsaInternational.ru" site_id="1304">Pyatnitsa! International</channel>
<channel lang="et" xmltv_id="Rai1.it" site_id="86">Rai 1</channel>
<channel lang="et" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel>
<channel lang="et" xmltv_id="RENTVBaltic.ru" site_id="23">REN TV Baltic</channel>
<channel lang="et" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel>
<channel lang="et" xmltv_id="Rossiya24.ru" site_id="153">Rossiya 24</channel>
<channel lang="et" xmltv_id="RTLDeutschland.de" site_id="20">RTL Deutschland</channel>
<channel lang="et" xmltv_id="RTRPlaneta.ru" site_id="18">RTR Planeta</channel>
<channel lang="et" xmltv_id="Sat1Deutschland.de" site_id="11">Sat. 1 Deutschland</channel>
<channel lang="et" xmltv_id="SetantaSports1Evraziya.ie" site_id="1206">Setanta Sports 1 Evraziya</channel>
<channel lang="et" xmltv_id="SkyNewsInternational.uk" site_id="91">Sky News International</channel>
<channel lang="et" xmltv_id="Smartzone.ee" site_id="1344">Smartzone</channel>
<channel lang="et" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel>
<channel lang="et" xmltv_id="StingrayDjazz.ca" site_id="1129">Stingray Djazz</channel>
<channel lang="et" xmltv_id="StingrayIConcerts.ca" site_id="731">Stingray IConcerts</channel>
<channel lang="et" xmltv_id="STSBaltic.ru" site_id="1087">STS Baltic</channel>
<channel lang="et" xmltv_id="SuperRTLDeutschland.de" site_id="17">Super RTL Deutschland</channel>
<channel lang="et" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel>
<channel lang="et" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel>
<channel lang="et" xmltv_id="TelecafeInternational.ru" site_id="703">Telecafé International</channel>
<channel lang="et" xmltv_id="TelekanalFutbol.ru" site_id="262">Telekanal Futbol</channel>
<channel lang="et" xmltv_id="TLCRussia.us" site_id="823">TLC Russia</channel>
<channel lang="et" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel>
<channel lang="et" xmltv_id="TravelChannelEurope.us" site_id="1222">Travel Channel Europe</channel>
<channel lang="et" xmltv_id="TV3Eesti.ee" site_id="2">TV 3 Eesti</channel>
<channel lang="et" xmltv_id="TV3Film.lv" site_id="226">TV 3 Film</channel>
<channel lang="et" xmltv_id="TV3Plus.lv" site_id="221">TV 3 Plus</channel>
<channel lang="et" xmltv_id="TV3Sport.lv" site_id="228">TV 3 Sport</channel>
<channel lang="et" xmltv_id="TV3Sport2.lv" site_id="229">TV 3 Sport 2</channel>
<channel lang="et" xmltv_id="TV5MondeEurope.fr" site_id="85">TV5Monde Europe</channel>
<channel lang="et" xmltv_id="TV6Eesti.ee" site_id="223">TV 6 Eesti</channel>
<channel lang="et" xmltv_id="TV1000Action.se" site_id="227">TV 1000 Action</channel>
<channel lang="et" xmltv_id="TV1000East.se" site_id="224">TV 1000 East</channel>
<channel lang="et" xmltv_id="TV1000RusskoeKino.se" site_id="225">TV 1000 Russkoe Kino</channel>
<channel lang="et" xmltv_id="TVCentrInternational.ru" site_id="717">TV Centr International</channel>
<channel lang="et" xmltv_id="TVEInternacionalEuropa.es" site_id="255">TVE Internacional Europa</channel>
<channel lang="et" xmltv_id="TVN.ee" site_id="140">TVN</channel>
<channel lang="et" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel>
<channel lang="et" xmltv_id="UsadbaInternational.ru" site_id="737">Usadba International</channel>
<channel lang="et" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel>
<channel lang="et" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel>
<channel lang="et" xmltv_id="ViasatNatureEast.se" site_id="716">Viasat Nature East</channel>
<channel lang="et" xmltv_id="VIPComedy.se" site_id="1303">VIP Comedy</channel>
<channel lang="et" xmltv_id="Vremya.ru" site_id="94">Vremya</channel>
<channel lang="et" xmltv_id="YLETV1.fi" site_id="12">YLE TV 1</channel>
<channel lang="et" xmltv_id="YLETV2.fi" site_id="13">YLE TV 2</channel>
</channels>
</site>

View file

@ -0,0 +1,137 @@
<?xml version="1.0" encoding="UTF-8"?>
<site site="teliatv.ee">
<channels>
<channel lang="ru" xmltv_id="1Plus2.lv" site_id="1341">1+2</channel>
<channel lang="ru" xmltv_id="AljazeeraEnglish.qa" site_id="89">Aljazeera English</channel>
<channel lang="ru" xmltv_id="AloTV.ee" site_id="157">Alo TV</channel>
<channel lang="ru" xmltv_id="AMCRussia.us" site_id="829">AMC Russia</channel>
<channel lang="ru" xmltv_id="AnimalPlanetRossiya.us" site_id="31">Animal Planet Rossiya</channel>
<channel lang="ru" xmltv_id="ARTEFrancais.fr" site_id="24">ARTE Français</channel>
<channel lang="ru" xmltv_id="BBCEarthAsia.uk" site_id="1264">BBC Earth Asia</channel>
<channel lang="ru" xmltv_id="BBCWorldNewsEurope.uk" site_id="52">BBC World News Europe</channel>
<channel lang="ru" xmltv_id="BloombergTVEurope.us" site_id="81">Bloomberg TV Europe</channel>
<channel lang="ru" xmltv_id="BoomerangCentralEasternEurope.us" site_id="57">Boomerang Central &amp; Eastern Europe</channel>
<channel lang="ru" xmltv_id="Canal24Horas.es" site_id="144">Canal 24 Horas</channel>
<channel lang="ru" xmltv_id="CartoonNetworkRussiaSouthEastEurope.us" site_id="55">Cartoon Network Russia &amp; South East Europe</channel>
<channel lang="ru" xmltv_id="ClubMTV.us" site_id="70">Club MTV</channel>
<channel lang="ru" xmltv_id="CMusicTV.uk" site_id="155">C Music TV</channel>
<channel lang="ru" xmltv_id="CNBCEurope.us" site_id="82">CNBC Europe</channel>
<channel lang="ru" xmltv_id="CNNInternationalEurope.us" site_id="50">CNN International Europe</channel>
<channel lang="ru" xmltv_id="DiscoveryChannelRossiya.us" site_id="26">Discovery Channel Rossiya</channel>
<channel lang="ru" xmltv_id="DiscoveryScienceRossiya.us" site_id="33">Discovery Science Rossiya</channel>
<channel lang="ru" xmltv_id="DisneyChannelScandinavia.us" site_id="102">Disney Channel Scandinavia</channel>
<channel lang="ru" xmltv_id="DisneyJuniorScandinavia.us" site_id="103">Disney Junior Scandinavia</channel>
<channel lang="ru" xmltv_id="DomKinoInternational.ru" site_id="95">Dom Kino International</channel>
<channel lang="ru" xmltv_id="Dozhd.ru" site_id="828">Dozhd</channel>
<channel lang="ru" xmltv_id="DTXRossiya.us" site_id="217">DTX Rossiya</channel>
<channel lang="ru" xmltv_id="DuckTVSD.sk" site_id="1108">Duck TV SD</channel>
<channel lang="ru" xmltv_id="Duo3.ee" site_id="257">Duo 3</channel>
<channel lang="ru" xmltv_id="Duo4.ee" site_id="101">Duo 4</channel>
<channel lang="ru" xmltv_id="Duo5.ee" site_id="728">Duo 5</channel>
<channel lang="ru" xmltv_id="Duo6.ee" site_id="1080">Duo 6</channel>
<channel lang="ru" xmltv_id="Duo7.ee" site_id="1343">Duo 7</channel>
<channel lang="ru" xmltv_id="Dusk.nl" site_id="1088">Dusk</channel>
<channel lang="ru" xmltv_id="DWEnglish.de" site_id="73">DW English</channel>
<channel lang="ru" xmltv_id="EestiKanal.ee" site_id="1333">Eesti Kanal</channel>
<channel lang="ru" xmltv_id="EntusiastTV.ee" site_id="1290">Entusiast TV</channel>
<channel lang="ru" xmltv_id="EpicDrama.se" site_id="1292">Epic Drama</channel>
<channel lang="ru" xmltv_id="ETV.ee" site_id="1">ETV</channel>
<channel lang="ru" xmltv_id="ETV2.ee" site_id="111">ETV 2</channel>
<channel lang="ru" xmltv_id="ETVPlus.ee" site_id="1252">ETV +</channel>
<channel lang="ru" xmltv_id="Eurochannel.us" site_id="1241">Eurochannel</channel>
<channel lang="ru" xmltv_id="EuroNewsRusskiy.fr" site_id="59">EuroNews Russkiy</channel>
<channel lang="ru" xmltv_id="Eurosport1Rossiya.fr" site_id="35">Eurosport 1 Rossiya</channel>
<channel lang="ru" xmltv_id="FashionTVRussia.fr" site_id="54">FashionTV Russia</channel>
<channel lang="ru" xmltv_id="FightSports.us" site_id="1268">Fight Sports</channel>
<channel lang="ru" xmltv_id="Filmzone.ee" site_id="1238">Filmzone</channel>
<channel lang="ru" xmltv_id="FilmzonePlus.ee" site_id="1239">Filmzone+</channel>
<channel lang="ru" xmltv_id="FoxLifeRussia.us" site_id="105">Fox Life Russia</channel>
<channel lang="ru" xmltv_id="FoxRussia.us" site_id="77">Fox Russia</channel>
<channel lang="ru" xmltv_id="France2.fr" site_id="256">France 2</channel>
<channel lang="ru" xmltv_id="France24English.fr" site_id="143">France 24 English</channel>
<channel lang="ru" xmltv_id="FuelTV.us" site_id="1182">Fuel TV</channel>
<channel lang="ru" xmltv_id="History2Asia.us" site_id="1236">History 2 Asia</channel>
<channel lang="ru" xmltv_id="HistoryRussia.us" site_id="251">History Russia</channel>
<channel lang="ru" xmltv_id="HustlerTVEurope.us" site_id="90">Hustler TV Europe</channel>
<channel lang="ru" xmltv_id="Inspira.ee" site_id="1338">Inspira</channel>
<channel lang="ru" xmltv_id="InvestigationDiscoveryRossiya.us" site_id="32">Investigation Discovery Rossiya</channel>
<channel lang="ru" xmltv_id="Kanal2.ee" site_id="3">Kanal 2</channel>
<channel lang="ru" xmltv_id="KaruselInternational.ru" site_id="75">Karusel International</channel>
<channel lang="ru" xmltv_id="KidzonePlus.ee" site_id="1293">Kidzone+</channel>
<channel lang="ru" xmltv_id="KidZoneTV.ee" site_id="1086">KidZone TV</channel>
<channel lang="ru" xmltv_id="KIKA.de" site_id="78">KIKA</channel>
<channel lang="ru" xmltv_id="LifeTV.ee" site_id="220">Life TV</channel>
<channel lang="ru" xmltv_id="LoloTV.lv" site_id="222">Lolo TV</channel>
<channel lang="ru" xmltv_id="MCMTopRussia.fr" site_id="84">MCM Top Russia</channel>
<channel lang="ru" xmltv_id="Mezzo.fr" site_id="36">Mezzo</channel>
<channel lang="ru" xmltv_id="MezzoLiveHD.fr" site_id="789">Mezzo Live HD</channel>
<channel lang="ru" xmltv_id="MoyaPlaneta.ru" site_id="151">Moya Planeta</channel>
<channel lang="ru" xmltv_id="MTV00s.us" site_id="38">MTV 00s</channel>
<channel lang="ru" xmltv_id="MTV80s.us" site_id="72">MTV 80s</channel>
<channel lang="ru" xmltv_id="MTV90s.us" site_id="69">MTV 90s</channel>
<channel lang="ru" xmltv_id="MTVGlobal.us" site_id="39">MTV Global</channel>
<channel lang="ru" xmltv_id="MTVHitsEurope.us" site_id="71">MTV Hits Europe</channel>
<channel lang="ru" xmltv_id="MTVLiveHD.us" site_id="1302">MTV Live HD</channel>
<channel lang="ru" xmltv_id="MyHits.ee" site_id="76">MyHits</channel>
<channel lang="ru" xmltv_id="MyZenTV.fr" site_id="1306">MyZen TV</channel>
<channel lang="ru" xmltv_id="NationalGeographicChannelHDEurope.us" site_id="19">National Geographic Channel HD Europe</channel>
<channel lang="ru" xmltv_id="NationalGeographicWildEurope.us" site_id="79">National Geographic Wild Europe</channel>
<channel lang="ru" xmltv_id="NickelodeonCIS.us" site_id="58">Nickelodeon CIS</channel>
<channel lang="ru" xmltv_id="NickJrScandinavia.us" site_id="1300">Nick Jr Scandinavia</channel>
<channel lang="ru" xmltv_id="NicktoonsScandinavia.us" site_id="1301">Nicktoons Scandinavia</channel>
<channel lang="ru" xmltv_id="NTV.de" site_id="145">N-TV</channel>
<channel lang="ru" xmltv_id="NTVMirBaltic.ru" site_id="14">NTV Mir Baltic</channel>
<channel lang="ru" xmltv_id="NTVSerial.ru" site_id="1289">NTV Serial</channel>
<channel lang="ru" xmltv_id="OkhotaiRybalka.ru" site_id="74">Okhota i Rybalka</channel>
<channel lang="ru" xmltv_id="OrsentTV.ee" site_id="141">Orsent TV</channel>
<channel lang="ru" xmltv_id="PerviyBaltijskyiKanal.ru" site_id="28">Perviy Baltijskyi Kanal</channel>
<channel lang="ru" xmltv_id="PrivateTV.nl" site_id="148">Private TV</channel>
<channel lang="ru" xmltv_id="ProSiebenDeutschland.de" site_id="60">ProSieben Deutschland</channel>
<channel lang="ru" xmltv_id="PyatnitsaInternational.ru" site_id="1304">Pyatnitsa! International</channel>
<channel lang="ru" xmltv_id="Rai1.it" site_id="86">Rai 1</channel>
<channel lang="ru" xmltv_id="RBKTV.ru" site_id="97">RBK TV</channel>
<channel lang="ru" xmltv_id="RENTVBaltic.ru" site_id="23">REN TV Baltic</channel>
<channel lang="ru" xmltv_id="RFMTV.fr" site_id="83">RFM TV</channel>
<channel lang="ru" xmltv_id="Rossiya24.ru" site_id="153">Rossiya 24</channel>
<channel lang="ru" xmltv_id="RTLDeutschland.de" site_id="20">RTL Deutschland</channel>
<channel lang="ru" xmltv_id="RTRPlaneta.ru" site_id="18">RTR Planeta</channel>
<channel lang="ru" xmltv_id="Sat1Deutschland.de" site_id="11">Sat. 1 Deutschland</channel>
<channel lang="ru" xmltv_id="SetantaSports1Evraziya.ie" site_id="1206">Setanta Sports 1 Evraziya</channel>
<channel lang="ru" xmltv_id="SkyNewsInternational.uk" site_id="91">Sky News International</channel>
<channel lang="ru" xmltv_id="Smartzone.ee" site_id="1344">Smartzone</channel>
<channel lang="ru" xmltv_id="StingrayClassica.ca" site_id="790">Stingray Classica</channel>
<channel lang="ru" xmltv_id="StingrayDjazz.ca" site_id="1129">Stingray Djazz</channel>
<channel lang="ru" xmltv_id="StingrayIConcerts.ca" site_id="731">Stingray IConcerts</channel>
<channel lang="ru" xmltv_id="STSBaltic.ru" site_id="1087">STS Baltic</channel>
<channel lang="ru" xmltv_id="SuperRTLDeutschland.de" site_id="17">Super RTL Deutschland</channel>
<channel lang="ru" xmltv_id="TaevasTV7.fi" site_id="248">Taevas TV7</channel>
<channel lang="ru" xmltv_id="TBNBaltia.ee" site_id="261">TBN Baltia</channel>
<channel lang="ru" xmltv_id="TelecafeInternational.ru" site_id="703">Telecafé International</channel>
<channel lang="ru" xmltv_id="TelekanalFutbol.ru" site_id="262">Telekanal Futbol</channel>
<channel lang="ru" xmltv_id="TLCRussia.us" site_id="823">TLC Russia</channel>
<channel lang="ru" xmltv_id="TNTComedy.ru" site_id="1279">TNT Comedy</channel>
<channel lang="ru" xmltv_id="TravelChannelEurope.us" site_id="1222">Travel Channel Europe</channel>
<channel lang="ru" xmltv_id="TV3Eesti.ee" site_id="2">TV 3 Eesti</channel>
<channel lang="ru" xmltv_id="TV3Film.lv" site_id="226">TV 3 Film</channel>
<channel lang="ru" xmltv_id="TV3Plus.lv" site_id="221">TV 3 Plus</channel>
<channel lang="ru" xmltv_id="TV3Sport.lv" site_id="228">TV 3 Sport</channel>
<channel lang="ru" xmltv_id="TV3Sport2.lv" site_id="229">TV 3 Sport 2</channel>
<channel lang="ru" xmltv_id="TV5MondeEurope.fr" site_id="85">TV5Monde Europe</channel>
<channel lang="ru" xmltv_id="TV6Eesti.ee" site_id="223">TV 6 Eesti</channel>
<channel lang="ru" xmltv_id="TV1000Action.se" site_id="227">TV 1000 Action</channel>
<channel lang="ru" xmltv_id="TV1000East.se" site_id="224">TV 1000 East</channel>
<channel lang="ru" xmltv_id="TV1000RusskoeKino.se" site_id="225">TV 1000 Russkoe Kino</channel>
<channel lang="ru" xmltv_id="TVCentrInternational.ru" site_id="717">TV Centr International</channel>
<channel lang="ru" xmltv_id="TVEInternacionalEuropa.es" site_id="255">TVE Internacional Europa</channel>
<channel lang="ru" xmltv_id="TVN.ee" site_id="140">TVN</channel>
<channel lang="ru" xmltv_id="TVXXI.lv" site_id="8">TV XXI</channel>
<channel lang="ru" xmltv_id="UsadbaInternational.ru" site_id="737">Usadba International</channel>
<channel lang="ru" xmltv_id="ViasatExplore.se" site_id="230">Viasat Explore</channel>
<channel lang="ru" xmltv_id="ViasatHistory.se" site_id="231">Viasat History</channel>
<channel lang="ru" xmltv_id="ViasatNatureEast.se" site_id="716">Viasat Nature East</channel>
<channel lang="ru" xmltv_id="VIPComedy.se" site_id="1303">VIP Comedy</channel>
<channel lang="ru" xmltv_id="Vremya.ru" site_id="94">Vremya</channel>
<channel lang="ru" xmltv_id="YLETV1.fi" site_id="12">YLE TV 1</channel>
<channel lang="ru" xmltv_id="YLETV2.fi" site_id="13">YLE TV 2</channel>
</channels>
</site>