mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2026-01-10 09:59:31 -06:00
12 lines
354 B
C#
12 lines
354 B
C#
namespace FileFlows.AudioNodes;
|
|
|
|
public class ConvertToMP3 : ConvertNode
|
|
{
|
|
/// <inheritdoc />
|
|
public override string HelpUrl => "https://fileflows.com/docs/plugins/audio-nodes/convert-to-mp3";
|
|
/// <inheritdoc />
|
|
protected override string DefaultExtension => "mp3";
|
|
|
|
/// <inheritdoc />
|
|
public override string Icon => "svg:mp3";
|
|
} |