Files
ersatztv/ErsatzTV.Application/Streaming/Queries/GetConcatSegmenterProcessByChannelNumber.cs
T
Jason DoveandGitHub b46de50801 add hls segmenter fmp4 streaming mode (#2468)
* add streaming mode segmenter fmp4

* allow hevc channel preview
2025-09-30 10:04:02 -05:00

23 lines
560 B
C#

using ErsatzTV.Core.Domain;
namespace ErsatzTV.Application.Streaming;
public record GetConcatSegmenterProcessByChannelNumber : FFmpegProcessRequest
{
public GetConcatSegmenterProcessByChannelNumber(string scheme, string host, string channelNumber) : base(
channelNumber,
StreamingMode.TransportStream,
DateTimeOffset.Now,
false,
true,
DateTimeOffset.Now, // unused
0)
{
Scheme = scheme;
Host = host;
}
public string Scheme { get; }
public string Host { get; }
}