From 7debe931150155c902b915d7aec2f7408ae9ebb8 Mon Sep 17 00:00:00 2001 From: John Andrews Date: Sat, 18 Jun 2022 14:43:24 +1200 Subject: [PATCH] fixing hw decoding --- VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs b/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs index 8730dae1..db165574 100644 --- a/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs +++ b/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs @@ -146,7 +146,7 @@ namespace FileFlows.VideoNodes.FfmpegBuilderNodes { return new[] { - new [] { "-hwaccel", "cuda", "-hwaccel_output_format", "cuda" }, + //new [] { "-hwaccel", "nvdec", "-hwaccel_output_format", "cuda" }, new [] { "-hwaccel", "cuda" }, new [] { "-hwaccel", "qsv", "-c:v","h264_qsv" }, new [] { "-hwaccel", "dxva2" }, @@ -159,7 +159,7 @@ namespace FileFlows.VideoNodes.FfmpegBuilderNodes { return new[] { - new [] { "-hwaccel", "cuda", "-hwaccel_output_format", "cuda" }, + //new [] { "-hwaccel", "nvdec", "-hwaccel_output_format", "cuda" }, new [] { "-hwaccel", "cuda" }, new [] { "-hwaccel", "qsv", "-c:v", "hevc_qsv" }, new [] { "-hwaccel", "dxva2" }, @@ -172,7 +172,7 @@ namespace FileFlows.VideoNodes.FfmpegBuilderNodes { return new[] { - new [] { "-hwaccel", "cuda", "-hwaccel_output_format", "cuda" }, + //new [] { "-hwaccel", "cuda", "-hwaccel_output_format", "cuda" }, new [] { "-hwaccel", "cuda" }, new [] { "-hwaccel", "qsv" }, new [] { "-hwaccel", "dxva2" },