<div dir="ltr"><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Fri, Nov 13, 2020 at 10:24 AM Stephen Worthington <<a href="mailto:stephen_agent@jsw.gen.nz">stephen_agent@jsw.gen.nz</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">On Fri, 13 Nov 2020 09:17:27 -0500, you wrote:<br>
<br>
>I need help with  a record rule. I have a Rule to record "College<br>
>Football". This gets all college football games regardless of network.  The<br>
>problem is that Channel 22_2   Stadium shows reruns of a lot of football<br>
>games in 480i, which I do NOT want to record.<br>
><br>
>I only want the new games on 5_1, 11_1, 17_1 and 50_1.  So I could either<br>
>list just these 4 channels or somehow list 22_2 as a DO NOT record.<br>
><br>
>How would I do this?<br>
<br>
You can do it with a Power Search rule.  Manage Recordings > Schedule<br>
Recordings > Custom Record.  You have to write some SQL to tell the<br>
rule what to match, so something like this should work:<br>
<br>
program.title='College Football' and program.chanid<>ID<br>
<br>
where ID is the chanid corresponding to the 22_2 channel.  To find<br>
that chanid, you need to do an SQL query on the channel table,<br>
something like this:<br>
<br>
sudo mysql mythconverg<br>
select chanid,channum,name,callsign from channel where name='22_2';<br>
exit<br>
<br>
Make sure you delete your old rule after you get the new one working.<br>
<br></blockquote><div>Thanks, a lot! This really works.  I wish they had invented mysql back when I was a database administrator.  Back then it was MRI System 2000 running on a CDC 6000 and I used punch cards to submit queries. :-)</div><div><br></div><div>Jim A</div><div><br></div></div></div>