mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-06 04:15:44 +08:00
Avoid overriding "pipe" option with "quiet"
Signed-off-by: ArchieMeng <archiemeng@protonmail.com>
This commit is contained in:
parent
f3079726fa
commit
a15f32ca92
@ -280,11 +280,19 @@ def run_async(
|
|||||||
"""
|
"""
|
||||||
args = compile(stream_spec, cmd, overwrite_output=overwrite_output)
|
args = compile(stream_spec, cmd, overwrite_output=overwrite_output)
|
||||||
stdin_stream = subprocess.PIPE if pipe_stdin else None
|
stdin_stream = subprocess.PIPE if pipe_stdin else None
|
||||||
stdout_stream = subprocess.PIPE if pipe_stdout else None
|
stdout_stream = stderr_stream = None
|
||||||
stderr_stream = subprocess.PIPE if pipe_stderr else None
|
|
||||||
if quiet:
|
if quiet:
|
||||||
stderr_stream = subprocess.STDOUT
|
stderr_stream = subprocess.STDOUT
|
||||||
stdout_stream = subprocess.DEVNULL
|
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(
|
return subprocess.Popen(
|
||||||
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream,
|
args, stdin=stdin_stream, stdout=stdout_stream, stderr=stderr_stream,
|
||||||
cwd=cwd
|
cwd=cwd
|
||||||
|
Loading…
x
Reference in New Issue
Block a user