fffiloni commited on
Commit
cd55343
·
1 Parent(s): 2d6e7e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -142,7 +142,7 @@ def run_inference(prompt, video_path, condition, video_length, seed, steps):
142
  target_fps = get_video_dimension(video_path)[2]
143
  if target_fps > 12 :
144
  print(f"FPS is too high: {target_fps}")
145
- #video_length = int((12 * video_length) / target_fps)
146
 
147
  target_fps = 12
148
  print(f"NEW INPUT FPS: {target_fps}, NEW FPS: {video_length}")
 
142
  target_fps = get_video_dimension(video_path)[2]
143
  if target_fps > 12 :
144
  print(f"FPS is too high: {target_fps}")
145
+ video_length = int((12 * video_length) / target_fps)
146
 
147
  target_fps = 12
148
  print(f"NEW INPUT FPS: {target_fps}, NEW FPS: {video_length}")