mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-05-04 07:10:44 -05:00
20 lines
553 B
C#
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";
|
|
} |