Update app.py
Browse files
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 =
|
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 =
|
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)):
|