fffiloni commited on
Commit
dd30294
·
1 Parent(s): 106f93a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -67,7 +67,7 @@ def infer(prompt, video_path, condition, video_length, is_long_video):
67
 
68
  # Height and width should be a multiple of 32
69
  output_path = ""
70
- height, width = 512
71
  height = (height // 32) * 32
72
  width = (width // 32) * 32
73
  smoother_steps = [19, 20]
 
67
 
68
  # Height and width should be a multiple of 32
69
  output_path = ""
70
+ height, width = int(512)
71
  height = (height // 32) * 32
72
  width = (width // 32) * 32
73
  smoother_steps = [19, 20]