diff --git a/VideoNodes/FfmpegBuilderNodes/Audio/FfmpegBuilderAudioAddTrack.cs b/VideoNodes/FfmpegBuilderNodes/Audio/FfmpegBuilderAudioAddTrack.cs
index 254a60ad..20d8096f 100644
--- a/VideoNodes/FfmpegBuilderNodes/Audio/FfmpegBuilderAudioAddTrack.cs
+++ b/VideoNodes/FfmpegBuilderNodes/Audio/FfmpegBuilderAudioAddTrack.cs
@@ -20,7 +20,6 @@ public class FfmpegBuilderAudioAddTrack : TrackSelectorFlowElement
public override int Outputs => 2;
-
///
/// Gets or sets the index to insert this track
///
@@ -164,14 +163,19 @@ public class FfmpegBuilderAudioAddTrack : TrackSelectorFlowElement
+ /// Gets or sets an optional filter for the new track
+ ///
+ [TextVariable(10)]
+ public string Filter { get; set; }
+ ///
/// Gets or sets if the title of the new track should be removed
///
- [Boolean(10)]
+ [Boolean(11)]
public bool RemoveTitle { get; set; }
///
/// Gets or sets the title of the new track
///
- [TextVariable(11)]
+ [TextVariable(12)]
[ConditionEquals(nameof(RemoveTitle), false)]
public string NewTitle { get; set; }
@@ -195,6 +199,7 @@ public class FfmpegBuilderAudioAddTrack : TrackSelectorFlowElement