Files
ersatztv/ErsatzTV.Application/Streaming/Queries/FFmpegProcessRequest.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

15 lines
400 B
C#

using ErsatzTV.Core;
using ErsatzTV.Core.Domain;
namespace ErsatzTV.Application.Streaming;
public record FFmpegProcessRequest(
string ChannelNumber,
StreamingMode Mode,
DateTimeOffset Now,
bool StartAtZero,
bool HlsRealtime,
DateTimeOffset ChannelStartTime,
TimeSpan PtsOffset,
Option<int> FFmpegProfileId) : IRequest<Either<BaseError, PlayoutItemProcessModel>>;