From 372c2ba0ca4b04d5ab819de4526e75e091ee640c Mon Sep 17 00:00:00 2001 From: fanpt <320622572@qq.com> Date: Fri, 14 Jun 2024 09:33:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E4=BB=A3=E7=A0=81=E9=BB=98?= =?UTF-8?q?=E8=AE=A4=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.py b/script.py index 0e22703..3b9442e 100644 --- a/script.py +++ b/script.py @@ -119,12 +119,12 @@ def main(args): if __name__ == '__main__': # Construct the driven audio path with the changing numeric part - audio_path = rf'./examples/driven_audio/final_output.wav' + audio_path = rf'./examples/driven_audio/silent_audio.wav' parser = ArgumentParser() parser.add_argument("--driven_audio", default=audio_path, help="path to driven audio") parser.add_argument("--source_image", default='./examples/source_image/005.png', help="path to source image") - parser.add_argument("--ref_eyeblink", default='./examples/ref_video/10.mp4', help="path to reference video providing eye blinking") + parser.add_argument("--ref_eyeblink", default='./examples/ref_video/silent.mp4', help="path to reference video providing eye blinking") parser.add_argument("--ref_pose", default=None, help="path to reference video providing pose") parser.add_argument("--checkpoint_dir", default='./checkpoints', help="path to output") parser.add_argument("--result_dir", default='./results', help="path to output")