* 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
8 lines
231 B
C#
8 lines
231 B
C#
using ErsatzTV.Core;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public record StartFFmpegSession(string ChannelNumber, string Mode, string Scheme, string Host) :
|
|
IRequest<Either<BaseError, Unit>>,
|
|
IFFmpegWorkerRequest;
|