bumping version

This commit is contained in:
John Andrews
2024-01-08 09:57:49 +13:00
parent dcc8a6ca82
commit 26701df8b1

View File

@@ -29,16 +29,15 @@ public class CreateAudioBook: AudioNode
public override string HelpUrl => "https://fileflows.com/docs/plugins/audio-nodes/create-audio-book";
/// <summary>
/// Gets the node type
/// Gets the flow element type
/// </summary>
public override FlowElementType Type => FlowElementType.Process;
/// <summary>
/// Executes the node
/// Executes the flow element
/// </summary>
/// <param name="args">the node parameters</param>
/// <returns>the result of the execution</returns>
/// <returns>the output to call next, -1 to abort flow, 0 to end flow</returns>
public override int Execute(NodeParameters args)
{
var ffmpeg = GetFFmpeg(args);