-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathsnap.py
executable file
·41 lines (30 loc) · 909 Bytes
/
snap.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
#!/opt/homebrew/bin/python3
import reolinkapi
import os
from sys import argv
def snap_cam(which, dirname):
hostname = 'watchdog%d' % which
cam_name = 'Watchdog%d' % which
try:
cam = reolinkapi.Camera(hostname, username="rtsp", password="darknet")
except:
print(f"Failed to open camera {cam_name}")
return 1
if not cam.is_logged_in():
print(f"Login failed for {cam_name}")
return 2
image_file = '%s/%s.jpg' % (dirname, hostname)
if os.path.exists(image_file):
os.unlink(image_file)
print("Snapping", cam_name)
image = cam.get_snap()
image.save(image_file)
return 0
if __name__ == "__main__":
dirname = '.'
if len(argv) == 3:
dirname = argv[2]
elif len(argv) != 2:
print("Usage: %s <cam#> [output-directory]" % argv[0])
exit(1)
exit( snap_cam(int(argv[1]), dirname) )