2012-10-06, 09:59 PM
(This post was last modified: 2012-10-06, 10:07 PM by mvallevand.)
I have an earlier request to only record HD channels open (if that is what no response means) but it might never happen which might be find. Looking over the For The Record options I found an option "NotOnChannels" that got me thinking I might be able to make myself a utility or even work via UJB's NEWA to add more option there and to avoid more options to NextPVR. I assume advancedRules get merged with another string, Is this the one you use?
For information I have broken down the NextPVR options and the other options in FTR that need a custom rule
Martin
Code:
select * from EPG_EVENT where title=? and end_time>? order by start_time
@time
For information I have broken down the NextPVR options and the other options in FTR that need a custom rule
Code:
AroundTime Record the timeslot closest to the given start time (usually combined with TitleEquals).
StartingBetween Record a program when its start time is between the two given times.
OnDate Record on this specific date (mutually exclusive with DaysOfWeek).
DaysOfWeek Record on these days of the week (mutually exclusive with OnDate), with second optional starting date argument.
TitleEquals Record program with the given title.
TitleStartsWith Record program who's title starts with the given text.
ManualSchedule If this rule is added the schedule is a manual schedule with the given datetime and duration (ScheduleTime) arguments. When this rule is specified the TvChannels rule must be present with exactly one channel. The DaysOfWeek rule with one argument is optional, and no other rules are allowed.
NewEpisodesOnly If this is true, don't include programs that were already recorded before custom logic in NextPVR
NewTitlesOnly If this is true, don't include programs that were already recorded before (based on new flag only). not in FTR
Channels Record on the given channel(s). Arguments are one or more channel IDs.
NotOnChannels Do not record on the given channel(s). Arguments are one or more channel IDs.
SubTitleEquals Record program with the given sub-title.
SubTitleStartsWith Record program who's sub-title starts with the given text.
SubTitleContains Record program who's sub-title contains the given text. If more than one text is given an OR will be applied.
SubTitleDoesNotContain Record program who's sub-title does not contain the given text, only valid in combination with at least one SubTitleContains rule.
EpisodeNumberEquals Record program with the given episode number.
EpisodeNumberContains Record program who's episode number contains the given text. If more than one text is given an OR will be applied.
EpisodeNumberDoesNotContain Record program who's episode number does not contain the given text, only valid in combination with at least one EpisodeNumberContains rule.
EpisodeNumberStartsWith Record program who's episode number starts with the given text.
TitleContains Record program who's title contains the given text. If more than one text is given an OR will be applied.
TitleDoesNotContain Record program who's title does not contain the given text, only valid in combination with at least one TitleContains rule.
DescriptionContains Record program who's description contains the given text. If more than one text is given an OR will be applied.
DescriptionDoesNotContain Record program who's description does not contain the given text, only valid in combination with at least one DescriptionContains rule.
CategoryEquals Record programs from any of the categories given as arguments.
CategoryDoesNotEqual Don't record programs in any of the categories given as arguments.
DirectedBy Record program directed by given name.
WithActor Record program which has the actor by the given name.
SkipRepeats Only record first-run (non-repeat) programs if the argument to this rule is true.
NewEpisodesOnly If this is true, don't include programs that were already recorded before (based on title/sub-title/episode number).
NewTitlesOnly If this is true, don't include programs that were already recorded before (based on title only).
ProgramInfoContains Record program who's title, episode or description contains the given text. If more than one text is given an OR will be applied.
ProgramInfoDoesNotContain Record program who's title, episode or description does not contain the given text, only valid in combination with at least one ProgramInfoContains rule.
Martin