UK RT Plus One

From XMLTVDoc
Jump to: navigation, search

UK_RT_Plus_One is a post processor which can automatically generate +1 channels for Radio Times channels, the script currently supports the following channels:

  • More4+1
  • FX+2
  • Paramount Comedy+1

These channels can be enabled or disabled through the processor's settings screen.

More channels can be added to the script by editing scripts\uk_rt\ukrt_plus1_gen.lua. On line 4 is a table defining the channels:

local availablechannels={
		{name="More4+1",offset=1,id="1959"},
		{name="FX+2",offset=2,id="1461"},
		{name="Paramount Comedy+1",offset=1,id="1061"}
		}

To add an additional channel simply add an extra item to the end of the table, name is the name displayed in the interface, offset si the number of hours to add on to the listings, id is the Radio Times id of the channel you want to use to generate the listings. For example to generate listings for E4+1 you would change the line to:

local availablechannels={
		{name="More4+1",offset=1,id="1959"},
		{name="FX+2",offset=2,id="1461"},
		{name="Paramount Comedy+1",offset=1,id="1061"},
		{name="E4+1",offset=1,id="158"}
		}