forked from daanzu/deepspeech-websocket-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
client.py
274 lines (230 loc) · 10.2 KB
/
client.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
import time, logging
from datetime import datetime
import threading, collections, queue, os, os.path
import wave
import pyaudio
import webrtcvad
from lomond import WebSocket, events
from halo import Halo
logger = logging.getLogger(__name__)
logging.basicConfig(level=30,
format="%(asctime)s.%(msecs)03d: %(name)s: %(levelname)s: %(funcName)s(): %(message)s",
datefmt="%Y-%m-%d %p %I:%M:%S",
)
logging.getLogger('lomond').setLevel(30)
###############################################################################################################################################################
class Audio(object):
"""Streams raw audio from microphone. Data is received in a separate thread, and stored in a buffer, to be read from."""
FORMAT = pyaudio.paInt16
RATE = 16000
CHANNELS = 1
BLOCKS_PER_SECOND = 50
def __init__(self, callback=None, buffer_s=0, flush_queue=True):
def proxy_callback(in_data, frame_count, time_info, status):
callback(in_data)
return (None, pyaudio.paContinue)
if callback is None: callback = lambda in_data: self.buffer_queue.put(in_data, block=False)
self.sample_rate = self.RATE
self.flush_queue = flush_queue
self.buffer_queue = queue.Queue(maxsize=(buffer_s * 1000 // self.block_duration_ms))
self.pa = pyaudio.PyAudio()
self.stream = self.pa.open(format=self.FORMAT,
channels=self.CHANNELS,
rate=self.sample_rate,
input=True,
frames_per_buffer=self.block_size,
stream_callback=proxy_callback)
self.stream.start_stream()
self.active = True
def destroy(self):
self.stream.stop_stream()
self.stream.close()
self.pa.terminate()
self.active = False
def read(self):
"""Return a block of audio data, blocking if necessary."""
if self.active or (self.flush_queue and not self.buffer_queue.empty()):
return self.buffer_queue.get()
else:
return None
def read_loop(self, callback):
"""Block looping reading, repeatedly passing a block of audio data to callback."""
for block in iter(self):
callback(block)
def __iter__(self):
"""Generator that yields all audio blocks from microphone."""
while True:
block = self.read()
if block is None:
break
yield block
block_size = property(lambda self: int(self.sample_rate / float(self.BLOCKS_PER_SECOND)))
block_duration_ms = property(lambda self: 1000 * self.block_size // self.sample_rate)
def write_wav(self, filename, data):
logging.info("write wav %s", filename)
wf = wave.open(filename, 'wb')
wf.setnchannels(self.CHANNELS)
# wf.setsampwidth(self.pa.get_sample_size(FORMAT))
assert self.FORMAT == pyaudio.paInt16
wf.setsampwidth(2)
wf.setframerate(self.sample_rate)
wf.writeframes(data)
wf.close()
###############################################################################################################################################################
class VADAudio(Audio):
"""Filter & segment audio with voice activity detection."""
def __init__(self, aggressiveness=3):
super().__init__()
self.vad = webrtcvad.Vad(aggressiveness)
def vad_collector_simple(self, pre_padding_ms, blocks=None):
if blocks is None: blocks = iter(self)
num_padding_blocks = padding_ms // self.block_duration_ms
buff = collections.deque(maxlen=num_padding_blocks)
triggered = False
for block in blocks:
is_speech = self.vad.is_speech(block, self.sample_rate)
if not triggered:
if is_speech:
triggered = True
for f in buff:
yield f
buff.clear()
yield block
else:
buff.append(block)
else:
if is_speech:
yield block
else:
triggered = False
yield None
buff.append(block)
def vad_collector(self, padding_ms=300, ratio=0.75, blocks=None):
"""Generator that yields series of consecutive audio blocks comprising each utterence, separated by yielding a single None.
Determines voice activity by ratio of blocks in padding_ms. Uses a buffer to include padding_ms prior to being triggered.
Example: (block, ..., block, None, block, ..., block, None, ...)
|---utterence---| |---utterence---|
"""
if blocks is None: blocks = iter(self)
num_padding_blocks = padding_ms // self.block_duration_ms
ring_buffer = collections.deque(maxlen=num_padding_blocks)
triggered = False
for block in blocks:
is_speech = self.vad.is_speech(block, self.sample_rate)
if not triggered:
ring_buffer.append((block, is_speech))
num_voiced = len([f for f, speech in ring_buffer if speech])
if num_voiced > ratio * ring_buffer.maxlen:
triggered = True
for f, s in ring_buffer:
yield f
ring_buffer.clear()
else:
yield block
ring_buffer.append((block, is_speech))
num_unvoiced = len([f for f, speech in ring_buffer if not speech])
if num_unvoiced > ratio * ring_buffer.maxlen:
triggered = False
yield None
ring_buffer.clear()
@classmethod
def test_vad(cls, aggressiveness):
self = cls(aggressiveness=aggressiveness)
blocks = iter(self)
for block in blocks:
is_speech = self.vad.is_speech(block, self.sample_rate)
print('|' if is_speech else '.', end='', flush=True)
###############################################################################################################################################################
ready = False
def print_output(*args):
if logger.isEnabledFor(40):
print(*args)
def audio_consumer(vad_audio, websocket):
"""blocks"""
spinner = None
if not ARGS.nospinner: spinner = Halo(spinner='line') # circleHalves point arc boxBounce2 bounce line
length_ms = 0
wav_data = bytearray()
for block in vad_audio.vad_collector():
if ready and websocket.is_active:
if block is not None:
if not length_ms:
logging.debug("begin utterence")
if spinner: spinner.start()
logging.log(5, "sending block")
websocket.send_binary(block)
if ARGS.savewav: wav_data.extend(block)
length_ms += vad_audio.block_duration_ms
else:
if spinner: spinner.stop()
if not length_ms: raise RuntimeError("ended utterence without beginning")
logging.debug("end utterence")
if ARGS.savewav:
vad_audio.write_wav(os.path.join(ARGS.savewav, datetime.now().strftime("savewav_%Y-%m-%d_%H-%M-%S_%f.wav")), wav_data)
wav_data = bytearray()
logging.info("sent audio length_ms: %d" % length_ms)
logging.log(5, "sending EOS")
websocket.send_text('EOS')
length_ms = 0
def websocket_runner(websocket):
"""blocks"""
def on_event(event):
if isinstance(event, events.Ready):
global ready
if not ready:
print_output("Connected!")
ready = True
elif isinstance(event, events.Text):
if 1: print_output("Recognized: %s" % event.text)
elif 1:
logging.debug(event)
for event in websocket:
try:
on_event(event)
except:
logger.exception('error handling %r', event)
websocket.close()
def main():
websocket = WebSocket(ARGS.server)
# TODO: compress?
print_output("Connecting to '%s'..." % websocket.url)
vad_audio = VADAudio(aggressiveness=ARGS.aggressiveness)
print_output("Listening (ctrl-C to exit)...")
audio_consumer_thread = threading.Thread(target=lambda: audio_consumer(vad_audio, websocket))
audio_consumer_thread.start()
websocket_runner(websocket)
###############################################################################################################################################################
def main_test():
if 0:
def consumer(self, blocks):
length_ms = 0
for block in blocks:
if block is not None:
print('|', end='', flush=True)
length_ms += self.block_duration_ms
else:
print('.', end='', flush=True)
length_ms = 0
VADAudio(consumer)
elif 1:
VADAudio.test_vad(3)
if __name__ == '__main__':
import argparse
parser = argparse.ArgumentParser(description="Streams raw audio data from microphone with VAD to server via WebSocket")
parser.add_argument('-s', '--server', default='ws://localhost:8080/recognize',
help="Default: ws://localhost:8080/recognize")
parser.add_argument('-a', '--aggressiveness', type=int, default=3,
help="Set aggressiveness of VAD: an integer between 0 and 3, 0 being the least aggressive about filtering out non-speech, 3 the most aggressive. Default: 3")
parser.add_argument('--nospinner', action='store_true',
help="Disable spinner")
parser.add_argument('-w', '--savewav',
help="Save .wav files of utterences to given directory. Example for current directory: -w .")
parser.add_argument('-v', '--verbose', action='store_true',
help="Print debugging info")
ARGS = parser.parse_args()
if ARGS.verbose: logging.getLogger().setLevel(10)
if ARGS.savewav: os.makedirs(ARGS.savewav, exist_ok=True)
if 0:
main_test()
else:
main()