-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathcaption.py
46 lines (37 loc) · 1.27 KB
/
caption.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import cv2
import uuid
import os
import sys
DEBUG_MODE = False
def run(ipfilename, format, options, tmp_dir_path, functions_path):
if DEBUG_MODE:
print("Temporary path:", tmp_dir_path, file=sys.stderr)
print("Functions path:", functions_path, file=sys.stderr)
print("options:", options, file=sys.stderr)
print("format:", format, file=sys.stderr)
print("ipfilename", ipfilename, file=sys.stderr)
opfilename = os.path.join(
tmp_dir_path, "tmpfile" + uuid.uuid1().hex + "." + str(format)
)
if DEBUG_MODE:
print("opfilename:", opfilename, file=sys.stderr)
vs = cv2.VideoCapture(ipfilename)
frame_width = int(vs.get(3))
frame_height = int(vs.get(4))
video = cv2.VideoWriter(
opfilename, cv2.VideoWriter_fourcc(*"XVID"), 30, (frame_width, frame_height)
)
if DEBUG_MODE:
print(options, file=sys.stderr)
while True:
(grabbed, frame) = vs.read()
if not grabbed:
print("[INFO] no frame read from stream - exiting")
break
label = options["text"]
cv2.putText(
frame, label, (10, 25), cv2.FONT_HERSHEY_SIMPLEX, 0.8, (255, 255, 255), 2
)
video.write(frame)
video.release()
return opfilename, None