<div class="gmail_quote">On Wed, Oct 31, 2012 at 9:12 AM, Worik Stanton <span dir="ltr"><<a href="mailto:worik.stanton@gmail.com" target="_blank">worik.stanton@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On 30/10/12 16:52, Steve Hodge wrote:<br>

> Run these and post the results:<br>
><br>
> select chanid, starttime, endtime, title from recorded where starttime<br>
> between '2012-10-29 21:00' and '2012-10-29 22:00';<br></div></div></blockquote><div class="h5"><br>If you look at the output of this, you can see that it tried to record Homeland on channel 2418. It also recorded Prime Rocks - this was a separate recording rule unrelated to the issue with Homeland (i.e. it didn't record Prime instead of TV3, it tried to record both but TV3 failed to record).<br>
<br><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote">> select chanid, sourceid, callsign, name, mplexid, serviceid, xmltvid, last_record from channel;<br>
</blockquote>
<br>
2302    1    TV3 PLUS1    TV3 PLUS1    1    1302    <a href="http://four.freeviewnz.tv">four.freeviewnz.tv</a>    0000-00-00 00:00:00<br>2418    1    TV3PL    TV3Plus1    NULL    0    <a href="http://tv3-plus1.freeviewnz.tv">tv3-plus1.freeviewnz.tv</a>    2012-10-29 21:33:02<br>
<br>Here's your problem. You've still got screwed up channel data. Channel 2302 is the correct "TV3 + 1" but it has the wrong xmltvid, as noted by Tony. You need to fix that - do it in Mythweb. Channel 2418 has no tuning data, so the recording failed. My guess is that this channel was added by the grabber because no channel with xmltvid of "<a href="http://tv3-plus1.freeviewnz.tv">tv3-plus1.freeviewnz.tv</a>" existed. This again highlights the problem with populating channel data in multiple ways. You've also got a bunch of radio channels with no tuning data that therefore can't be recorded. The easiest thing to do is to just disable them - you can just uncheck the "visible" checkbox for 2418 in Mythweb. Don't forget to save. Unfortunately the Mythweb page doesn't give you the right columns to easily tell which channels can be recorded so if you want to disable the other channels that can't be recorded you can use this sql (which also sorts out the issues with TV3 + 1):<br>
<br>update channel set xmltvid = '<a href="http://tv3-plus1.freeviewnz.tv">tv3-plus1.freeviewnz.tv</a>' where chanid = 2302;<br>update channel set visible = 0 where mplexid is null and serviceid = 0;<br>commit;<br>
<br>Cheers,<br>Steve<br></div></div><br>