Hi James,
I've got new issues with the tvtoday.de grabber:
First of all: they changed the detail-view (a hyperlink was added).
Then I discoverd that not the whole program was grabbed. At first I thought that the data is not available. But after some research I found out that not all data is shown on one page if it doesn't fit: for example try this link. You will find out that the program stops at 19:55. The rest is on the next page - I found out that the parameter offset is responsible for which page is shown. So I used [PAGE_OFFSET] to fix this. But not all channels have two pages...
I've attached the new fixed grabber file.
Now I've got a question regarding the merging of channels: How should I set the time?
Here are two ways how I tried it:
In both ways the show which starts on ZDF doku at 21:00 and the one which starts on Ki.Ka at 06:00 are lost...
for your efforts.
I've got new issues with the tvtoday.de grabber:
First of all: they changed the detail-view (a hyperlink was added).
Then I discoverd that not the whole program was grabbed. At first I thought that the data is not available. But after some research I found out that not all data is shown on one page if it doesn't fit: for example try this link. You will find out that the program stops at 19:55. The rest is on the next page - I found out that the parameter offset is responsible for which page is shown. So I used [PAGE_OFFSET] to fix this. But not all channels have two pages...
I've attached the new fixed grabber file.
Now I've got a question regarding the merging of channels: How should I set the time?
Here are two ways how I tried it:
Code:
<section name="MergeChannels">
<entry name="Count">1</entry>
</section>
<section name="Merge1">
<entry name="Channels">2</entry>
<entry name="DisplayName">Ki.Ka + ZDF doku</entry>
<entry name="Channel1">kika.de</entry>
<entry name="Start1">06:00</entry>
<entry name="End1">20:55</entry>
<entry name="Channel2">zdfdoku@zdf.de</entry>
<entry name="Start2">21:00</entry>
<entry name="End2">05:45</entry>
</section>
Code:
<section name="MergeChannels">
<entry name="Count">1</entry>
</section>
<section name="Merge1">
<entry name="Channels">2</entry>
<entry name="DisplayName">Ki.Ka + ZDF doku</entry>
<entry name="Channel1">kika.de</entry>
<entry name="Start1">06:00</entry>
<entry name="End1">21:00</entry>
<entry name="Channel2">zdfdoku@zdf.de</entry>
<entry name="Start2">21:00</entry>
<entry name="End2">06:00</entry>
</section>
In both ways the show which starts on ZDF doku at 21:00 and the one which starts on Ki.Ka at 06:00 are lost...
Germany