fffiloni commited on
Commit
4cba54c
·
1 Parent(s): a198b69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -110,9 +110,9 @@ def run_inference(prompt, video_path, condition, video_length):
110
  os.remove(video_path_output)
111
 
112
  if video_length > 12:
113
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width {width} --height {height} --fps {fps} --video_length {video_length} --is_long_video"
114
  else:
115
- command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width {width} --height {height} --fps {fps} --video_length {video_length}"
116
  subprocess.run(command, shell=True)
117
 
118
  # Construct the video path
 
110
  os.remove(video_path_output)
111
 
112
  if video_length > 12:
113
+ command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length} --is_long_video"
114
  else:
115
+ command = f"python inference.py --prompt '{prompt}' --condition '{condition}' --video_path '{video_path}' --output_path '{output_path}' --width 512 --height 512 --fps 8 --video_length {video_length}"
116
  subprocess.run(command, shell=True)
117
 
118
  # Construct the video path