* concat segmenter process kind of works * segmenter v2 improvements * rework to allow hw accel in concat segmenter * remove shortest; use different audio alignment filter * hls v2 improvements * fix tests * update changelog
20 lines
475 B
C#
20 lines
475 B
C#
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; }
|
|
}
|