about summary refs log tree commit diff stats
path: root/crates
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-15 07:10:38 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-07-15 07:10:38 +0200
commitbda2fd6e886ae9f699708fd6d6848d9a11bba423 (patch)
tree97dcc6dbb0ac4946d66934f05b0b0f56b9294d46 /crates
parentfeat(crates/yt/subscribe): Support a `--no-check` argument (diff)
downloadyt-bda2fd6e886ae9f699708fd6d6848d9a11bba423.zip
fix(crates/yt/cli): Use the correct `--plackback-speed` option name
Diffstat (limited to 'crates')
-rw-r--r--crates/yt/src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/yt/src/cli.rs b/crates/yt/src/cli.rs
index 20bce0d..3e59c55 100644
--- a/crates/yt/src/cli.rs
+++ b/crates/yt/src/cli.rs
@@ -264,8 +264,8 @@ pub(crate) struct SharedSelectionCommandArgs {
     pub(crate) subtitle_langs: Option<String>,
 
     /// The speed to set mpv to
-    #[arg(short, long)]
-    pub(crate) speed: Option<f64>,
+    #[arg(short = 's', long)]
+    pub(crate) playback_speed: Option<f64>,
 
     /// The short extractor hash
     pub(crate) hash: LazyExtractorHash,