From b077aac350e6b32aceabcc29ec0b93e8ebe8b64b Mon Sep 17 00:00:00 2001 From: DarkLord76865 Date: Fri, 25 Aug 2023 16:55:06 +0200 Subject: [PATCH] disabled window creation on windows --- ffmpeg/_run.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ffmpeg/_run.py b/ffmpeg/_run.py index f42d1d7..dcf14a8 100644 --- a/ffmpeg/_run.py +++ b/ffmpeg/_run.py @@ -6,6 +6,7 @@ from functools import reduce import copy import operator import subprocess +import sys from ._ffmpeg import input, output from .nodes import ( @@ -284,6 +285,11 @@ def run_async( stdin_stream = subprocess.PIPE if pipe_stdin else None stdout_stream = subprocess.PIPE if pipe_stdout else None stderr_stream = subprocess.PIPE if pipe_stderr else None + + creation_flags = 0 + if sys.platform == "win32": + creation_flags = subprocess.CREATE_NO_WINDOW + if quiet: stderr_stream = subprocess.STDOUT stdout_stream = subprocess.DEVNULL @@ -293,6 +299,7 @@ def run_async( stdout=stdout_stream, stderr=stderr_stream, cwd=cwd, + creationflags=creation_flags, )