mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 11:19:31 -06:00
icons
This commit is contained in:
@@ -14,6 +14,8 @@ public class FfmpegBuilderRemuxToMP4: FfmpegBuilderNode
|
||||
/// Gets if the editor should be shown on add by default
|
||||
/// </summary>
|
||||
public override bool NoEditorOnAdd => true;
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:mp4";
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets if hvc1 tag should be added
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
public class FfmpegBuilderRemuxToMkv : FfmpegBuilderNode
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:mkv";
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/video-nodes/ffmpeg-builder/remux-to-mkv";
|
||||
|
||||
public override int Execute(NodeParameters args)
|
||||
|
||||
@@ -2,6 +2,9 @@
|
||||
|
||||
public class FfmpegBuilderRemuxToMov : FfmpegBuilderNode
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:mov";
|
||||
/// <inheritdoc />
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/video-nodes/ffmpeg-builder/remux-to-mov";
|
||||
|
||||
public override int Execute(NodeParameters args)
|
||||
|
||||
@@ -14,6 +14,9 @@ public class FfmpegBuilderRemuxToMxf : FfmpegBuilderNode
|
||||
/// Gets that this is an enterprise flow element
|
||||
/// </summary>
|
||||
public override bool Enterprise => true;
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:mxf";
|
||||
|
||||
/// <inheritdoc />
|
||||
public override int Execute(NodeParameters args)
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
public class FfmpegBuilderRemuxToWebm : FfmpegBuilderNode
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:webm";
|
||||
public override string HelpUrl => "https://fileflows.com/docs/plugins/video-nodes/ffmpeg-builder/remux-to-webm";
|
||||
|
||||
public override int Execute(NodeParameters args)
|
||||
|
||||
@@ -9,6 +9,9 @@ public class DisableAmd:DisableEncoder
|
||||
/// Gets the encoder variable
|
||||
/// </summary>
|
||||
protected override string EncoderVariable => "NoAMD";
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:amd";
|
||||
|
||||
/// <summary>
|
||||
/// Gets the help URL
|
||||
|
||||
@@ -9,6 +9,9 @@ public class DisableIntelQsv:DisableEncoder
|
||||
/// Gets the encoder variable
|
||||
/// </summary>
|
||||
protected override string EncoderVariable => "NoQSV";
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:intel";
|
||||
|
||||
/// <summary>
|
||||
/// Gets the help URL
|
||||
|
||||
@@ -9,6 +9,9 @@ public class DisableNvidia:DisableEncoder
|
||||
/// Gets the encoder variable
|
||||
/// </summary>
|
||||
protected override string EncoderVariable => "NoNvidia";
|
||||
|
||||
/// <inheritdoc />
|
||||
public override string Icon => "svg:nvidia";
|
||||
|
||||
/// <summary>
|
||||
/// Gets the help URL
|
||||
|
||||
Reference in New Issue
Block a user