mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-02-11 06:08:34 -06:00
12 lines
295 B
C#
12 lines
295 B
C#
namespace FileFlows.VideoNodes.FfmpegBuilderNodes.EncoderAdjustments;
|
|
|
|
public class EncoderAdjustment
|
|
{
|
|
public static List<string> Run(List<string> args)
|
|
{
|
|
if (VaapiAdjustments.IsUsingVaapi(args))
|
|
return new VaapiAdjustments().Run(args);
|
|
|
|
return args;
|
|
}
|
|
} |