Reply to thread

There is a problem with the stop date/time in your "error" tvguide.xml file. If you open a cmd.exe window, cd to the folder with your tvguide.xml file and type the following command


findstr "20000000000000" tvguide.xml


There are lots of bad stop times = 20000000000000. If I use notepad++ to open/edit tvguide.xml, search for 20000000000000, it looks like this happens on the last programme for each channel before switching to the next channel. Hard to tell for sure it is only the last show. Not sure why your tvguide.xml file has the problem or how to fix the problem, but a typical example is shown below.


EDIT/COMMENT

The "good" tvguide.xml file does not show this strange stop time. Don't know why xmltv plugin gets into trouble trying to import this file. But a strange stop time 14+ years before the start time is a very strange combination of dates/times.


[code]

#### last good start/stop time

<programme start="20140619050000 +0200" stop="20140619053000 +0200" channel="BBC World">

<title lang="sl">BBC World News</title>

<desc lang="sl">The latest international news from the BBC.</desc>

<category lang="sl">Informativni program</category>

</programme>

#### good start, bad stop

<programme start="20140619053000 +0200" stop="20000000000000 +0200" channel="BBC World">

<title lang="sl">HARDtalk</title>

<desc lang="sl">Stephen Sackur talks to newsmakers and personalities from across the globe.</desc>

<category lang="sl">Informativni program</category>

</programme>

#### next channel, good start/stop times.

<programme start="20140612060000 +0200" stop="20140612071000 +0200" channel="MTV Adria">

<title lang="sl">Morning Mix</title>

<category lang="sl">Razvedrilni program</category>

</programme>

[/code]


Top Bottom