This commit is contained in:
John Andrews
2024-02-20 20:51:41 +13:00
parent 6007684ad0
commit 86b89ea48d
17 changed files with 57 additions and 8 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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)

View File

@@ -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

View File

@@ -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

View File

@@ -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