Update app.py
Browse files
app.py
CHANGED
@@ -58,7 +58,7 @@ def compress_video(video):
|
|
58 |
|
59 |
# ✅ Further Reduce Video Resolution
|
60 |
frame_width = 200
|
61 |
-
frame_height =
|
62 |
out = cv2.VideoWriter(temp_file.name, fourcc, 12.0, (frame_width, frame_height)) # ✅ Lower FPS to 12
|
63 |
|
64 |
while cap.isOpened():
|
|
|
58 |
|
59 |
# ✅ Further Reduce Video Resolution
|
60 |
frame_width = 200
|
61 |
+
frame_height = 1000
|
62 |
out = cv2.VideoWriter(temp_file.name, fourcc, 12.0, (frame_width, frame_height)) # ✅ Lower FPS to 12
|
63 |
|
64 |
while cap.isOpened():
|