From 71e2857cf777a2ec656cc61ac2697476ee6f5fa2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ben=C3=AD=C4=8Dek?= Date: Sat, 6 Jul 2024 20:42:57 +0200 Subject: [PATCH] ffmpeg command waiting bugfix --- src/ffmpegcmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ffmpegcmd.py b/src/ffmpegcmd.py index 35a3c13..b3f288a 100644 --- a/src/ffmpegcmd.py +++ b/src/ffmpegcmd.py @@ -2,7 +2,7 @@ import subprocess def generate_command(ffmpeg: str, params: str, source_file: str, output_file: str): - command = [ffmpeg, "-y", "-i", source_file] + command = [ffmpeg, "-i", source_file] command.extend(params.split()) command.append(output_file) return command