UK Sat HD is back - 2023.

dsayers2014

VIP Member
I'm not using a pay server as it was given via a share mainly to test custommix the guy that gave me it doesn't sell so probably not the same provider that's been going around.
 
Last edited:

wheelo

Admin
Staff member
TK Supporter
I'm not using a pay server as it was given via a share mainly to test custommix the guy that gave me it doesn't sell so probably not the same provider that's been going around.
But it's still working?
I need to pretend I have something to offer these guys lol
 

Drox

TK Veteran
Is there anything similar to the custommix importer for 19.2e stream relay channels, so that they automatically update as you scan?

thanks
 

dsayers2014

VIP Member
Is there anything similar to the custommix importer for 19.2e stream relay channels, so that they automatically update as you scan?

thanks
It should be possible

# TSIDs that contain services that need stream relay (or this could be done by LCN or CHID).

I'm not sure how you could obtain the TSIDs. I also do this for my own to add via channel numbers to sky uk so I can add IPTV to HD channels

Code:
# LCNs (channel numbers) that need stream relay.
stream_relay_LCNs = [
106,
107,
108,
113,
114,
124,
129,
139,
152,
159,
165,
206,
207,
208,
222,
229,
301,
304,
306,
307,
312,
325,
326,
401,
402,
403,
404,
405,
406,
408,
407,
409,
412,
415,
416,
418,
426,
433,
491,
626,
794,
875,
881,
]

This is the full code

Code:
<custommix>
    <hacks>
<![CDATA[

# LCNs (channel numbers) that need stream relay.
LCNs = [106, 107]

for service in sorted(list(services[section_identifier]["video"].keys())):
        serv = services[section_identifier]["video"][service]
        if service in LCNs and ("free_ca" not in serv or serv["free_ca"] == 1): # only on listed transponders and only encrypted services
            url = "http://127.0.0.1:17999/1:0:1:%x:%x:%x:%x:0:0:0:" % (
                serv["service_id"],
                serv["transport_stream_id"],
                serv["original_network_id"],
                serv["namespace"],
            )
            serv["stream"] = quote(url)
            serv["namespace"] = 33 # writing a dummy namespace is a requirement of stream relay
           
]]>
    </hacks>
</custommix>

Attached is an example file but I don't know the numbers so edit to suit
 

Attachments

  • sat_192_sky_deutschland_CustomMix.xml.zip
    574 bytes · Views: 6
Last edited:
Top