Skip to content

Commit

Permalink
bruh moment 12
Browse files Browse the repository at this point in the history
  • Loading branch information
s0md3v committed May 31, 2023
1 parent a9571f6 commit b545c69
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 @@ -50,7 +50,7 @@ def add_audio(output_dir, target_path, video, keep_frames, output_file):
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}"')
if not os.path.isfile(save_to):
shutil.move(f'{output_dir_ff}{sep}output.mp4', save_to)
shutil.move(f'{output_dir}{sep}output.mp4', save_to)
if not keep_frames:
shutil.rmtree(output_dir)

Expand Down

0 comments on commit b545c69

Please sign in to comment.