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

24 lines
580 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Application.Streaming;
public record GetConcatProcessByChannelNumber : FFmpegProcessRequest
{
public GetConcatProcessByChannelNumber(string scheme, string host, string channelNumber) : base(
channelNumber,
StreamingMode.TransportStream,
DateTimeOffset.Now,
false,
true,
DateTimeOffset.Now, // unused
TimeSpan.Zero,
Option<int>.None)
{
Scheme = scheme;
Host = host;
}
public string Scheme { get; }
public string Host { get; }
}