From ee0ae79a5ddc742f6864ed7a9eb34100d2dce64e Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Sat, 24 Feb 2024 11:45:20 -0500 Subject: [PATCH] docs: Updated some comments. --- ffmpeg.nu | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ffmpeg.nu b/ffmpeg.nu index 3052855..6b664a5 100644 --- a/ffmpeg.nu +++ b/ffmpeg.nu @@ -93,11 +93,11 @@ def "filter to-string" []: record name: string params: table } | format pattern '[{input}]{name}={params}[{output}]' | str replace -ar '\[\]|=(?=[\[,;])' '' } -# Set the input and outputs of a filter chain +# Add a chain of filters to the command's filtergraph export def filterchain [ - --input (-i): list - --output (-o): list - filter: closure + --input (-i): list # sets the input of the last filterchain's first filter + --output (-o): list # sets the output of the last filterchain's last filter + filter: closure # The filter, or filters to append to the filtergraph ] { let cmd = $in; let original_option = $cmd.options.chain_filters;