-
Notifications
You must be signed in to change notification settings - Fork 433
Expand file tree
/
Copy pathrecord_facecam.py
More file actions
47 lines (36 loc) · 1.13 KB
/
record_facecam.py
File metadata and controls
47 lines (36 loc) · 1.13 KB
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
47
import av
av.logging.set_level(av.logging.VERBOSE)
"""
This is written for MacOS. Other platforms will need to init `input_` differently.
You may need to change the file "0". Use this API to list all devices:
av.enumerate_input_devices("avfoundation")
"""
input_ = av.open(
"0",
format="avfoundation",
container_options={"framerate": "30", "video_size": "1920x1080"},
)
output = av.open("out.mkv", "w")
# Prefer x264, but use Apple hardware if not available.
try:
encoder = av.Codec("libx264", "w").name
except av.FFmpegError:
encoder = "h264_videotoolbox"
output_stream = output.add_stream(encoder, rate=30)
output_stream.width = input_.streams.video[0].width
output_stream.height = input_.streams.video[0].height
output_stream.pix_fmt = "yuv420p"
try:
while True:
try:
for frame in input_.decode(video=0):
packet = output_stream.encode(frame)
output.mux(packet)
except av.BlockingIOError:
pass
except KeyboardInterrupt:
print("Recording stopped by user")
packet = output_stream.encode(None)
output.mux(packet)
input_.close()
output.close()