Files
ersatztv/ErsatzTV.Application/Streaming/Queries/GetErrorProcess.cs
T
Jason DoveandGitHub 42b35f7aae add channel playback troubleshooter (#2641)
* fix motion graphics loop when seeking

* add channel playback troubleshooter

* fix errors
2025-11-12 13:21:18 -06:00

21 lines
465 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Application.Streaming;
public record GetErrorProcess(
string ChannelNumber,
StreamingMode Mode,
bool HlsRealtime,
TimeSpan PtsOffset,
Option<TimeSpan> MaybeDuration,
DateTimeOffset Until,
string ErrorMessage) : FFmpegProcessRequest(
ChannelNumber,
Mode,
DateTimeOffset.Now,
true,
HlsRealtime,
DateTimeOffset.Now, // unused
PtsOffset,
Option<int>.None);