Spaces:
Paused
Paused
Update app.py
Browse files
app.py
CHANGED
@@ -80,7 +80,7 @@ def resize_video(input_file):
|
|
80 |
break
|
81 |
|
82 |
# Resize the frame to the desired dimensions
|
83 |
-
resized_frame = cv2.resize(frame, (
|
84 |
|
85 |
# Write the resized frame to the output video file
|
86 |
output_video.write(resized_frame)
|
|
|
80 |
break
|
81 |
|
82 |
# Resize the frame to the desired dimensions
|
83 |
+
resized_frame = cv2.resize(frame, (512, 512))
|
84 |
|
85 |
# Write the resized frame to the output video file
|
86 |
output_video.write(resized_frame)
|