From a15f32ca9275b1c61901de13fa2a46e16d82b69a Mon Sep 17 00:00:00 2001 From: ArchieMeng Date: Tue, 27 Apr 2021 15:01:22 +0800 Subject: [PATCH] Avoid overriding "pipe" option with "quiet" Signed-off-by: ArchieMeng --- ffmpeg/_run.py | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/ffmpeg/_run.py b/ffmpeg/_run.py index eadb90a..a7ed400 100644 --- a/ffmpeg/_run.py +++ b/ffmpeg/_run.py @@ -280,11 +280,19 @@ def run_async( """ args = compile(stream_spec, cmd, overwrite_output=overwrite_output) stdin_stream = subprocess.PIPE if pipe_stdin else None - stdout_stream = subprocess.PIPE if pipe_stdout else None - stderr_stream = subprocess.PIPE if pipe_stderr else None + stdout_stream = stderr_stream = None + if quiet: stderr_stream = subprocess.STDOUT stdout_stream = subprocess.DEVNULL + + if pipe_stdout: + stdout_stream = subprocess.PIPE + stderr_stream = subprocess.DEVNULL if quiet else None + + if pipe_stderr: + stderr_stream = subprocess.PIPE + return subprocess.Popen( args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream, cwd=cwd