-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
81 lines (59 loc) · 1.95 KB
/
app.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import os
import sys
from os import path
from pathlib import Path
import evdev
from obswebsocket import obsws, requests
project_dir = sys.argv[1]
saved_dir = path.join(project_dir, "saved")
Path(saved_dir).mkdir(exist_ok=True)
discarded_dir = path.join(project_dir, "disgarded")
Path(discarded_dir).mkdir(exist_ok=True)
obs = obsws("localhost", 4444, "sleuth")
obs.connect()
device = evdev.InputDevice('/dev/input/event12')
def goodbye():
_discard_recording(False)
import atexit
atexit.register(goodbye)
def run():
obs.call(requests.StartRecording())
with device.grab_context():
for event in device.read_loop():
if event.type == evdev.ecodes.EV_KEY:
if event.code == evdev.ecodes.KEY_B and event.value == 1:
_save_recording()
elif event.code == evdev.ecodes.KEY_A and event.value == 1:
_discard_recording()
def _discard_recording(restart=True):
status = obs.call(requests.GetRecordingStatus())
old_path = status.getRecordingFilename()
old_file = os.path.basename(old_path)
_stop()
rename_path = path.join(discarded_dir, old_file)
Path(old_path).rename(rename_path)
if restart:
_start()
print(f"Discarded file: {rename_path}")
def _save_recording():
status = obs.call(requests.GetRecordingStatus())
old_path = status.getRecordingFilename()
old_file = os.path.basename(old_path)
_stop()
rename_path = path.join(saved_dir, old_file)
Path(old_path).rename(rename_path)
_start()
print(f"Saved file: {rename_path}")
def _stop():
obs.call(requests.StopRecording())
while True:
status = obs.call(requests.GetRecordingStatus())
if not status.getIsRecording():
return status
def _start():
obs.call(requests.StartRecording())
while True:
status = obs.call(requests.GetRecordingStatus())
if status.getIsRecording():
return status
run()