We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c12e889 commit 0ec6e69Copy full SHA for 0ec6e69
ffmpeg/_run.py
@@ -282,7 +282,8 @@ def run_async(
282
stdout_stream = subprocess.PIPE if pipe_stdout else None
283
stderr_stream = subprocess.PIPE if pipe_stderr else None
284
if quiet:
285
- stdout_stream = stderr_stream = subprocess.DEVNULL
+ stderr_stream = subprocess.STDOUT
286
+ stdout_stream = subprocess.DEVNULL
287
return subprocess.Popen(
288
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream
289
)
0 commit comments