From 16c1dd16d3c154fc5b3ec7d83d63fb452dc339d8 Mon Sep 17 00:00:00 2001 From: john Date: Sun, 20 Nov 2022 18:22:28 +1300 Subject: [PATCH] FF-253 - added Create Audio Book node --- AudioNodes/AudioBooks/CreateAudioBook.cs | 25 ++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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);