Files
FileFlowsPlugins/VideoNodes/FfmpegBuilderNodes/Video/HardwareEncoders/DisableIntelQsv.cs
T
John Andrews 86b89ea48d icons
2024-02-20 20:51:41 +13:00

20 lines
553 B
C#

namespace FileFlows.VideoNodes.FfmpegBuilderNodes;
/// <summary>
/// Disabled Intel QSV encoding
/// </summary>
public class DisableIntelQsv:DisableEncoder
{
/// <summary>
/// Gets the encoder variable
/// </summary>
protected override string EncoderVariable => "NoQSV";
/// <inheritdoc />
public override string Icon => "svg:intel";
/// <summary>
/// Gets the help URL
/// </summary>
public override string HelpUrl => "https://fileflows.com/docs/plugins/video-nodes/hardware-encoders/disable-intel-qsv";
}