Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -147,12 +147,9 @@ def trim_vid(vid,start_time,end_time):
|
|
147 |
end_sec=float(end_time.split(":",2)[2])
|
148 |
start=start_hr+start_min+start_sec
|
149 |
end=end_hr+end_min+end_sec
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
#ffmpeg_extract_subclip(vid, start, end, targetname=f"{uid}-clip.mp4")
|
154 |
-
#out= f"{uid}-clip.mp4"
|
155 |
-
#capture = cv2.VideoCapture(out)
|
156 |
frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
|
157 |
capture.release()
|
158 |
return out,out,frame_count
|
|
|
147 |
end_sec=float(end_time.split(":",2)[2])
|
148 |
start=start_hr+start_min+start_sec
|
149 |
end=end_hr+end_min+end_sec
|
150 |
+
ffmpeg_extract_subclip(vid, start, end, targetname=f"{uid}-clip.mp4")
|
151 |
+
out= f"{uid}-clip.mp4"
|
152 |
+
capture = cv2.VideoCapture(out)
|
|
|
|
|
|
|
153 |
frame_count = int(capture.get(cv2.CAP_PROP_FRAME_COUNT))
|
154 |
capture.release()
|
155 |
return out,out,frame_count
|