mirror of
https://github.com/kkroening/ffmpeg-python.git
synced 2025-04-05 12:48:09 +08:00
Fixes #782: Explicitly force stdin=subprocess.DEVNULL for compatibility with joblib/loki
This commit is contained in:
parent
df129c7ba3
commit
37dd98ca21
@ -281,7 +281,7 @@ def run_async(
|
|||||||
.. _subprocess Popen: https://docs.python.org/3/library/subprocess.html#popen-objects
|
.. _subprocess Popen: https://docs.python.org/3/library/subprocess.html#popen-objects
|
||||||
"""
|
"""
|
||||||
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 subprocess.DEVNULL
|
||||||
stdout_stream = subprocess.PIPE if pipe_stdout else None
|
stdout_stream = subprocess.PIPE if pipe_stdout else None
|
||||||
stderr_stream = subprocess.PIPE if pipe_stderr else None
|
stderr_stream = subprocess.PIPE if pipe_stderr else None
|
||||||
if quiet:
|
if quiet:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user