fffiloni commited on
Commit
8b015d7
·
1 Parent(s): eaf8a3c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,11 +19,11 @@ def run_inference(prompt, video_path, condition, video_length):
19
  print(video_length)
20
  video_length = int(video_length)
21
  print(video_length)
22
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path 'outputs/' --video_length {video_length} --smoother_steps 19 20"
23
  subprocess.run(command, shell=True)
24
 
25
  # Construct the video path
26
- video_path_output = f"'output'/{prompt}.mp4"
27
  return "done", video_path_output
28
 
29
 
 
19
  print(video_length)
20
  video_length = int(video_length)
21
  print(video_length)
22
+ command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '' --video_length {video_length} --smoother_steps 19 20"
23
  subprocess.run(command, shell=True)
24
 
25
  # Construct the video path
26
+ video_path_output = f"{prompt}.mp4"
27
  return "done", video_path_output
28
 
29