add channel playback troubleshooter (#2641)

* fix motion graphics loop when seeking

* add channel playback troubleshooter

* fix errors
This commit is contained in:
Jason Dove
2025-11-12 13:21:18 -06:00
committed by GitHub
parent 8b18f2a304
commit 42b35f7aae
29 changed files with 482 additions and 271 deletions
@@ -10,11 +10,14 @@ public record GetPlayoutItemProcessByChannelNumber(
bool HlsRealtime,
DateTimeOffset ChannelStart,
TimeSpan PtsOffset,
Option<int> TargetFramerate) : FFmpegProcessRequest(
Option<int> TargetFramerate,
bool IsTroubleshooting,
Option<int> FFmpegProfileId) : FFmpegProcessRequest(
ChannelNumber,
Mode,
Now,
StartAtZero,
HlsRealtime,
ChannelStart,
PtsOffset);
PtsOffset,
FFmpegProfileId);