-
Notifications
You must be signed in to change notification settings - Fork 3
/
listener.py
99 lines (87 loc) · 3.3 KB
/
listener.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/env python3
import argparse
import queue
import sys
import sounddevice as sd
import time
import json
q = queue.Queue()
def int_or_str(text):
"""Helper function for argument parsing."""
try:
return int(text)
except ValueError:
return text
def callback(indata, frames, time, status):
"""This is called (from a separate thread) for each audio block."""
if status:
print(status, file=sys.stderr)
q.put(bytes(indata))
def listen_for_activation_phrase(recognizer, activation_phrase="leo"):
"""Listen for the activation phrase."""
print("Listening for activation phrase...")
start_time = time.time()
while time.time() - start_time < 20: # Timeout after 20 seconds
data = q.get()
if recognizer.AcceptWaveform(data):
result = json.loads(recognizer.Result())
if activation_phrase in result['text']:
print("Activation phrase detected.")
return True
else:
recognizer.PartialResult()
return False
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument(
"-l", "--list-devices", action="store_true",
help="show list of audio devices and exit")
args, remaining = parser.parse_known_args()
if args.list_devices:
print(sd.query_devices())
parser.exit(0)
parser = argparse.ArgumentParser(
description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter,
parents=[parser])
parser.add_argument(
"-f", "--filename", type=str, metavar="FILENAME",
help="audio file to store recording to")
parser.add_argument(
"-d", "--device", type=int_or_str,
help="input device (numeric ID or substring)")
parser.add_argument(
"-r", "--samplerate", type=int, help="sampling rate")
parser.add_argument(
"-m", "--model", type=str, help="language model; e.g. en-us, fr, nl; default is en-us")
args = parser.parse_args(remaining)
try:
if args.samplerate is None:
device_info = sd.query_devices(args.device, "input")
args.samplerate = int(device_info["default_samplerate"])
with sd.RawInputStream(samplerate=args.samplerate, blocksize=8000, device=args.device,
dtype="int16", channels=1, callback=callback):
print("#" * 80)
print("Press Ctrl+C to stop the recording")
print("#" * 80)
recognizer = KaldiRecognizer(model, args.samplerate)
while True:
if listen_for_activation_phrase(recognizer):
print("Car activated. You can now give commands.")
break
partial_results = ""
while True:
data = q.get()
if recognizer.AcceptWaveform(data):
result = json.loads(recognizer.Result())
print("\nFinal Result:", result['text'])
partial_results = ""
else:
partial_result = json.loads(recognizer.PartialResult())['partial']
if partial_result != partial_results:
partial_results = partial_result
print("Partial result:", partial_results)
except KeyboardInterrupt:
print("\nDone")
parser.exit(0)
except Exception as e:
parser.exit(type(e).__name__ + ": " + str(e))