Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ def resize_video(input_file):
|
|
58 |
print(f"OLD W: 512 | NEW W: {new_width_adjusted}")
|
59 |
|
60 |
# Resize the video clip
|
61 |
-
resized_clip = clip.resize(width=
|
62 |
|
63 |
# Check if the file already exists
|
64 |
if os.path.exists('video_resized.mp4'):
|
|
|
58 |
print(f"OLD W: 512 | NEW W: {new_width_adjusted}")
|
59 |
|
60 |
# Resize the video clip
|
61 |
+
resized_clip = clip.resize(width=512, height=512)
|
62 |
|
63 |
# Check if the file already exists
|
64 |
if os.path.exists('video_resized.mp4'):
|