Trying to figure out what is wrong with breadmixer running the FFMPEG command that I know for certain works

This commit is contained in:
Bradley Bickford 2024-01-05 19:06:24 -05:00
parent 2f03a0de4c
commit 2cf2ec7d88

View File

@ -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()