diff --git a/ffmpeg/_run.py b/ffmpeg/_run.py index 559a0f4..c3d5550 100644 --- a/ffmpeg/_run.py +++ b/ffmpeg/_run.py @@ -282,7 +282,8 @@ def run_async( stdout_stream = subprocess.PIPE if pipe_stdout else None stderr_stream = subprocess.PIPE if pipe_stderr else None if quiet: - stdout_stream = stderr_stream = subprocess.DEVNULL + stderr_stream = subprocess.STDOUT + stdout_stream = subprocess.DEVNULL return subprocess.Popen( args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream )