hi these are missing on virgin uk channels thanks
Ginx 1:0:1:335:8:F020:FFFF0000:0:0:0
TIDDLERS TV 1:0:1:1136:2C:F020:FFFF0000:0:0:0
NDTV Good Times 1:0:1:64B:10:F020:FFFF0000:0:0:0
delboy13 hasn't added any friends yet.
No latest visitors to show
9 May 2014 - 16:20
hi these are missing on virgin uk channels thanks
Ginx 1:0:1:335:8:F020:FFFF0000:0:0:0
TIDDLERS TV 1:0:1:1136:2C:F020:FFFF0000:0:0:0
NDTV Good Times 1:0:1:64B:10:F020:FFFF0000:0:0:0
31 January 2014 - 20:13
credit to abu baniaz
Cablescanner has a maximum value of 99999 for the networkid
NimManger.py has this line which is limited to four digits
nim.cable.scan_networkid = ConfigInteger(default = 0, limits = (0, 9999))
Making this line equal
nim.cable.scan_networkid = ConfigInteger(default = 0, limits = (0, 99999))
Tested and allows for a five digit networkid to be set which are used for uk cable
http://sourceforge.net/p/openpli/enigma2/ci/b161c960111e41ce07cef4a993afb5d962c9bf7e/tree/lib/python/Components/NimManager.py#l1449
26 November 2013 - 13:07
been told need to add a new reader in epgcache.cpp specifically for uk cable 0x2bc. on the pli dm500 images epg works but not on enigma2
+ printf("[7 days EPG NOT available\n"); + dprintf("pid 0x12\n"); + printf("[7 days EPG available\n"); + dprintf("pid 0x2bc\n"); dmxEIT.addfilter(0x00, 0x00); //0 dummy filter dmxEIT.addfilter(0x50, 0xf0); //1 current TS, scheduled dmxEIT.addfilter(0x4f, 0xff); //2 other TS, current/next + dmxEIT.addfilter(0x4e, 0xff); + dmxEIT.addfilter(0x50, 0xff); + dmxEIT.addfilter(0x51, 0xff); #ifdef HAVE_DBOX_HARDWARE dmxEIT.addfilter(0x60, 0xf1); //3a other TS, scheduled, even dmxEIT.addfilter(0x61, 0xf1); //3b other TS, scheduled, odd #else dmxEIT.addfilter(0x60, 0xf0); //3 other TS, scheduled #endif + dmxEIT.addfilter(0x52, 0xf1); + dmxEIT.addfilter(0x53, 0xf1);
this is the patch used on neutreno for dm500 not sure if helps was told change the EIT code for the mask.pid and mask.data