asad231 commited on
Commit
eb85d1c
·
verified ·
1 Parent(s): baf68b6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 = 100
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