diff --git a/astra-sm.lua b/astra-sm.lua index d0ac1b7..b6e9ada 100644 --- a/astra-sm.lua +++ b/astra-sm.lua @@ -1,80 +1,79 @@ #!/usr/bin/astra --- Config script example to stream ZeonBood T2-MI services from Astra 4A & SES 5 (4.9E) +-- Config script example to stream ZeonBud T2-MI services from Eutelsat 9B (9.0E) -- For other providers or services change settings with yours. -- To use this config add channels in bouquet in the following format: --- #SERVICE 1:0:1:B:0:0:0:0:0:0:http%3a//0.0.0.0%3a9999/zombi/11:Інтер +-- #SERVICE 1:0:1:B:0:0:0:0:0:0:http%3a//0.0.0.0%3a9999/zombi/11:Inter -- #DESCRIPTION Інтер --- #SERVICE 1:0:1:C:0:0:0:0:0:0:http%3a//0.0.0.0%3a9999/zombi/12:Україна +-- #SERVICE 1:0:1:C:0:0:0:0:0:0:http%3a//0.0.0.0%3a9999/zombi/12:Ukraina -- #DESCRIPTION Україна -- etc... -- -- Аdd in /etc/enigma2/lamedb --- 00310000:0064:2324 --- s 12188000:30000000:0:4:49:2:0:1:2:0:2:10:1:0 +-- 005a0000:006e:2324 +-- s 12226000:30000000:1:4:90:2:0:1:2:3:2:10:1:0 -- / --- 00310000:00c8:2324 --- s 12188000:30000000:0:4:49:2:0:1:2:0:2:20:1:0 --- / --- 00310000:012c:2324 --- s 12341000:30000000:0:3:49:2:0:1:2:0:2:30:1:0 +-- 005a0000:00d2:2324 +-- s 12226000:30000000:1:4:90:2:0:1:2:3:2:20:1:0 -- / +-- 005a0000:0136:2324 +-- s 12303000:30000000:1:4:90:2:0:1:2:3:2:30:1:0 -- --- 0320:00310000:0064:2324:1:0:0 --- ZeonBud-MX1 --- p:ZeonBud,c:031000,c:151000,f:1 --- 0320:00310000:00c8:2324:1:0:0 --- ZeonBud-MX2 --- p:ZeonBud,c:031000,c:151000,f:1 --- 0320:00310000:012c:2324:1:0:0 --- ZeonBud-MX3 --- p:ZeonBud,c:031000,c:151000,f:1 - -log.set({ stdout = false, debug = false, syslog = "astra", }) - -f12188isi10 = make_t2mi_decap({ - name = "12188H ISI10 T2-MI PLP0", - input = "http://127.0.0.1:8001/1:0:1:320:64:2324:310000:0:0:0:", +-- 006e:005a0000:006e:2324:1:0:0 +-- ZeonBud-MX1 T2-MI +-- p:ZeonBud,c:030fff,c:151000,f:1 +-- 00d2:005a0000:00d2:2324:1:0:0 +-- ZeonBud-MX2 T2-MI +-- p:ZeonBud,c:030fff,c:151000,f:1 +-- 0136:005a0000:0136:2324:1:0:0 +-- ZeonBud-MX3 T2-MI +-- p:ZeonBud,c:030fff,c:151000,f:1 + +log.set({ filename = "/var/log/astra.log", stdout = false, debug = false, color = true, syslog = "astra", }) + +f12226isi10 = make_t2mi_decap({ + name = "12226V ISI10 T2-MI PLP0", + input = "http://127.0.0.1:8001/1:0:64:6E:6E:2324:5A0000:0:0:0:", plp = 0, pnr = 0, pid = 4096, }) -f12188isi20 = make_t2mi_decap({ - name = "12188H ISI20 T2-MI PLP0", - input = "http://127.0.0.1:8001/1:0:1:320:C8:2324:310000:0:0:0:", - plp = 0, - pnr = 0, - pid = 4096, +make_channel({ + name = "ZeonBud-MX1", input = { "t2mi://f12226isi10", }, + output = { "http://0.0.0.0:9999/zeonbud/mx1", }, }) -f12341isi30 = make_t2mi_decap({ - name = "12341H ISI30 T2-MI PLP0", - input = "http://127.0.0.1:8001/1:0:1:320:12C:2324:310000:0:0:0:", +f12226isi20 = make_t2mi_decap({ + name = "12226V ISI20 T2-MI PLP0", + input = "http://127.0.0.1:8001/1:0:64:D2:D2:2324:5A0000:0:0:0:", plp = 0, pnr = 0, pid = 4096, }) -make_channel({ - name = "ZeonBud-MX1", input = { "t2mi://f12188isi10", }, - output = { "http://0.0.0.0:9999/zombi/mx1", }, +make_channel({ + name = "ZeonBud-MX2", input = { "t2mi://f12226isi20", }, + output = { "http://0.0.0.0:9999/zeonbud/mx2", }, }) -make_channel({ - name = "ZeonBud-MX2", input = { "t2mi://f12188isi20", }, - output = { "http://0.0.0.0:9999/zombi/mx2", }, +f12303isi30 = make_t2mi_decap({ + name = "12303V ISI30 T2-MI PLP0", + input = "http://127.0.0.1:8001/1:0:64:136:136:2324:5A0000:0:0:0:", + plp = 0, + pnr = 0, + pid = 4096, }) -make_channel({ - name = "ZeonBud-MX3", input = { "t2mi://f12341isi30", }, - output = { "http://0.0.0.0:9999/zombi/mx3", }, +make_channel({ + name = "ZeonBud-MX3", input = { "t2mi://f12303isi30", }, + output = { "http://0.0.0.0:9999/zeonbud/mx3", }, }) make_channel({ - name = "Інтер", + name = "Перший", input = { - "t2mi://f12188isi10#pnr=11" + "t2mi://f12226isi10#pnr=11" }, output = { "http://0.0.0.0:9999/zombi/11" @@ -82,9 +81,9 @@ make_channel({ }) make_channel({ - name = "Україна", + name = "1+1 Україна", input = { - "t2mi://f12188isi10#pnr=12" + "t2mi://f12226isi10#pnr=12" }, output = { "http://0.0.0.0:9999/zombi/12" @@ -92,9 +91,9 @@ make_channel({ }) make_channel({ - name = "1+1", + name = "1+1 МАРАФОН", input = { - "t2mi://f12188isi10#pnr=13" + "t2mi://f12226isi10#pnr=13" }, output = { "http://0.0.0.0:9999/zombi/13" @@ -102,9 +101,9 @@ make_channel({ }) make_channel({ - name = "НТН", + name = "Суспільне Культура", input = { - "t2mi://f12188isi10#pnr=14" + "t2mi://f12226isi10#pnr=14" }, output = { "http://0.0.0.0:9999/zombi/14" @@ -112,9 +111,9 @@ make_channel({ }) make_channel({ - name = "K-1", + name = "ICTV", input = { - "t2mi://f12188isi10#pnr=15" + "t2mi://f12226isi10#pnr=15" }, output = { "http://0.0.0.0:9999/zombi/15" @@ -122,9 +121,9 @@ make_channel({ }) make_channel({ - name = "ПЕРШИЙ Т2", + name = "СТБ", input = { - "t2mi://f12188isi10#pnr=16" + "t2mi://f12226isi10#pnr=16" }, output = { "http://0.0.0.0:9999/zombi/16" @@ -132,9 +131,9 @@ make_channel({ }) make_channel({ - name = "ICTV", + name = "Інтер", input = { - "t2mi://f12188isi10#pnr=17" + "t2mi://f12226isi10#pnr=17" }, output = { "http://0.0.0.0:9999/zombi/17" @@ -142,9 +141,9 @@ make_channel({ }) make_channel({ - name = "Enter-фільм", + name = "УНІАН", input = { - "t2mi://f12188isi10#pnr=18" + "t2mi://f12226isi10#pnr=18" }, output = { "http://0.0.0.0:9999/zombi/18" @@ -152,9 +151,29 @@ make_channel({ }) make_channel({ - name = "ZOOM", + name = "БІГУДІ", input = { - "t2mi://f12188isi20#pnr=21" + "t2mi://f12226isi10#pnr=19" + }, + output = { + "http://0.0.0.0:9999/zombi/19" + } +}) + +make_channel({ + name = "super+", + input = { + "t2mi://f12226isi10#pnr=20" + }, + output = { + "http://0.0.0.0:9999/zombi/20" + } +}) + +make_channel({ + name = "Новий канал", + input = { + "t2mi://f12226isi20#pnr=21" }, output = { "http://0.0.0.0:9999/zombi/21" @@ -162,9 +181,9 @@ make_channel({ }) make_channel({ - name = "Кіноточка", + name = "TET", input = { - "t2mi://f12188isi20#pnr=22" + "t2mi://f12226isi20#pnr=22" }, output = { "http://0.0.0.0:9999/zombi/22" @@ -172,9 +191,9 @@ make_channel({ }) make_channel({ - name = "СТБ", + name = "2+2", input = { - "t2mi://f12188isi20#pnr=23" + "t2mi://f12226isi20#pnr=23" }, output = { "http://0.0.0.0:9999/zombi/23" @@ -182,9 +201,9 @@ make_channel({ }) make_channel({ - name = "ТЕТ", + name = "M-1", input = { - "t2mi://f12188isi20#pnr=24" + "t2mi://f12226isi20#pnr=24" }, output = { "http://0.0.0.0:9999/zombi/24" @@ -192,9 +211,9 @@ make_channel({ }) make_channel({ - name = "К-2", + name = "НТН", input = { - "t2mi://f12188isi20#pnr=25" + "t2mi://f12226isi20#pnr=25" }, output = { "http://0.0.0.0:9999/zombi/25" @@ -202,9 +221,9 @@ make_channel({ }) make_channel({ - name = "Новий канал", + name = "Мега", input = { - "t2mi://f12188isi20#pnr=26" + "t2mi://f12226isi20#pnr=26" }, output = { "http://0.0.0.0:9999/zombi/26" @@ -212,9 +231,9 @@ make_channel({ }) make_channel({ - name = "М-1", + name = "ПЛЮСПЛЮС", input = { - "t2mi://f12188isi20#pnr=27" + "t2mi://f12226isi20#pnr=27" }, output = { "http://0.0.0.0:9999/zombi/27" @@ -222,9 +241,9 @@ make_channel({ }) make_channel({ - name = "5 канал", + name = "МИ-УKРАЇНА+", input = { - "t2mi://f12188isi20#pnr=28" + "t2mi://f12226isi20#pnr=28" }, output = { "http://0.0.0.0:9999/zombi/28" @@ -232,9 +251,39 @@ make_channel({ }) make_channel({ - name = "Мега", + name = "Test MX2-9", + input = { + "t2mi://f12226isi20#pnr=29" + }, + output = { + "http://0.0.0.0:9999/zombi/29" + } +}) + +make_channel({ + name = "ICTV2", + input = { + "t2mi://f12226isi20#pnr=30" + }, + output = { + "http://0.0.0.0:9999/zombi/30" + } +}) + +make_channel({ + name = "ОЦЕ", input = { - "t2mi://f12341isi30#pnr=31" + "t2mi://f12226isi20#pnr=52" + }, + output = { + "http://0.0.0.0:9999/zombi/52" + } +}) + +make_channel({ + name = "K-1", + input = { + "t2mi://f12303isi30#pnr=31" }, output = { "http://0.0.0.0:9999/zombi/31" @@ -242,9 +291,9 @@ make_channel({ }) make_channel({ - name = "Pixel", + name = "K-2", input = { - "t2mi://f12341isi30#pnr=32" + "t2mi://f12303isi30#pnr=32" }, output = { "http://0.0.0.0:9999/zombi/32" @@ -252,9 +301,9 @@ make_channel({ }) make_channel({ - name = "XSPORT", + name = "ZOOM", input = { - "t2mi://f12341isi30#pnr=33" + "t2mi://f12303isi30#pnr=33" }, output = { "http://0.0.0.0:9999/zombi/33" @@ -262,9 +311,9 @@ make_channel({ }) make_channel({ - name = "НЛО ТБ", + name = "ПРЯМИЙ", input = { - "t2mi://f12341isi30#pnr=34" + "t2mi://f12303isi30#pnr=34" }, output = { "http://0.0.0.0:9999/zombi/34" @@ -272,9 +321,9 @@ make_channel({ }) make_channel({ - name = "2+2", + name = "ЕСПРЕСО TV", input = { - "t2mi://f12341isi30#pnr=35" + "t2mi://f12303isi30#pnr=35" }, output = { "http://0.0.0.0:9999/zombi/35" @@ -282,9 +331,9 @@ make_channel({ }) make_channel({ - name = "Z", + name = "XSPORT", input = { - "t2mi://f12341isi30#pnr=36" + "t2mi://f12303isi30#pnr=36" }, output = { "http://0.0.0.0:9999/zombi/36" @@ -292,9 +341,9 @@ make_channel({ }) make_channel({ - name = "ЕСПРЕСО TV", + name = "Enter-фільм", input = { - "t2mi://f12341isi30#pnr=37" + "t2mi://f12303isi30#pnr=37" }, output = { "http://0.0.0.0:9999/zombi/37" @@ -302,11 +351,21 @@ make_channel({ }) make_channel({ - name = "BUSINESS", + name = "Pixel", input = { - "t2mi://f12341isi30#pnr=38" + "t2mi://f12303isi30#pnr=38" }, output = { "http://0.0.0.0:9999/zombi/38" } }) + +make_channel({ + name = "SONCE", + input = { + "t2mi://f12303isi30#pnr=39" + }, + output = { + "http://0.0.0.0:9999/zombi/39" + } +})