Skip to content

Commit

Permalink
fix output dir
Browse files Browse the repository at this point in the history
  • Loading branch information
s0md3v committed May 31, 2023
1 parent 4e0b456 commit 1326df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"')
Expand Down

0 comments on commit 1326df0

Please sign in to comment.