mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-25 14:19:33 -06:00
19 lines
609 B
C#
19 lines
609 B
C#
namespace FileFlows.AudioNodes;
|
|
|
|
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";
|
|
/// <inheritdoc />
|
|
public override string Icon => "svg:aac";
|
|
|
|
/// <summary>
|
|
/// Gets or sets if high efficiency should be used
|
|
/// </summary>
|
|
[Boolean(5)]
|
|
public bool HighEfficiency { get => base.HighEfficiency; set =>base.HighEfficiency = value; }
|
|
|
|
protected override bool SetId3Tags => true;
|
|
} |