Search found 493 matches

by alanbirtles
Sun Jun 26, 2011 10:14 am
Forum: General
Topic: Pascal LZMA usage sample?
Replies: 3
Views: 75666

Re: Pascal LZMA usage sample?

lzmaalone is included in the source code
by alanbirtles
Sat Jun 25, 2011 9:52 am
Forum: XMLTV GUI V3
Topic: Finding out if a program is audio described
Replies: 3
Views: 66343

Re: Finding out if a program is audio described

radio times doesn't supply audio description flags in their data
by alanbirtles
Tue May 31, 2011 8:28 pm
Forum: XMLTV GUI V3
Topic: Determing Reats/New Programs
Replies: 1
Views: 56586

Re: Determing Reats/New Programs

the new attribute is translated into the lack of the previously shown flag.
by alanbirtles
Fri Apr 22, 2011 6:45 pm
Forum: XMLTV GUI V3
Topic: Insert HDTV tag based on channel name
Replies: 5
Views: 78604

Re: Insert HDTV tag based on channel name

program.Video may be null so you need to make sure its a table before you try to modify it:

Code: Select all

if AddHD then
   if not program.Video then
      program.Video = {}
      end
   program.Video.Quality="HDTV"
end
note that the above code hasn't been tested
by alanbirtles
Thu Apr 14, 2011 7:48 am
Forum: XMLTV GUI V3
Topic: Insert HDTV tag based on channel name
Replies: 5
Views: 78604

Re: Insert HDTV tag based on channel name

for performing such modifications it is much better to create a post processor. look in prog_dets.lua for some examples
by alanbirtles
Sat Mar 19, 2011 1:11 pm
Forum: XMLTV GUI V3
Topic: XMLTV GUI / Digiguide Incorrect Data
Replies: 3
Views: 68210

Re: XMLTV GUI / Digiguide Incorrect Data

you could write a script to create filler programs
by alanbirtles
Sat Feb 26, 2011 4:30 pm
Forum: XMLTV GUI V3
Topic: Episode number in title
Replies: 2
Views: 62733

Re: Episode number in title

change

Code: Select all

		if str then
			if program.Sub_Title then
				str=str.." - "
				end
			program.Sub_Title=XGUI_Lib.XS.Prefix(program.Sub_Title,str)
			end
		end
to

Code: Select all

		if str then
			str = "("..str..")"
			program.Title=XGUI_Lib.XS.Cat(program.Title,str)
			end
		end
by alanbirtles
Sat Feb 12, 2011 1:02 pm
Forum: XMLTV GUI V3
Topic: Radio Times Dat files
Replies: 3
Views: 66655

Re: Radio Times Dat files

radio times don't supply radio data
by alanbirtles
Fri Jan 28, 2011 9:08 pm
Forum: XMLTV GUI V3
Topic: Error creating XML File from Digiguide
Replies: 2
Views: 22352

Re: Error creating XML File from Digiguide

try the new version from this post: viewtopic.php?f=5&t=393
by alanbirtles
Fri Jan 28, 2011 7:58 pm
Forum: XMLTV GUI V3
Topic: ITV1 Yorkshire?
Replies: 2
Views: 20921

Re: ITV1 Yorkshire?

its ytv
by alanbirtles
Fri Jan 28, 2011 8:48 am
Forum: XMLTV GUI V3
Topic: Radio Times Dat files
Replies: 3
Views: 66655

Re: Radio Times Dat files

see the sticky post at the top of the forum
by alanbirtles
Mon Jan 24, 2011 7:10 pm
Forum: XMLTV GUI V3
Topic: DigiGuide Channel ID's in imported xml
Replies: 3
Views: 35063

Re: DigiGuide Channel ID's in imported xml

the current behaviour is the intended result, to avoid clashes in channel ids all channels have the name of the grabber that they came from prepended to them. xmltv import is unlikely to be updated in future versions so you can safely keep your modified version or save your modified version to a dif...
by alanbirtles
Mon Jan 24, 2011 6:42 pm
Forum: XMLTV GUI V3
Topic: DigiGuide Channel ID's in imported xml
Replies: 3
Views: 35063

Re: DigiGuide Channel ID's in imported xml

in scripts/xmltv_import/ximp.lua
change:

Code: Select all

local function CCallback(chan)
	XGUI.AddUserChannel(Grabber,chan)
	end
to:

Code: Select all

local function CCallback(chan)
	chan.XML_ID = chan.ID
	XGUI.AddUserChannel(Grabber,chan)
	end
by alanbirtles
Sun Jan 23, 2011 5:48 pm
Forum: XMLTV GUI V3
Topic: Digiguide not grabbing all channels
Replies: 7
Views: 37863

Re: Digiguide not grabbing all channels

not if its working.
by alanbirtles
Sun Jan 23, 2011 12:26 pm
Forum: XMLTV GUI V3
Topic: Invalid XML
Replies: 7
Views: 42925

Re: Invalid XML

see the sticky post for login details