UK RT Free Limit

From XMLTVDoc
Jump to: navigation, search

UK_RT_Free_Limit is a post processor which will limit the 24-hour listings of some channels to the times which they are boradcast on freeview. The script currently supports the following channels:

  • ABC1 (6am-6pm)

Additional channels can be added by editing scripts\uk_rt\ukrt_freeview_limit.lua. The first line in the script defines the channels that should be limited:

local channels={
		{id="1856",start=6,stop=18}
		}

id is the Radio Times id of the channel you want to limit, start is the hour at which the listings should start, stop is the hour at which the listings should stop. For example to limit BBC1 listings to 8pm to 6am change the above code to:

local channels={
		{id="1856",start=6,stop=18},
		{id="92",start=20,stop=6}
		}