From 586e862aa6cf67f66ac682fb4fb9017c838c734f Mon Sep 17 00:00:00 2001 From: Lovi-0 Date: Sun, 7 Jul 2024 16:03:43 +0200 Subject: [PATCH] Fix args --- Src/Lib/FFmpeg/capture.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Lib/FFmpeg/capture.py b/Src/Lib/FFmpeg/capture.py index a06d4f6..ddd5889 100644 --- a/Src/Lib/FFmpeg/capture.py +++ b/Src/Lib/FFmpeg/capture.py @@ -149,7 +149,7 @@ def capture_ffmpeg_real_time(ffmpeg_command: list, description: str) -> None: process = subprocess.Popen(ffmpeg_command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, universal_newlines=True) # Start a thread to capture and print output - output_thread = threading.Thread(target=capture_output, Parameters=(process, description)) + output_thread = threading.Thread(target=capture_output, args=(process, description)) output_thread.start() try: