reab5555 commited on
Commit
62e99ba
·
verified ·
1 Parent(s): ebc376e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -58,13 +58,13 @@ def process_video(video_path, target, progress=gr.Progress()):
58
 
59
  frame_count = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
60
  original_fps = int(cap.get(cv2.CAP_PROP_FPS))
61
- output_fps = 5
62
 
63
  output_path = "output_video.mp4"
64
  fourcc = cv2.VideoWriter_fourcc(*'mp4v')
65
  out = cv2.VideoWriter(output_path, fourcc, output_fps, (int(cap.get(3)), int(cap.get(4))))
66
 
67
- batch_size = 128
68
  frames = []
69
 
70
  for frame in progress.tqdm(range(frame_count)):
 
58
 
59
  frame_count = int(cap.get(cv2.CAP_PROP_FRAME_COUNT))
60
  original_fps = int(cap.get(cv2.CAP_PROP_FPS))
61
+ output_fps = 3
62
 
63
  output_path = "output_video.mp4"
64
  fourcc = cv2.VideoWriter_fourcc(*'mp4v')
65
  out = cv2.VideoWriter(output_path, fourcc, output_fps, (int(cap.get(3)), int(cap.get(4))))
66
 
67
+ batch_size = 8
68
  frames = []
69
 
70
  for frame in progress.tqdm(range(frame_count)):