From f461194702bd29b3b2312f944ff63c6d04ac338b Mon Sep 17 00:00:00 2001 From: Couleur <82747632+couleurm@users.noreply.github.com> Date: Wed, 1 May 2024 17:14:18 +0200 Subject: [PATCH] cli: enc-args alias, peek can be used with enc-args --- src/cli.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 2ad7e49..43bb03a 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -31,7 +31,7 @@ pub struct Arguments { pub outdir: Option, /// Overrides output to an image of frame number passed - #[clap(long, conflicts_with = "encargs")] + #[clap(long)] pub peek: Option, /// Pass a .vpy script to evaluate nodes from @@ -111,6 +111,7 @@ pub struct Arguments { /// Override FFmpeg encoding arguments (prefer using --override) #[clap( + alias = "enc-args", visible_alias = "enc", long, conflicts_with = "tompv", @@ -127,7 +128,7 @@ pub struct Arguments { pub recipe_str: Option, /// Override recipe setting(s), e.g: --ov "flowblur;amount;40" "misc;container;MKV" - #[clap(visible_alias="ov", visible_alias="overide", long, num_args=1..)] + #[clap(visible_alias="ov", alias="overide", long, num_args=1..)] pub r#override: Option>, }