[EMAIL PROTECTED] wrote:
..
For example, to get all of the "Survivor" reality shows but not the
"Survivorman" outdoor show you could either limit the results by
category or use an inverse match on the specific titles you don't want.
The first method would end up looking like:
program.title LIKE "survivor%"
AND program.category_type = "reality"
and the second like:
program.title LIKE "survivor%"
AND NOT program.title LIKE "survivorman%"
The trailing "%" on the name will match cases where the series has a
different name each season (the current one is "Survivor: Guatemala --
The Maya Empire").
The show hosted by Jeff Probst is always "Survivor: <location>" so
"Survivor: %" excludes Survivorman.
I have two power search rules for Survivor.
program.title LIKE 'Survivor: %'
AND channel.callsign = 'KLAS'
KLAS is my local CBS affiliate. This catches the new episodes now
and in future seasons. I've set this to High Quality for the nice
cinematography. OLN is also showing old reruns.
program.title LIKE 'Survivor: %'
AND HOUR(program.starttime) >= 16
AND HOUR(program.starttime) < 20
This matches the afternoon reruns on OLN and is set to Low Quality
because my OLN signal is crappy.
-- bjm
_______________________________________________
mythtv-users mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users