FF-1439 - added more options to convert audio

This commit is contained in:
John Andrews
2024-04-16 14:22:23 +12:00
parent c89b8b972a
commit 186c27dc35
7 changed files with 155 additions and 47 deletions
@@ -5,15 +5,13 @@ public class ConvertToAAC : ConvertNode
/// <inheritdoc />
public override string HelpUrl => "https://fileflows.com/docs/plugins/audio-nodes/convert-to-aac";
/// <inheritdoc />
protected override string Extension => "aac";
protected override string DefaultExtension => "aac";
/// <inheritdoc />
public override string Icon => "svg:aac";
/// <summary>
/// Gets or sets if high efficiency should be used
/// </summary>
[Boolean(5)]
[Boolean(6)]
public bool HighEfficiency { get => base.HighEfficiency; set =>base.HighEfficiency = value; }
protected override bool SetId3Tags => true;
}