pratikshahp commited on
Commit
b3bf8b2
·
verified ·
1 Parent(s): 3d1b299

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -9,11 +9,11 @@ def generate(script, mic_path, video_path):
9
 
10
  os.makedirs("results", exist_ok=True)
11
  subprocess.call([
12
- "python", "inference.py",
13
  "--checkpoint_path", "Wav2Lip/checkpoints/wav2lip.pth",
14
  "--face", video_path,
15
  "--audio", mic_path,
16
- "--outfile", "results/output.mp4"
17
  ])
18
  return "results/output.mp4", ""
19
 
 
9
 
10
  os.makedirs("results", exist_ok=True)
11
  subprocess.call([
12
+ "python", "Wav2Lip/inference.py",
13
  "--checkpoint_path", "Wav2Lip/checkpoints/wav2lip.pth",
14
  "--face", video_path,
15
  "--audio", mic_path,
16
+ "--outfile", "Wav2Lip/results/output.mp4"
17
  ])
18
  return "results/output.mp4", ""
19