From 2cf2ec7d881a491a2700a51d9549a9ebc88c3b4a Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Fri, 5 Jan 2024 19:06:24 -0500 Subject: [PATCH] Trying to figure out what is wrong with breadmixer running the FFMPEG command that I know for certain works --- bin/breadmixer.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/breadmixer.py b/bin/breadmixer.py index fa96700..59fbac0 100644 --- a/bin/breadmixer.py +++ b/bin/breadmixer.py @@ -139,9 +139,8 @@ for i in range(0, len(file_dict_items), args.filespercycle): command_list.append(output_file_name) - print(' '.join(command_list)) - ffmpeg_process = subprocess.Popen(command_list, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + print(ffmpeg_process.args) stdout, stderr = ffmpeg_process.communicate()