mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 04:22:51 +08:00
Merge pull request #417 from 0x3333/master
Fix issue #195. Redirect stdout/err to /dev/null
This commit is contained in:
commit
0612a44f91
@ -279,8 +279,11 @@ 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 or quiet else None
|
stdout_stream = subprocess.PIPE if pipe_stdout else None
|
||||||
stderr_stream = subprocess.PIPE if pipe_stderr or quiet else None
|
stderr_stream = subprocess.PIPE if pipe_stderr else None
|
||||||
|
if quiet:
|
||||||
|
stderr_stream = subprocess.STDOUT
|
||||||
|
stdout_stream = subprocess.DEVNULL
|
||||||
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
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user