First, I should point out that I am trying to use the OzTivo guide for a PVR, not MCE. The problem I am having is that ABC2 is 2 hours out. I'm in WA and all the other channels are fine.
To use the OzTivo guide, I copy and paste the data from
http://minnie.tuhs.org/tivo-bin/xmlguide.pl into a new text document called xmltv.xml located in c:\temp.
The format of the xml file begins:
<?xml version="1.0" encoding="ISO-8859-1"?>
<tv generator-info-name="Wktivoguide v5" generator-info-url="http://minnie.tuhs.org/tivo-bin/xmlguide.pl">
An example program entry is:
<programme start="20070411213000" stop="20070411220000" channel="ABC-WA">
<title>Can We Help?</title>
<desc>An audience-driven series with the questions and stories coming from viewers at home. If you've got a question you think might stump the team, or a puzzle you want solved : we want to hear from you. Hosted by Peter Rowsthorn.</desc>
<credits>
</credits>
<category>Magazine</category>
<category>Talk</category>
<category>Arts and Living</category>
<rating><value>G</value></rating>
</programme>
I then run the Time Offset against it with the command:
TimeOffset.exe /o:-200 /f:c:\temp\xmltv.xml /c:ABC2.
The log file displays:
2007-04-12 13:09:40 : Time Offset v1.02 Started
2007-04-12 13:09:40 : Found channel argument - ABC2
2007-04-12 13:09:40 : Using supplied time offset of '-0400'
2007-04-12 13:09:40 : Opening 'c:\temp\xmltv.xml' for input
2007-04-12 13:09:40 : Opening 'c:\temp\xmltv.xml.tmp' for output
2007-04-12 13:09:40 : Processing records...
2007-04-12 13:09:40 : Finished processing records...
2007-04-12 13:09:40 : Changed 189 time instances for channel 'ABC2'
2007-04-12 13:09:40 : Closing output file
2007-04-12 13:09:41 : Closing input file
2007-04-12 13:09:41 : Deleting 'c:\temp\xmltv.xml'
2007-04-12 13:09:41 : Renaming 'c:\temp\xmltv.xml.tmp' to 'c:\temp\xmltv.xml'
2007-04-12 13:09:41 : Processing complete
However, when I open the xmltv.xml file, nothing has changed.
Eg. Before running the tool
<programme start="20070411200000" stop="20070411203000" channel="ABC2">
Eg. After running the tool
<programme start="20070411200000" stop="20070411203000" channel="ABC2">
i.e. No change to the start or stop times.
Thanks for any suggestions.