* output progress/speed even when copying video * nvidia - decode 10-bit h264 in software * fixes * fix tests
54 lines
1.7 KiB
C#
54 lines
1.7 KiB
C#
using CliWrap;
|
|
using ErsatzTV.Core;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Interfaces.FFmpeg;
|
|
using ErsatzTV.Core.Interfaces.Streaming;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using ErsatzTV.Infrastructure.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public class GetConcatProcessByChannelNumberHandler : FFmpegProcessHandler<GetConcatProcessByChannelNumber>
|
|
{
|
|
private readonly IFFmpegProcessService _ffmpegProcessService;
|
|
|
|
public GetConcatProcessByChannelNumberHandler(
|
|
IDbContextFactory<TvContext> dbContextFactory,
|
|
IFFmpegProcessService ffmpegProcessService)
|
|
: base(dbContextFactory) =>
|
|
_ffmpegProcessService = ffmpegProcessService;
|
|
|
|
protected override async Task<Either<BaseError, PlayoutItemProcessModel>> GetProcess(
|
|
TvContext dbContext,
|
|
GetConcatProcessByChannelNumber request,
|
|
Channel channel,
|
|
string ffmpegPath,
|
|
string ffprobePath,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
bool saveReports = await dbContext.ConfigElements
|
|
.GetValue<bool>(ConfigElementKey.FFmpegSaveReports, cancellationToken)
|
|
.Map(result => result.IfNone(false));
|
|
|
|
Command process = await _ffmpegProcessService.ConcatChannel(
|
|
ffmpegPath,
|
|
saveReports,
|
|
channel,
|
|
request.Scheme,
|
|
request.Host,
|
|
cancellationToken);
|
|
|
|
return new PlayoutItemProcessModel(
|
|
process,
|
|
Option<GraphicsEngineContext>.None,
|
|
Option<TimeSpan>.None,
|
|
DateTimeOffset.MaxValue,
|
|
true,
|
|
Option<long>.None,
|
|
Option<int>.None,
|
|
Option<TimeSpan>.None,
|
|
false);
|
|
}
|
|
}
|