From 1326df0f4508c23acd7df909c8461e504b395c3e Mon Sep 17 00:00:00 2001 From: Somdev Sangwan Date: Wed, 31 May 2023 20:31:44 +0530 Subject: [PATCH] fix output dir --- core/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/utils.py b/core/utils.py index 8b3e231..caee4f1 100644 --- a/core/utils.py +++ b/core/utils.py @@ -45,7 +45,7 @@ def extract_frames(input_path, output_dir): def add_audio(output_dir, target_path, video, keep_frames, output_file): - video_name = video.split(".")[0] + video_name = os.path.splitext(video)[0] save_to = output_file if output_file else output_dir + "/swapped-" + video_name + ".mp4" save_to_ff, output_dir_ff = path(save_to), path(output_dir) os.system(f'ffmpeg -i "{output_dir_ff}{sep}output.mp4" -i "{output_dir_ff}{sep}{video}" -c:v copy -map 0:v:0 -map 1:a:0 -y "{save_to_ff}"')