Cleanup, database structure backup, and an additional log item for breadmixer to try to figure out where the ffmpeg command structure is wrong

This commit is contained in:
2024-01-05 18:51:11 -05:00
parent f7e0c4b15a
commit 3b33bb6ee4
3 changed files with 106 additions and 39 deletions

View File

@@ -139,6 +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)
stdout, stderr = ffmpeg_process.communicate()