about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/yt/src/constants.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--sys/nixpkgs/pkgs/yt/src/constants.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/nixpkgs/pkgs/yt/src/constants.rs b/sys/nixpkgs/pkgs/yt/src/constants.rs
index 6385df54..5e233656 100644
--- a/sys/nixpkgs/pkgs/yt/src/constants.rs
+++ b/sys/nixpkgs/pkgs/yt/src/constants.rs
@@ -18,7 +18,12 @@ pub const YT_DLP_FLAGS: [&str; 13] = [
     "--sponsorblock-remove",
     "sponsor",
 ];
-pub const MPV_FLAGS: [&str; 2] = ["--speed=2.7", "--volume=75"];
+pub const MPV_FLAGS: [&str; 4] = [
+    "--speed=2.7",
+    "--volume=75",
+    "--keep-open=yes",
+    "--msg-level=osd/libass=fatal",
+];
 
 pub const CONCURRENT: u32 = 5;