From ff7be63aa4aa44f73c4582daae3cf48a806330e1 Mon Sep 17 00:00:00 2001 From: John Andrews Date: Wed, 27 Dec 2023 08:34:37 +1300 Subject: [PATCH] tweaking decoder --- VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs b/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs index ba3aa8f2..6fca9368 100644 --- a/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs +++ b/VideoNodes/FfmpegBuilderNodes/FfmpegBuilderExecutor.cs @@ -295,6 +295,7 @@ public class FfmpegBuilderExecutor: FfmpegBuilderNode //new [] { "-hwaccel", "cuda", "-hwaccel_output_format", "cuda" }, // this fails with Impossible to convert between the formats supported by the filter 'Parsed_crop_0' and the filter 'auto_scale_0' IsMac ? new [] { "-hwaccel", "videotoolbox" } : null, new [] { "-hwaccel", "cuda" }, + new [] { "-hwaccel", "qsv", "-hwaccel_output_format", "p010le" }, new [] { "-hwaccel", "qsv", "-hwaccel_output_format", "qsv" }, new [] { "-hwaccel", "vaapi", "-hwaccel_output_format", "vaapi" }, new [] { "-hwaccel", "vulkan", "-hwaccel_output_format", "vulkan" }, @@ -311,6 +312,7 @@ public class FfmpegBuilderExecutor: FfmpegBuilderNode //new [] { "-hwaccel", "cuda", "-hwaccel_output_format", "cuda" }, // this fails with Impossible to convert between the formats supported by the filter 'Parsed_crop_0' and the filter 'auto_scale_0' IsMac ? new [] { "-hwaccel", "videotoolbox" } : null, new [] { "-hwaccel", "cuda" }, + new [] { "-hwaccel", "qsv", "-hwaccel_output_format", "p010le" }, new [] { "-hwaccel", "qsv", "-hwaccel_output_format", "qsv" }, new [] { "-hwaccel", "vaapi", "-hwaccel_output_format", "vaapi" }, new [] { "-hwaccel", "vulkan", "-hwaccel_output_format", "vulkan" },