add channel transcode mode and idle behavior (#2255)

* add channel transcode mode and idle behavior

* allow custom_title on all yaml content instructions
This commit is contained in:
Jason Dove
2025-08-04 20:25:31 +00:00
committed by GitHub
parent b52159e8db
commit c055e59723
25 changed files with 12401 additions and 40 deletions
+8 -2
View File
@@ -37,6 +37,8 @@ public class ChannelEditViewModel
public ChannelSongVideoMode SongVideoMode { get; set; }
public ChannelActiveMode ActiveMode { get; set; }
public ChannelTranscodeMode TranscodeMode { get; set; }
public ChannelIdleBehavior IdleBehavior { get; set; }
public UpdateChannel ToUpdate() =>
new(
@@ -62,7 +64,9 @@ public class ChannelEditViewModel
MusicVideoCreditsMode,
MusicVideoCreditsTemplate,
SongVideoMode,
ActiveMode);
ActiveMode,
TranscodeMode,
IdleBehavior);
public CreateChannel ToCreate() =>
new(
@@ -87,5 +91,7 @@ public class ChannelEditViewModel
MusicVideoCreditsMode,
MusicVideoCreditsTemplate,
SongVideoMode,
ActiveMode);
ActiveMode,
TranscodeMode,
IdleBehavior);
}