diff options
| author | Shyam Sunder <sgsunder1@gmail.com> | 2022-01-16 11:07:46 -0500 |
|---|---|---|
| committer | Shyam Sunder <sgsunder1@gmail.com> | 2022-01-16 11:07:46 -0500 |
| commit | 106dcc41356fdf7671a3b2a98a5fe3023c0e7af9 (patch) | |
| tree | 205d810c251ff9efbf9cd51c7d68948646d9b8a7 | |
| parent | 780b7dc6fd1830244a6236905a6e8ce9afcfb993 (diff) | |
server/func/images: Do not pass file content to ffmpeg stdin
| -rw-r--r-- | server/szurubooru/func/images.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/szurubooru/func/images.py b/server/szurubooru/func/images.py index de41222..4d4011f 100644 --- a/server/szurubooru/func/images.py +++ b/server/szurubooru/func/images.py @@ -277,10 +277,10 @@ class Image: proc = subprocess.Popen( cli, stdout=subprocess.PIPE, - stdin=subprocess.PIPE, + stdin=subprocess.DEVNULL, stderr=subprocess.PIPE, ) - out, err = proc.communicate(input=self.content) + out, err = proc.communicate() if proc.returncode != 0: logger.warning( "Failed to execute ffmpeg command (cli=%r, err=%r)", |