From c1b7b73d8214e12235200f4ea824ff1ea86bb590 Mon Sep 17 00:00:00 2001 From: Sam Khoze <68170403+SamKhoze@users.noreply.github.com> Date: Tue, 2 Jul 2024 00:24:09 +0530 Subject: [PATCH] Update nodes.py --- nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodes.py b/nodes.py index ffa56e9..3aa7cba 100644 --- a/nodes.py +++ b/nodes.py @@ -1017,7 +1017,7 @@ class DeepFuzeFaceSwap: # faceswap_filename = temp_file print(result.stderr) - audio_file = os.path.join(audio_dir,str(time.time()).replace(".","")+".wav") + audio_file = os.path.join(audio_dir,str(time.time()).replace(".","")+".wav") open(audio_file,"wb").write(audio()) subprocess.run(f"ffmpeg -i {faceswap_filename} -i {audio_file} -c copy {faceswap_filename.replace('.mp4','_.mp4')} -y".split())