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.
25 lines
579 B
25 lines
579 B
namespace ErsatzTV.Application.Streaming; |
|
|
|
public record GetWrappedProcessByChannelNumber : FFmpegProcessRequest |
|
{ |
|
public GetWrappedProcessByChannelNumber( |
|
string scheme, |
|
string host, |
|
string accessToken, |
|
string channelNumber) : base( |
|
channelNumber, |
|
"ts", |
|
DateTimeOffset.Now, |
|
false, |
|
true, |
|
0) |
|
{ |
|
Scheme = scheme; |
|
Host = host; |
|
AccessToken = accessToken; |
|
} |
|
|
|
public string Scheme { get; } |
|
public string Host { get; } |
|
public string AccessToken { get; } |
|
}
|
|
|