Update app.py
Browse files
app.py
CHANGED
@@ -57,7 +57,7 @@ def compress_video(video):
|
|
57 |
fourcc = cv2.VideoWriter_fourcc(*'mp4v')
|
58 |
|
59 |
# ✅ New Resolution (100x80) & 15 FPS
|
60 |
-
frame_width =
|
61 |
frame_height = 80
|
62 |
out = cv2.VideoWriter(temp_file.name, fourcc, 15.0, (frame_width, frame_height))
|
63 |
|
|
|
57 |
fourcc = cv2.VideoWriter_fourcc(*'mp4v')
|
58 |
|
59 |
# ✅ New Resolution (100x80) & 15 FPS
|
60 |
+
frame_width = 50
|
61 |
frame_height = 80
|
62 |
out = cv2.VideoWriter(temp_file.name, fourcc, 15.0, (frame_width, frame_height))
|
63 |
|