* hls segmenter wip * log message * close unused transcode sessions after 2 minutes * use frame rate for 2s keyframes in hls segmenter * add frame rate to media version * fix segmenter framerate calculation * automatically restart hls segmenter with next scheduled item * cleanup * update changelog * decrease segmenter start delay
18 lines
459 B
C#
18 lines
459 B
C#
namespace ErsatzTV.Application.Streaming.Queries
|
|
{
|
|
public record GetConcatProcessByChannelNumber : FFmpegProcessRequest
|
|
{
|
|
public GetConcatProcessByChannelNumber(string scheme, string host, string channelNumber) : base(
|
|
channelNumber,
|
|
"ts",
|
|
false)
|
|
{
|
|
Scheme = scheme;
|
|
Host = host;
|
|
}
|
|
|
|
public string Scheme { get; }
|
|
public string Host { get; }
|
|
}
|
|
}
|