Sky Auto Channel Numbering
Added by Anonymous over 10 years ago
So I may have bitten off far more than I can chew here but...
I have been experimenting with the idea of region-aware automatic channel numbering for Sky UK that matches the official channel number layout. I know that you can get TVH to get 95% of the way there but I find that I'm having to more often than not deal with new/old channels being added/removed (and I also fancied the challenge!).
So far I have written a Perl scraper to pull all the data from this URL into a MySQL db:
http://en.kingofsat.net/pack-skydigital.php
I also have another script which pulls all the data from the Sky EPG json backend into a separate table in my db:
http://tv.sky.com/channel/index
This URL can be appended with a specific region code to return a bespoke list of channels, there might need to be some manual intervention here but it should be able to figure out the vast majority of channels:
4101-19"Atherstone HD" 4097-19"Atherstone SD" 4101-12"Border England HD" 4097-12"Border England SD" 4102-36"Border Scotland HD" 4098-36"Border Scotland SD" 4103-65"Brighton HD" 4099-65"Brighton SD" 4101-3"Central Midlands HD" 4097-3"Central Midlands SD" 4104-34"Channel Isles HD" 4100-34"Channel Isles SD" 4101-20"East Midlands HD" 4097-20"East Midlands SD" 4101-2"Essex HD" 4097-2"Essex SD" 4101-24"Gloucester HD" 4097-24"Gloucester SD" 4102-35"Grampian HD" 4098-35"Grampian SD" 4101-7"Granada HD" 4097-7"Granada SD" 4103-70"Henley On Thames HD" 4099-70"Henley On Thames SD" 4103-43"HTV Wales HD" 4099-43"HTV Wales SD" 4101-4"HTV West HD" 4097-4"HTV West SD" 4103-63"HTV West / Thames Valley HD" 4099-63"HTV West / Thames Valley SD" 4101-29"Humber HD" 4097-29"Humber SD" 4101-1"London HD" 4097-1"London SD" 4101-18"London / Essex HD" 4097-18"London / Essex SD" 4103-66"London / Thames Valley HD" 4099-66"London / Thames Valley SD" 4103-64"London Kent HD" 4099-64"London Kent SD" 4101-11"Meridian East HD" 4097-11"Meridian East SD" 4103-68"Meridian North HD" 4099-68"Meridian North SD" 4101-5"Meridian South HD" 4097-5"Meridian South SD" 4101-10"Meridian South East HD" 4097-10"Meridian South East SD" 4103-45"Merseyside HD" 4099-45"Merseyside SD" 4101-21"Norfolk HD" 4097-21"Norfolk SD" 4103-62"North East Midlands HD" 4099-62"North East Midlands SD" 4101-8"North West Yorkshire HD" 4097-8"North West Yorkshire SD" 4101-26"North Yorkshire HD" 4097-26"North Yorkshire SD" 4104-33"Northern Ireland HD" 4100-33"Northern Ireland SD" 4103-71"Oxford HD" 4099-71"Oxford SD" 4104-50"Republic of Ireland HD" 4100-50"Republic of Ireland SD" 4103-41"Ridge Hill HD" 4099-41"Ridge Hill SD" 4103-61"Scarborough HD" 4099-61"Scarborough SD" 4102-37"Scottish East HD" 4098-37"Scottish East SD" 4102-38"Scottish West HD" 4098-38"Scottish West SD" 4103-60"Sheffield HD" 4099-60"Sheffield SD" 4101-28"South Lakeland HD" 4097-28"South Lakeland SD" 4103-72"South Yorkshire HD" 4099-72"South Yorkshire SD" 4103-69"Tees HD" 4099-69"Tees SD" 4101-9"Thames Valley HD" 4097-9"Thames Valley SD" 4101-27"Tring HD" 4097-27"Tring SD" 4101-13"Tyne HD" 4097-13"Tyne SD" 4101-25"West Anglia HD" 4097-25"West Anglia SD" 4103-67"West Dorset HD" 4099-67"West Dorset SD" 4101-6"Westcountry HD" 4097-6"Westcountry SD"
e.g. http://tv.sky.com/channel/index/4101-24
This is where I currently am.
So I'm thinking my next step should be to do some fuzzy string matching on the channel names and marry up the channels to each data source.
Once this was done I could lookup any channel from from the Sky EPG json feed and know the associated Service ID (from the kingofsat scrape). For example, I would know channel 101 (in my region) would be BBC One Scotland HD and also know the Service ID to go with it.
The final stag (and this is the one I'm totally stumped on) would be how I then create a custom channel list for TVH. I've been delving around in the channel, channels, dvbmuxes, dvbtransport etc folders but I'm getting a bit overwhelmed with the easiest way to achieve what I want.
Replies (142)
RE: Sky Auto Channel Numbering - Added by Kelvin Middleton over 9 years ago
Just built a clean TVH from git and grabbed latest autobouquets.pl script...it adds the channels, icon paths etc but doesn't tag the channels so I get no channel groups in Kodi. Have been playing around with this for a while now and can't find anything wrong, any help appreciated?
RE: Sky Auto Channel Numbering - Added by d p over 9 years ago
Kelvin Middleton wrote:
Just built a clean TVH from git and grabbed latest autobouquets.pl script...it adds the channels, icon paths etc but doesn't tag the channels so I get no channel groups in Kodi. Have been playing around with this for a while now and can't find anything wrong, any help appreciated?
I was having this problem too. I think it something to do with the tags not being enabled. I changed line 314 in the script to:
my $post = "{\"enabled\":true,\"name\":\"" . $tag_name . "\",\"internal\":false,\"icon\":\"\",\"titled_icon\":false,\"comment\":\"\"}";
It now sets the tags to enabled=true when creating them.
it tagged the channels correctly, I then disabled the tags I didnt want.
RE: Sky Auto Channel Numbering - Added by Rob Rob over 9 years ago
Known issue, just tag them yourself. The bulk of the job is done at this point anyway...sorry but that's just way it is now - unless the author or someone else talented can take a look at this script again
^ looks like someone turbed up, thanks foir this info.
RE: Sky Auto Channel Numbering - Added by Kelvin Middleton over 9 years ago
d p wrote:
Kelvin Middleton wrote:
Just built a clean TVH from git and grabbed latest autobouquets.pl script...it adds the channels, icon paths etc but doesn't tag the channels so I get no channel groups in Kodi. Have been playing around with this for a while now and can't find anything wrong, any help appreciated?
I was having this problem too. I think it something to do with the tags not being enabled. I changed line 314 in the script to:
my $post = "{\"enabled\":true,\"name\":\"" . $tag_name . "\",\"internal\":false,\"icon\":\"\",\"titled_icon\":false,\"comment\":\"\"}";
It now sets the tags to enabled=true when creating them.
it tagged the channels correctly, I then disabled the tags I didnt want.
Thanks for this, worked first time!
:-)
Attached my autobouquets.pl script for easy pickings.
autobouquets.pl (17.7 KB) autobouquets.pl | autobouquets inc. channel tagging |
RE: Sky Auto Channel Numbering - Added by Al B over 9 years ago
Is this Script still working?
I downloaded the version in the previous post and have it running but it seems to be just hanging at the dvbsnoop line?
my @dvb = `dvbsnoop -nph -n 500 0x11`;
if ( scalar(@dvb) <= 1 ) { die "No data received. You must have root access?"; }
Im using the latest tvheadend from git and ubuntu server 15.04 incase that is the problem.
RE: Sky Auto Channel Numbering - Added by Mark Clarkstone over 9 years ago
Al B wrote:
Is this Script still working?
I downloaded the version in the previous post and have it running but it seems to be just hanging at the dvbsnoop line?
my @dvb = `dvbsnoop -nph -n 500 0x11`;
if ( scalar(@dvb) <= 1 ) { die "No data received. You must have root access?"; }Im using the latest tvheadend from git and ubuntu server 15.04 incase that is the problem.
Make sure you have a DVB-S/S2 adaptor as your first device (so it's /dev/dvb/adapter0) or it won't work, if it isn't you can easily change the dvbsnoop line in the script to match (change the 0 to the number of your adaptor).
RE: Sky Auto Channel Numbering - Added by Al B over 9 years ago
changeing the 0 in the line:
my @dvb = `dvbsnoop -nph -n 500 0x11`;
does not affect it it still tries adapter 0 and hangs.
RE: Sky Auto Channel Numbering - Added by Mark Clarkstone over 9 years ago
Al B wrote:
changeing the 0 in the line:
my @dvb = `dvbsnoop -nph -n 500 0x11`;
does not affect it it still tries adapter 0 and hangs.
Try playing the "EPG Background Audio." on 11778V while running the script.
RE: Sky Auto Channel Numbering - Added by Al B over 9 years ago
wait I got it I added:
-adapter 2
to the dvbsnoop line and the script ran. Thanks.
edit:
next question how do i figure out the data_hd and region_hd values?
RE: Sky Auto Channel Numbering - Added by Gavin Brett about 9 years ago
Hi Guys
I ran .pl script on my Ubuntu/Tvheadend install and its work a treat. does anyone have any idea how to convert the TVH channel config to use in a Prismcube. I know there is a Enigma2 to TVH converter , but is there a TVH to Enigma Converter, as you can import Enigma2 channel config into the Prismcube in the Blackhole image.
Cheers
Brettser
RE: Sky Auto Channel Numbering - Added by Derek Knight almost 9 years ago
You know it's possible to obtain the groups from the dvb stream.
//Added to /src/input/mpegts/dvb.h
Insert at Line 167
#define DVB_DESC_BSKYB_CHAN_GROUP 0xB2
//Added to /src/input/mpegts/dvb_psi.c
Insert at Line 1503:
case DVB_DESC_BSKYB_CHAN_GROUP: if (dlen >= 6) { if(dptr[4] && 1 == 1) { group = dptr[5]; tvhtrace(mt->mt_name, " group %08X", group); } else { group = dptr[4]; tvhtrace(mt->mt_name, " group %08X", group); } } break;
The following represent the decode from the byte given above.
0x70 = "Entertainment" 0x1F = "LifeStyle & Culture" 0xD0 = "Movies" 0xF0 = "Sports" 0xB0 = "News" 0x7F = "Documentaries" 0x50 = "Kids" 0x9F = "Music" 0x30 = "Shopping" 0xBF = "Religion" 0xDF = "International" 0x5F = "Gaming & Dating" 0xFF = "Specialist" 0x3F = "Adult" 0x10 = "Sky Help"
I haven't had time to look into passing it into the tags but you get the idea.
RE: Sky Auto Channel Numbering - Added by bob 808 almost 9 years ago
Hi Derek,
Now you have me interested if this can eventually be adjusted to apply the tags back into TVH. I am rebuilding my pc this evening so will get TVH setup and give the script a try over the next few days.
Let me know if there is anything specific I can help with on this one.
RE: Sky Auto Channel Numbering - Added by goose ed almost 9 years ago
@Derek, it would be great if you could submit a pull request on git for this feature. It would be fantastic to see this feature in the master.
RE: Sky Auto Channel Numbering - Added by bob 808 almost 9 years ago
right - after a false start I have a working tvheadend install just doing its channel scan now so I will try this out tomorrow... Derek, did you have any luck looking at passing the tags over with this yet? Anything I can help look at or test?
RE: Sky Auto Channel Numbering - Added by bob 808 almost 9 years ago
OK so I set this up and added my region details and everything seems perfect... the tags are created and set against the channels. All looks as I wanted so not sure what else is needed.
Is there any way to set a job on this from tvheadend or do I just set a cron job to run this manual every evening or weekly etc?
Thanks
RE: Sky Auto Channel Numbering - Added by bob 808 almost 9 years ago
Hmm - I think this is working ok, but noticed a couple of errors whilst this was running.
Started
Get Channel Tags...
Done
Get SDT...
Use of uninitialized value $sn in numeric eq (==) at /media/Media/autobouquets.pl line 608.
Use of uninitialized value $sid in concatenation (.) or string at /media/Media/autobouquets.pl line 614.
Use of uninitialized value $tsid in concatenation (.) or string at /media/Media/autobouquets.pl line 614.
Done
Get services
Process regional services first...
Use of uninitialized value $pcode in numeric le (<=) at /media/Media/autobouquets.pl line 432.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
Done
Everything else...
Use of uninitialized value $pcode in numeric le (<=) at /media/Media/autobouquets.pl line 432.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
substr outside of string at /media/Media/autobouquets.pl line 475.
Use of uninitialized value in string ne at /media/Media/autobouquets.pl line 475.
Done
Done
Populate channels in TVH...
Adding channel 101 BBC One South
Adding channel 102 BBC Two Eng
Adding channel 103 ITV
Adding channel 104 Channel 4
Adding channel 105 Channel 5
Adding channel 106 Sky1
Adding channel 107 Sky Living
Adding channel 108 Sky Atlantic
Adding channel 109 Watch
Adding channel 110 GOLD
Adding channel 111 Dave
Adding channel 112 ComedyCentral
Adding channel 113 Universal
Adding channel 114 Syfy
Adding channel 115 BBC Three
Adding channel 116 BBC Four
Adding channel 118 ITV2
Adding channel 119 ITV3
Adding channel 120 ITV4
Adding channel 121 Sky Arts
Adding channel 122 Sky Living+1
Adding channel 123 ITV Encore
Adding channel 124 FOX
Adding channel 125 TLC
Adding channel 126 MTV
Adding channel 127 ComedyCent+1
Adding channel 128 ComedyXtra
Adding channel 129 Sky2
Adding channel 130 Sky1 1
Adding channel 131 ITV +1
Adding channel 131 ITV +1
Adding channel 132 alibi
Adding channel 133 Good Food
Adding channel 134 S4C
Adding channel 135 Channel 4 +1
Adding channel 136 E4
Adding channel 137 E4+1
Adding channel 138 More4
Adding channel 139 More4 +1
Adding channel 140 4seven
Adding channel 141 BBC One HD
Adding channel 142 BBC Two HD
Adding channel 143 BBC ALBA
Adding channel 144 QUEST
Adding channel 145 Challenge
Adding channel 146 CBS Reality
Adding channel 147 CBS Reality+1
Adding channel 148 CBS Action
Adding channel 149 CBS Drama
Adding channel 150 Universal+1
Adding channel 151 E!
Adding channel 152 Pick
Adding channel 153 Pick+1
Adding channel 154 TLC+1
Adding channel 155 Really
Adding channel 156 Lifetime
Adding channel 157 Sony Channel
Adding channel 158 Drama
Adding channel 159 ComedyXtra+1
Adding channel 160 Spike
Adding channel 161 RT▒ One
Adding channel 162 RT▒2
Adding channel 163 TG4
Adding channel 164 Challenge+1
Adding channel 165 FOX
Adding channel 166 GOLD 1
Adding channel 167 DMAX
Adding channel 170 Sky Atlantic+1
Adding channel 171 Channel 5 HD
Adding channel 172 Real Lives
Adding channel 173 Real Lives+1
Adding channel 174 5 USA
Adding channel 175 Channel 5+24
Adding channel 176 5*
Adding channel 177 Channel 5+1
Adding channel 178 ITV HD
Adding channel 179 ITVBe
Adding channel 180 ITV2+1
Adding channel 181 Sony Chnl +1
Adding channel 182 BEN
Adding channel 183 True Drama
Adding channel 184 True Ent
Adding channel 185 more>movies
Adding channel 186 m>movies+1
Adding channel 187 BET:BlackEntTv
Adding channel 188 FOX HD
Adding channel 189 propeller
Adding channel 190 5* +1
Adding channel 191 Irish TV
Adding channel 192 AMC from BT
Adding channel 193 ITV3+1
Adding channel 194 Syfy +1
Adding channel 195 QUEST+1
Adding channel 196 Home
Adding channel 197 Lifetime+1
Adding channel 198 tru TV
Adding channel 199 OH TV
Adding channel 200 TLC+2
Adding channel 201 Syfy HD
Adding channel 202 E4 HD
Adding channel 203 My Channel
Adding channel 204 Universal HD
Adding channel 205 ComedyCentHD
Adding channel 206 ITV4+1
Adding channel 207 ITVBe+1
Adding channel 208 ITV Encore+1
Adding channel 210 BBC Three HD
Adding channel 211 BBC Four HD
Adding channel 212 Information TV
Adding channel 213 Watch +1
Adding channel 214 Dave ja vu
Adding channel 217 Sky1 HD
Adding channel 218 Vox Africa
Adding channel 219 5 USA +1
Adding channel 220 MTV HD
Adding channel 221 Sky Living HD
Adding channel 222 Sky Atlantic HD
Adding channel 223 Sky Arts HD
Adding channel 224 RT▒2 HD
Adding channel 225 ITV2 HD
Adding channel 226 alibi +1
Adding channel 227 Channel 4 HD
Adding channel 229 E! +1
Adding channel 231 More4 HD
Adding channel 232 AIT Int'l
Adding channel 233 DMAX+1
Adding channel 234 TLC HD
Adding channel 235 ABN TV
Adding channel 236 Lifetime HD
Adding channel 237 FoTV
Adding channel 238 Property Show
Adding channel 239 E! HD
Adding channel 240 Home & Health
Adding channel 241 Home&Health
Adding channel 242 Discovery Shed
Adding channel 243 Good Food 1
Adding channel 244 Home+1
Adding channel 245 Watch HD
Adding channel 246 Dave HD
Adding channel 247 alibi HD
Adding channel 248 Food Network
Adding channel 249 Travel Channel
Adding channel 250 Food Netwrk+1
Adding channel 251 Travel Ch +1
Adding channel 252 ?TV
Adding channel 253 Horse & Country
Adding channel 255 Good Food HD
Adding channel 256 holiday+cruise
Adding channel 257 Fashion One
Adding channel 261 Showcase
Adding channel 263 ITV3 HD
Adding channel 264 Forces TV
Adding channel 266 ShowBiz TV
Adding channel 268 ITV4 HD
Adding channel 269 ITV Encore HD
Adding channel 270 MTV+1
Adding channel 271 tru TV+1
Adding channel 275 YourTV
Adding channel 276 AMC from BTHD
Adding channel 301 Sky Premiere
Adding channel 302 Sky Prem+1
Adding channel 303 Sky Showcase
Adding channel 304 Sky Superhero
Adding channel 305 Sky Disney
Adding channel 306 Sky Family
Adding channel 307 Sky Action
Adding channel 308 Sky Comedy
Adding channel 309 Sky Thriller
Adding channel 310 Sky DramaRom
Adding channel 311 Sky ScFi/Horror
Adding channel 312 Sky Select
Adding channel 314 SkyPremiereHD
Adding channel 315 Film4
Adding channel 316 Film4 +1
Adding channel 317 TCM
Adding channel 318 TCM+1
Adding channel 319 horror channel
Adding channel 320 horror ch+1
Adding channel 321 True Movies 1
Adding channel 322 True Movies 2
Adding channel 323 Sony Movies
Adding channel 324 Sony Movies+1
Adding channel 325 movies4men
Adding channel 326 mov4men+1
Adding channel 327 Movies 24
Adding channel 328 Movies 24
Adding channel 329 Nollywood
Adding channel 330 Sky ShowcseHD
Adding channel 331 Sky SuprheroHD
Adding channel 332 Sky Disney HD
Adding channel 333 Sky Family HD
Adding channel 334 Sky Action HD
Adding channel 335 Sky Comedy HD
Adding channel 336 Sky Thriller HD
Adding channel 337 Sky DraRomHD
Adding channel 339 Sky ScFi/HorHD
Adding channel 340 Sky Select HD
Adding channel 341 TCM HD
Adding channel 342 Film4 HD
Adding channel 343 TalkingPictures
Adding channel 350 MTV MUSIC
Adding channel 351 MTV BASE
Adding channel 352 MTV HITS
Adding channel 353 MTV DANCE
Adding channel 354 MTV ROCKS
Adding channel 355 MTV CLASSIC
Adding channel 356 VH1
Adding channel 357 VIVA
Adding channel 358 MTV Live
Adding channel 359 The Box
Adding channel 360 4Music
Adding channel 361 KISS
Adding channel 362 Smash Hits!
Adding channel 363 Magic
Adding channel 364 Heat
Adding channel 365 Chart Show TV
Adding channel 366 The Vault
Adding channel 367 Scuzz
Adding channel 368 Kerrang!
Adding channel 369 Vintage TV
Adding channel 370 Chilled TV
Adding channel 371 Starz TV
Adding channel 372 Chartshw Dnce
Adding channel 374 Flava
Adding channel 378 NOW Music
Adding channel 383 Clubland TV
Adding channel 385 Channel AKA
Adding channel 386 MTV Live HD
Adding channel 387 Heart TV
Adding channel 388 CAPITAL TV
Adding channel 389 Planet
Adding channel 401 Sky Sp NewsHQ
Adding channel 402 Sky Sports 1
Adding channel 403 Sky Sports 2
Adding channel 404 Sky Sports 3
Adding channel 405 Sky Sports 4
Adding channel 406 Sky Sports 5
Adding channel 407 Sky Sports F1
Adding channel 408 Sky SpN HQ HD
Adding channel 409 Sky Sports 1 HD
Adding channel 410 Eurosport 1
Adding channel 411 Eurosport 2
Adding channel 412 Eurosport 1 HD
Adding channel 413 BT Sport 1
Adding channel 414 BT Sport Europe
Adding channel 415 At The Races
Adding channel 417 BT Sport 2
Adding channel 418 MUTV
Adding channel 421 Chelsea TV
Adding channel 422 Chelsea TV HD
Adding channel 423 Setanta Ireland
Adding channel 424 Setanta Sports1
Adding channel 426 BT Sport//ESPN
Adding channel 427 BT Sport 1 HD
Adding channel 428 Premier Sports
Adding channel 429 LFCTV
Adding channel 432 Racing UK
Adding channel 433 BT Sport EurHD
Adding channel 435 Sky Sports 2 HD
Adding channel 436 Sky Sports 3 HD
Adding channel 437 BoxNation
Adding channel 439 Sky Sports 4 HD
Adding channel 440 Sky Sports 5 HD
Adding channel 443 Eurosport 2 HD
Adding channel 447 MOTORS TV UK
Adding channel 451 Sky Spts F1 HD
Adding channel 453 MUTV HD
Adding channel 455 LFCTV HD
Adding channel 457 BT Sport 2 HD
Adding channel 458 BTSpt//ESPNHD
Adding channel 460 Setanta HD
Adding channel 462 Premier HD
Adding channel 464 Bike
Adding channel 490 BoxNation HD
Adding channel 491 SkySpBoxOff
Adding channel 492 SkySpBoxOffHD
Adding channel 501 Sky News
Adding channel 502 Bloomberg
Adding channel 503 BBC NEWS
Adding channel 504 BBC Parliament
Adding channel 505 CNBC
Adding channel 506 CNN
Adding channel 507 NHK World HD
Adding channel 508 Euronews
Adding channel 509 FOX News
Adding channel 510 CCTV News
Adding channel 511 NDTV 24x7
Adding channel 512 RT
Adding channel 513 FRANCE Eng
Adding channel 514 Al Jazeera Eng
Adding channel 515 CNC World
Adding channel 516 Sky News HD
Adding channel 517 TVC News
Adding channel 518 RT HD
Adding channel 519 ARISE News
Adding channel 520 Discovery
Adding channel 521 Discovery+1
Adding channel 522 ID
Adding channel 523 Animal Planet
Adding channel 524 Disc.Turbo
Adding channel 525 Disc.Science
Adding channel 526 Nat Geo
Adding channel 527 Nat Geo+1hr
Adding channel 528 Nat Geo Wild
Adding channel 529 History
Adding channel 530 History 1 hour
Adding channel 531 H2
Adding channel 532 Eden
Adding channel 533 Eden+1
Adding channel 534 PBS America
Adding channel 535 Disc.History
Adding channel 536 Disc.History+1
Adding channel 537 YESTERDAY
Adding channel 538 YESTERDAY+1
Adding channel 539 Community
Adding channel 543 Nat Geo HD
Adding channel 544 NatGeoWild HD
Adding channel 545 History HD
Adding channel 549 Animal Plnt+1
Adding channel 551 ID+1
Adding channel 553 CI
Adding channel 554 CI +1
Adding channel 555 CI HD
Adding channel 557 Disc.Sci+1
Adding channel 561 Discovery HD
Adding channel 562 AnimalPlnt HD
Adding channel 563 Eden HD
Adding channel 570 BBC NEWS HD
Adding channel 571 BON TV
Adding channel 572 TVC News +1
Adding channel 575 Channels 24
Adding channel 576 Times Now
Adding channel 577 News 18 India
Adding channel 580 GOD Channel
Adding channel 581 revelation
Adding channel 582 TBN UK
Adding channel 583 DAYSTAR
Adding channel 585 Inspiration
Adding channel 586 LOVEWORLD TV
Adding channel 587 Gospel Channel
Adding channel 588 Word Network
Adding channel 589 EWTN Catholic
Adding channel 590 Faith World TV
Adding channel 591 KICC TV
Adding channel 592 Believe TV
Adding channel 593 Olive TV
Adding channel 594 SonLife
Adding channel 595 Flow TV
Adding channel 596 DAYSTAR HD
Adding channel 597 ChurchChannel
Adding channel 601 Cartoon Netwrk
Adding channel 602 CN+1
Adding channel 603 Boomerang
Adding channel 604 Nickelodeon
Adding channel 605 Nickelodeon+1
Adding channel 606 Nicktoons
Adding channel 607 Disney XD
Adding channel 608 Disney XD+1
Adding channel 609 Disney Chnl
Adding channel 610 Disney Chnl+1
Adding channel 611 Disney Junior
Adding channel 612 Disney Junior
Adding channel 613 CBBC
Adding channel 614 CBeebies
Adding channel 615 Nick Jr.
Adding channel 616 POP
Adding channel 617 Tiny Pop
Adding channel 618 Boomerang +1
Adding channel 619 Cartoonito
Adding channel 620 Nick Jr Too
Adding channel 621 CITV
Adding channel 622 Disney XD HD
Adding channel 623 BabyTV
Adding channel 624 CBeebies HD
Adding channel 625 Tiny Pop +1
Adding channel 626 POP+1
Adding channel 627 Kix
Adding channel 628 Disney Jnr HD
Adding channel 629 Kix+1
Adding channel 630 Nick Jr+1
Adding channel 631 Disney Chnl HD
Adding channel 632 NickelodeonHD
Adding channel 633 CBBC HD
Adding channel 634 Cartoon Net HD
Adding channel 635 RT▒jr
Adding channel 636 Boomerang HD
Adding channel 650 QVC
Adding channel 651 JML Direct
Adding channel 652 TJC
Adding channel 653 GR SHOP
Adding channel 654 Ideal World
Adding channel 655 Gems TV
Adding channel 656 Tristar
Adding channel 657 Retail TV
Adding channel 658 High Street TV
Adding channel 659 Best Direct
Adding channel 660 TJC Choice
Adding channel 661 Ideal Extra
Adding channel 662 High Street TV 2
Adding channel 663 Hochanda
Adding channel 665 Jewelry Maker
Adding channel 666 High Street TV 3
Adding channel 667 TV Warehouse
Adding channel 668 QVC Beauty
Adding channel 669 PaversShoes.tv
Adding channel 670 Thane
Adding channel 671 V Channel
Adding channel 672 Rocks & Co 1
Adding channel 673 QVC Extra
Adding channel 674 Create & Craft
Adding channel 675 Craft Extra
Adding channel 676 The Dept Store
Adding channel 677 The Mall
Adding channel 678 QVC Style
Adding channel 679 Craft Channel
Adding channel 700 Sky Box Office
Adding channel 701 Sky Box Office
Adding channel 702 Sky Box Office
Adding channel 703 Sky Box Office
Adding channel 704 Sky Box Office
Adding channel 705 Sky Box Office
Adding channel 706 Sky Box Office
Adding channel 707 Sky Box Office
Adding channel 708 Sky Box Office
Adding channel 709 Sky Box Office
Adding channel 710 Sky Box Office
Adding channel 711 Sky Box Office
Adding channel 712 Sky Box Office
Adding channel 713 Sky Box Office
Adding channel 714 Sky Box Office
Adding channel 715 Sky Box Office
Adding channel 716 Sky Box Office
Adding channel 717 Sky Box Office
Adding channel 718 Sky Box Office
Adding channel 719 Sky Box Office
Adding channel 743 Sky Box Office
Adding channel 744 Sky Box Office
Adding channel 752 SBO HD
Adding channel 780 B4U Movies
Adding channel 781 B4U Music
Adding channel 782 SONY TV Asia
Adding channel 783 Star Life OK
Adding channel 784 Star Plus
Adding channel 785 PCNE Chinese
Adding channel 786 Bangla TV
Adding channel 787 mta-muslim tv
Adding channel 788 Zee TV
Adding channel 789 Zing
Adding channel 790 Zee Cinema
Adding channel 791 ARY Digital
Adding channel 792 PTV Prime
Adding channel 793 MATV National
Adding channel 794 Abu Dhabi TV
Adding channel 795 &TV
Adding channel 796 TV5 MONDE
Adding channel 797 UMP Movies
Adding channel 798 SONY MAX
Adding channel 799 DM Plus TV
Adding channel 800 Hidayat TV
Adding channel 801 TV Record
Adding channel 802 ARY News
Adding channel 803 PTV Global
Adding channel 804 ARY QTV
Adding channel 805 Venus TV
Adding channel 806 Islam Channel
Adding channel 807 GEO TV
Adding channel 808 Star Jalsha
Adding channel 809 Star GOLD
Adding channel 810 SONY SAB
Adding channel 811 ABP News
Adding channel 812 Noor TV
Adding channel 813 Peace TV
Adding channel 814 CHSTV
Adding channel 815 PTC PUNJABI
Adding channel 816 GEO TEZ
Adding channel 817 GEO News
Adding channel 818 AAJ TAK
Adding channel 819 IQRA TV
Adding channel 820 Ummah CH
Adding channel 821 COLORS
Adding channel 822 Rishtey
Adding channel 823 Glory TV
Adding channel 824 Brit Asia TV
Adding channel 825 IQRA BANGLA
Adding channel 826 Ahlebait TV
Adding channel 827 ATN Bangla UK
Adding channel 828 Madani Chnl
Adding channel 829 Sikh Channel
Adding channel 830 Peace TV Urdu
Adding channel 831 Ahlulbayt TV
Adding channel 832 Samaa
Adding channel 833 Channel i
Adding channel 834 Takbeer TV
Adding channel 835 Zee Punjabi
Adding channel 836 Sangat
Adding channel 837 Aastha
Adding channel 838 NTV
Adding channel 839 Star Plus HD
Adding channel 840 SkyNws Arabia
Adding channel 842 TV 99
Adding channel 843 Akaal Channel
Adding channel 844 HUM EUROPE
Adding channel 845 British Muslim
Adding channel 847 Safeer TV
Adding channel 849 TV One
Adding channel 850 Dunya News
Adding channel 851 Islam Ch Urdu
Adding channel 853 &tv HD
Adding channel 854 Muslim Ummah
Adding channel 855 Al Arabiya
Adding channel 856 TV Record HD
Adding channel 862 SuperCasino
Adding channel 872 Gay Network
Adding channel 873 Chat Box
Adding channel 886 Psychic Today
Adding channel 889 Sky Insider HD
Adding channel 899 Sky Intro
Adding channel 900 Playboy TV
Adding channel 901 Adult Channel
Adding channel 902 PlayboyTV Chat
Adding channel 903 Television X
Adding channel 904 Viewers' Wives
Adding channel 905 Red Hot
Adding channel 906 Babenation
Adding channel 907 Xtreme Filth
Adding channel 908 Get Lucky TV
Adding channel 909 Lucky Star
Adding channel 910 XXX Brits
Adding channel 911 TVX Brits
Adding channel 912 Studio 66
Adding channel 913 ExGirlfriends
Adding channel 914 Xpanded TV
Adding channel 920 xxx big&bouncy
Adding channel 921 XXX Girl Girl
Adding channel 922 XXX Amateurs
Adding channel 923 XXX Groups
Adding channel 924 XXXUniforms
Adding channel 925 XXX 18 & Dirty
Adding channel 926 XXX Mums
Adding channel 930 Climax
Adding channel 939 Storm
Adding channel 940 Studio 66 2
Adding channel 941 Studio 66 3
Adding channel 945 Babes From TV
Adding channel 950 Sky Intro
Adding channel 951 BBC One Scot
Adding channel 952 BBC One Wales
Adding channel 953 BBC One NI
Adding channel 954 BBC One Lon
Adding channel 955 BBC One NE&C
Adding channel 956 BBC One Yorks
Adding channel 957 BBC One Yk&Li
Adding channel 958 BBC One N West
Adding channel 959 BBC One W Mid
Adding channel 960 BBC One E Mid
Adding channel 961 BBC One East E
Adding channel 962 BBC One East W
Adding channel 963 BBC One S East
Adding channel 965 BBC One Oxford
Adding channel 966 BBC One West
Adding channel 967 BBC One S West
Adding channel 968 BBC One CI
Adding channel 970 BBC Two Scot
Adding channel 971 BBC Two Wales
Adding channel 972 BBC Two NI
Adding channel 973 ITV
Adding channel 974 Channel 4
Adding channel 975 Channel 4 +1
Adding channel 977 BBC One ScotHD
Adding channel 978 BBC One Wal HD
Adding channel 979 BBC One NI HD
Adding channel 980 BBC RB 1
Adding channel 996 Chl Line-up
Adding channel 998 Sky Intro
Adding channel 999 Sky
Adding channel 2030 My Account
Adding channel 2040 Get Sky products
Adding channel 2050 Sky Help and Support
Adding channel 2052 Reset your PIN
Adding channel 2054 Program your remote
Done
RE: Sky Auto Channel Numbering - Added by Kevin J over 8 years ago
Hi, this looks excellent, how do i get this implemented on my setup?
- « Previous
- 1
- …
- 4
- 5
- 6
- Next »