home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Products
TV-Server
For The Record - The rule-based scheduling suite
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="dvdfreak" data-source="post: 223055" data-attributes="member: 21313"><p>Yes, it works just as it should. To skip recordings with the "Repeat" flag turned on there is another SkipRepeats rule (see code snippet below).</p><p></p><p>Unfortunately, this rule is not (yet) available from the GUI, just never got around to adding it it seems. But since you are complaining about not being able to filter out these repeats, I may just have to add it to the "When" section below the other checkboxes <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite2" alt=";)" title="Wink ;)" loading="lazy" data-shortname=";)" /></p><p></p><p>[code]</p><p> public enum ScheduleRuleType</p><p> {</p><p> // Record on the given channel(s).</p><p> TvChannels,</p><p> // Record the timeslot closest to the given start time (usually combined with TitleEquals).</p><p> AroundTime,</p><p> // Record a program when its start time is between the two given times.</p><p> StartingBetween,</p><p> // Record on this specific date (mutually exclusive with DaysOfWeek).</p><p> OnDate,</p><p> // Record on these days of the week (mutually exclusive with OnDate),</p><p> // with second optional starting date argument.</p><p> DaysOfWeek,</p><p> // Record program with the given title.</p><p> TitleEquals,</p><p> // Record program with the given sub-title.</p><p> SubTitleEquals,</p><p> // Record program who's sub-title starts with the given text.</p><p> SubTitleStartsWith,</p><p> // Record program who's sub-title contains the given text.</p><p> SubTitleContains,</p><p> // Record program with the given episode number.</p><p> EpisodeNumberEquals,</p><p> // Record program who's title starts with the given text.</p><p> TitleStartsWith,</p><p> // Record program who's title contains the given text.</p><p> TitleContains,</p><p> // Record program who's description contains the given text.</p><p> DescriptionContains,</p><p> // Record programs from this category.</p><p> CategoryEquals,</p><p> // Record program directed by given name.</p><p> DirectedBy,</p><p> // Record program which has the actor by the given name.</p><p> WithActor,</p><p> // Only record first-run (non-repeat) programs if the argument to this rule is true.</p><p> SkipRepeats,</p><p> // If this is true, don't include programs that were already recorded before (based on title/sub-title/episode number).</p><p> NewEpisodesOnly,</p><p> // If this is true, don't include programs that were already recorded before (based on title only).</p><p> NewTitlesOnly,</p><p> // If this rule is added the schedule is a manual schedule with the given datetime</p><p> // and duration (ScheduleTime) arguments. When this rule is specified the TvChannels</p><p> // rule must be present with exactly one channel. The DaysOfWeek rule with one argument</p><p> // is optional, and no other rules are allowed.</p><p> ManualSchedule</p><p> }</p><p>[/code]</p><p></p><p></p><p></p><p>Is there any error logged in the event-log?</p><p></p><p></p><p></p><p>Definitely time to upgrade then! <img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite2" alt=";)" title="Wink ;)" loading="lazy" data-shortname=";)" /></p><p></p><p>It would be interesting if you could tell me step by step how to reproduce the database error, I'd like to fix that of course.</p></blockquote><p></p>
[QUOTE="dvdfreak, post: 223055, member: 21313"] Yes, it works just as it should. To skip recordings with the "Repeat" flag turned on there is another SkipRepeats rule (see code snippet below). Unfortunately, this rule is not (yet) available from the GUI, just never got around to adding it it seems. But since you are complaining about not being able to filter out these repeats, I may just have to add it to the "When" section below the other checkboxes ;) [code] public enum ScheduleRuleType { // Record on the given channel(s). TvChannels, // Record the timeslot closest to the given start time (usually combined with TitleEquals). AroundTime, // Record a program when its start time is between the two given times. StartingBetween, // Record on this specific date (mutually exclusive with DaysOfWeek). OnDate, // Record on these days of the week (mutually exclusive with OnDate), // with second optional starting date argument. DaysOfWeek, // Record program with the given title. TitleEquals, // Record program with the given sub-title. SubTitleEquals, // Record program who's sub-title starts with the given text. SubTitleStartsWith, // Record program who's sub-title contains the given text. SubTitleContains, // Record program with the given episode number. EpisodeNumberEquals, // Record program who's title starts with the given text. TitleStartsWith, // Record program who's title contains the given text. TitleContains, // Record program who's description contains the given text. DescriptionContains, // Record programs from this category. CategoryEquals, // Record program directed by given name. DirectedBy, // Record program which has the actor by the given name. WithActor, // Only record first-run (non-repeat) programs if the argument to this rule is true. SkipRepeats, // If this is true, don't include programs that were already recorded before (based on title/sub-title/episode number). NewEpisodesOnly, // If this is true, don't include programs that were already recorded before (based on title only). NewTitlesOnly, // 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. ManualSchedule } [/code] Is there any error logged in the event-log? Definitely time to upgrade then! ;) It would be interesting if you could tell me step by step how to reproduce the database error, I'd like to fix that of course. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Products
TV-Server
For The Record - The rule-based scheduling suite
Contact us
RSS
Top
Bottom