2005-02-10, 08:19 PM
(This post was last modified: 2006-05-13, 03:57 AM by KingArgyle.)
The CDK Scheduler treats everything as a Season record. You narrow the scope by setting the various restrictions. You can combine any of these. The only items that should not be combined are the ProgramName and the Search criteria. One or
the other needs to be specified.
CDK Scheduler Example Recording Scenarios setup:
Season Record All Channels:
Season Record this Channel:
Season Record this Channel this Day:
Season Record this Channel restrict time range
Don't Record Duplicates:
Don't Record Duplicates, but Schedule Duplicates:
The supper restricted recording:
You can combine any of these so that you can restrict as much as you want to as little as you want. These settings should work with the current CDK Scheduler and XRecord v16.
the other needs to be specified.
CDK Scheduler Example Recording Scenarios setup:
Season Record All Channels:
Code:
<Recording type="Season" priority="1">
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
</Recording>
Season Record this Channel:
Code:
<Recording type="Season" priority="1">
<Channel>4</Channel>
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
</Recording>
Season Record this Channel this Day:
Code:
<Recording type="Season" priority="1">
<Channel>4</Channel>
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
<LimitDays>
<DaysOfWeek>Wednesday</DaysOfWeek>
</LimitDays>
</Recording>
Season Record this Channel restrict time range
Code:
<Recording type="Season" priority="1">
<Channel>4</Channel>
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
<ScheduleTime>
<Start time="11:00"/>
<End time="23:00"/>
</ScheduleTime>
</Recording>
Don't Record Duplicates:
Code:
<Recording type="Season" priority="1">
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
<Duplicates>
<Recorded>No</Duplicates>
<Scheduled>No</Duplicates>
</Duplicates>
</Recording>
Don't Record Duplicates, but Schedule Duplicates:
Code:
<Recording type="Season" priority="1">
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
<Duplicates>
<Recorded>No</Duplicates>
<Scheduled>Yes</Duplicates>
</Duplicates>
</Recording>
The supper restricted recording:
Code:
<Recording type="Season" priority="1">
<Channel>4</Channel>
<ProgramName>The West Wing</ProgramName>
<RecordingType>All Episodes</RecordingType>
<Quality>Medium</Quality>
<CaptureSource>1</CaptureSource>
<Duplicates>
<Recorded>No</Recorded>
<Scheduled>No</Scheduled>
</Duplicates>
<LimitDays>
<DaysOfWeek>Saturday</DaysOfWeek>
<DaysOfWeek>Sunday</DaysOfWeek>
</LimitDays>
<ScheduleTime>
<Start date="2005-04-04" time="2000"></Start>
<End date="2005-04-06" time="2359"></End>
</ScheduleTime>
<Padding>
<PrePadding>1</PrePadding>
<PostPadding>4</PostPadding>
</Padding>
</Recording>
You can combine any of these so that you can restrict as much as you want to as little as you want. These settings should work with the current CDK Scheduler and XRecord v16.