* fix software and vaapi 10 bit content * fix nvidia 10 bit content * some qsv improvements
15 lines
549 B
C#
15 lines
549 B
C#
using ErsatzTV.FFmpeg.Environment;
|
|
|
|
namespace ErsatzTV.FFmpeg.OutputFormat;
|
|
|
|
public class OutputFormatNut : IPipelineStep
|
|
{
|
|
public EnvironmentVariable[] EnvironmentVariables => Array.Empty<EnvironmentVariable>();
|
|
public string[] GlobalOptions => Array.Empty<string>();
|
|
public string[] InputOptions(InputFile inputFile) => Array.Empty<string>();
|
|
public string[] FilterOptions => Array.Empty<string>();
|
|
|
|
public string[] OutputOptions => ["-f", "nut"];
|
|
public FrameState NextState(FrameState currentState) => currentState;
|
|
}
|