20 lines
457 B
C#
20 lines
457 B
C#
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public record GetConcatProcessByChannelNumber : FFmpegProcessRequest
|
|
{
|
|
public GetConcatProcessByChannelNumber(string scheme, string host, string channelNumber) : base(
|
|
channelNumber,
|
|
"ts-legacy",
|
|
DateTimeOffset.Now,
|
|
false,
|
|
true,
|
|
0)
|
|
{
|
|
Scheme = scheme;
|
|
Host = host;
|
|
}
|
|
|
|
public string Scheme { get; }
|
|
public string Host { get; }
|
|
}
|