mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
475 B
19 lines
475 B
namespace ErsatzTV.Application.Streaming; |
|
|
|
public record GetConcatSegmenterProcessByChannelNumber : FFmpegProcessRequest |
|
{ |
|
public GetConcatSegmenterProcessByChannelNumber(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; } |
|
}
|
|
|