diff --git a/AudioNodes/AudioBooks/CreateAudioBook.cs b/AudioNodes/AudioBooks/CreateAudioBook.cs index cc0d5feb..a4ef57a3 100644 --- a/AudioNodes/AudioBooks/CreateAudioBook.cs +++ b/AudioNodes/AudioBooks/CreateAudioBook.cs @@ -8,12 +8,37 @@ namespace FileFlows.AudioNodes.AudioBooks; /// public class CreateAudioBook: AudioNode { + /// + /// Gets the icon + /// public override string Icon => "fas fa-book"; + /// + /// Gets the number of inputs + /// public override int Inputs => 1; + /// + /// Gets the number of outputs + /// public override int Outputs => 2; + /// + /// Gets the Help URL + /// + public override string HelpUrl => "https://docs.fileflows.com/plugins/audio-nodes/create-audio-book"; + + /// + /// Gets the node type + /// + public override FlowElementType Type => FlowElementType.Process; + + + /// + /// Executes the node + /// + /// the node parameters + /// the result of the execution public override int Execute(NodeParameters args) { var ffmpeg = GetFFmpeg(args);