fffiloni commited on
Commit
b59f63e
·
1 Parent(s): 3bda188

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ 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 = "python inference.py --prompt prompt --condition condition --video_path video_path --output_path 'outputs/' --video_length 2 --smoother_steps 19 20"
23
  output = subprocess.check_output(command, shell=True, text=True)
24
  output = output.strip() # Remove any leading/trailing whitespace
25
 
 
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
  output = subprocess.check_output(command, shell=True, text=True)
24
  output = output.strip() # Remove any leading/trailing whitespace
25