* output progress/speed even when copying video * nvidia - decode 10-bit h264 in software * fixes * fix tests
50 lines
1.6 KiB
C#
50 lines
1.6 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 Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ErsatzTV.Application.Streaming;
|
|
|
|
public class GetErrorProcessHandler(
|
|
IDbContextFactory<TvContext> dbContextFactory,
|
|
IFFmpegProcessService ffmpegProcessService)
|
|
: FFmpegProcessHandler<GetErrorProcess>(dbContextFactory)
|
|
{
|
|
protected override async Task<Either<BaseError, PlayoutItemProcessModel>> GetProcess(
|
|
TvContext dbContext,
|
|
GetErrorProcess request,
|
|
Channel channel,
|
|
string ffmpegPath,
|
|
string ffprobePath,
|
|
CancellationToken cancellationToken)
|
|
{
|
|
Command process = await ffmpegProcessService.ForError(
|
|
ffmpegPath,
|
|
channel,
|
|
request.Now,
|
|
request.MaybeDuration,
|
|
request.ErrorMessage,
|
|
request.HlsRealtime,
|
|
request.PtsOffset,
|
|
channel.FFmpegProfile.VaapiDisplay,
|
|
channel.FFmpegProfile.VaapiDriver,
|
|
channel.FFmpegProfile.VaapiDevice,
|
|
Optional(channel.FFmpegProfile.QsvExtraHardwareFrames),
|
|
cancellationToken);
|
|
|
|
return new PlayoutItemProcessModel(
|
|
process,
|
|
Option<GraphicsEngineContext>.None,
|
|
request.MaybeDuration,
|
|
request.Until,
|
|
true,
|
|
request.Now.ToUnixTimeSeconds(),
|
|
Option<int>.None,
|
|
Optional(channel.PlayoutOffset),
|
|
!request.HlsRealtime);
|
|
}
|
|
}
|