sanghan commited on
Commit
013bae8
·
1 Parent(s): 11dbf82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,9 +35,9 @@ def get_free_memory_gb():
35
 
36
 
37
  def inference(video):
38
- if get_video_length_av(video.name) > 30:
39
  raise gr.Error("Length of video cannot be over 30 seconds")
40
- if get_video_dimensions(video.name) > (1920, 1920):
41
  raise gr.Error("Video resolution must not be higher than 1920x1080")
42
 
43
  convert_video(
 
35
 
36
 
37
  def inference(video):
38
+ if get_video_length_av(video) > 30:
39
  raise gr.Error("Length of video cannot be over 30 seconds")
40
+ if get_video_dimensions(video) > (1920, 1920):
41
  raise gr.Error("Video resolution must not be higher than 1920x1080")
42
 
43
  convert_video(