From 37dd98ca210fb8132575bedd719c6f8f9bfd1021 Mon Sep 17 00:00:00 2001 From: Charles Newey Date: Mon, 17 Jul 2023 17:17:55 +0100 Subject: [PATCH] Fixes #782: Explicitly force stdin=subprocess.DEVNULL for compatibility with joblib/loki --- ffmpeg/_run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffmpeg/_run.py b/ffmpeg/_run.py index f42d1d7..ee8a4ed 100644 --- a/ffmpeg/_run.py +++ b/ffmpeg/_run.py @@ -281,7 +281,7 @@ def run_async( .. _subprocess Popen: https://docs.python.org/3/library/subprocess.html#popen-objects """ 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 stderr_stream = subprocess.PIPE if pipe_stderr else None if quiet: