[get_exe_version] Do version probes with <&-
authorJohn Hawkinson <jhawk@mit.edu>
Sat, 22 Oct 2016 00:44:49 +0000 (20:44 -0400)
committerJohn Hawkinson <jhawk@mit.edu>
Sat, 22 Oct 2016 04:34:08 +0000 (00:34 -0400)
When doing version probes for ffmpeg, do the
equivalent of calling it as:

    ffmpeg -version <&-

Where <&- is shell syntax for closing stdin before calling the
program. This is roughly equivalent to </dev/null without actually
opening /dev/null.

This prevents ffmpeg -version from hanging when run in the background.
Fixes #955.

The reason is that ffmpeg tries to manipulate stdin to set up terminal
characteristic, and that causes the kernel to suspend the parent
process (youtube-dl).

Note that closing stdin is achieved by calling subprocess.Popen() with
stdin set to subprocess.PIPE and without passing any input to
Popen.communicate(). This is somewhat subtle.

youtube_dl/utils.py

index 28941673fa9bec36b24464faa79cc3b2348aca99..a89ff6908b3bfe2f42488b63ba2515d48e15f4da 100644 (file)
@@ -1820,6 +1820,7 @@ def get_exe_version(exe, args=['--version'],
     try:
         out, _ = subprocess.Popen(
             [encodeArgument(exe)] + args,
+            stdin=subprocess.PIPE,
             stdout=subprocess.PIPE, stderr=subprocess.STDOUT).communicate()
     except OSError:
         return False