* rename HttpLiveStreaming to HttpLiveStreamingDirect * improve hls direct compatibility with channels dvr * code cleanup
17 lines
440 B
C#
17 lines
440 B
C#
namespace ErsatzTV.Application.Streaming.Queries
|
|
{
|
|
public record GetConcatProcessByChannelNumber : FFmpegProcessRequest
|
|
{
|
|
public GetConcatProcessByChannelNumber(string scheme, string host, string channelNumber) : base(
|
|
channelNumber,
|
|
"ts")
|
|
{
|
|
Scheme = scheme;
|
|
Host = host;
|
|
}
|
|
|
|
public string Scheme { get; }
|
|
public string Host { get; }
|
|
}
|
|
}
|