Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
39 |
raise gr.Error("Length of video cannot be over 30 seconds")
|
40 |
-
if get_video_dimensions(video
|
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(
|