From a971c7c35b4d147ef2e4af793f49e2d1a964c591 Mon Sep 17 00:00:00 2001 From: Ryze <50497128+ryze312@users.noreply.github.com> Date: Wed, 14 Feb 2024 18:44:34 +0300 Subject: [PATCH] Pass --no-terminal to mpv (#10) --- src/command.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/command.rs b/src/command.rs index 4f56442..048b099 100644 --- a/src/command.rs +++ b/src/command.rs @@ -83,6 +83,7 @@ impl Command { command.stdout(process::Stdio::null()); command.stderr(process::Stdio::null()); + command.arg("--no-terminal"); command.args(args); command.arg("--"); command.arg(url);