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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
|
#!/usr/bin/env python3
import argparse
import copy
from datetime import datetime
import os
import osc_ctrl
from functools import partial
import generate_utils
# python3 -m pip install pyaudio
# License: MIT.
import pyaudio
import numpy as np
# python3 -m pip install playsound==1.2.2
# License: MIT.
from playsound import playsound
import steamvr
import string_matcher
import sys
import threading
import time
import wave
# python3 -m pip install git+https://github.com/openai/whisper.git
# python3 -m pip install torch -f https://download.pytorch.org/whl/torch_stable.html
# License: MIT.
import whisper
class Config:
def __init__(self):
# The maximum length that recordAudio() will put into frames before it
# starts dropping from the start.
self.MAX_LENGTH_S = 10
config = Config()
class AudioState:
def __init__(self):
self.CHUNK = 1024
self.FORMAT = pyaudio.paInt16
self.CHANNELS = 1
# This matches the framerate expected by whisper.
self.RATE = 16000
# The maximum length that recordAudio() will put into frames before it
# starts dropping from the start.
self.MAX_LENGTH_S_WHISPER = 30
# The minimum length that recordAudio() will wait for before saving audio.
self.MIN_LENGTH_S = 1
# PyAudio object
self.p = None
# PyAudio stream object
self.stream = None
self.text = ""
self.committed_text = ""
self.frames = []
# Locks access to `text`.
self.transcribe_lock = threading.Lock()
# Locks access to `frames`, and audio stored on disk.
self.audio_lock = threading.Lock()
# Used to tell the threads when to stop.
self.run_app = True
self.transcribe_sleep_duration_min_s = 0.05
self.transcribe_sleep_duration_max_s = 5.00
self.transcribe_no_change_count = 0
self.transcribe_sleep_duration = self.transcribe_sleep_duration_min_s
# The transcription thread transcribes without holding locks, then
# blocks on it. Thus we need some way to tell the transcription
# thread to drop that transcription.
self.drop_transcription = False
# The language the user is speaking in. Default is English but user may set
# this to whatever they want.
self.language = whisper.tokenizer.TO_LANGUAGE_CODE["english"]
self.audio_paused = False
self.osc_state = osc_ctrl.OscState(generate_utils.config.CHARS_PER_SYNC,
generate_utils.config.BOARD_ROWS,
generate_utils.config.BOARD_COLS)
def sleepInterruptible(self, dur_s, stride_ms = 5):
dur_ms = dur_s * 1000.0
timeout = time.time() + dur_s
while self.audio_paused and time.time() < timeout:
time.sleep(stride_ms / 1000.0)
def dumpMicDevices():
p = pyaudio.PyAudio()
info = p.get_host_api_info_by_index(0)
numdevices = info.get('deviceCount')
for i in range(0, numdevices):
if (p.get_device_info_by_host_api_device_index(0, i).get('maxInputChannels')) > 0:
device_name = p.get_device_info_by_host_api_device_index(0, i).get('name')
print("Input Device id ", i, " - ", device_name)
def onAudioFramesAvailable(
audio_state,
input_rate,
frames,
frame_count,
time_info,
status_flags):
if audio_state.audio_paused:
return (frames, pyaudio.paContinue)
# Reduce sample rate from mic rate to Whisper rate by dropping frames.
decimated = b''
frame_len = int(len(frames) / frame_count)
next_frame = 0.0
keep_every = float(input_rate) / audio_state.RATE
i = 0
for i in range(0, frame_count):
if i >= next_frame:
decimated += frames[i*frame_len:(i+1)*frame_len]
next_frame += keep_every
i += 1
audio_state.frames.append(decimated)
max_frames = int(input_rate * config.MAX_LENGTH_S / audio_state.CHUNK)
if len(audio_state.frames) > max_frames:
audio_state.frames = audio_state.frames[-1 * max_frames :]
return (frames, pyaudio.paContinue)
def getMicStream(which_mic):
audio_state = AudioState()
audio_state.p = pyaudio.PyAudio()
print("Finding mic {}...".format(which_mic))
dumpMicDevices()
got_match = False
device_index = -1
focusrite_str = "Focusrite"
index_str = "Digital Audio Interface"
if which_mic == "index":
target_str = index_str
elif which_mic == "focusrite":
target_str = focusrite_str
else:
print("Mic {} requested, treating it as a numerical device ID".format(which_mic))
device_index = int(which_mic)
got_match = True
while got_match == False:
info = audio_state.p.get_host_api_info_by_index(0)
numdevices = info.get('deviceCount')
for i in range(0, numdevices):
if (audio_state.p.get_device_info_by_host_api_device_index(0, i).get('maxInputChannels')) > 0:
device_name = audio_state.p.get_device_info_by_host_api_device_index(0, i).get('name')
if target_str in device_name:
print("Got match: {}".format(device_name))
device_index = i
got_match = True
break
if got_match == False:
print("No match, sleeping")
time.sleep(3)
info = audio_state.p.get_device_info_by_host_api_device_index(0, device_index)
input_rate = int(info['defaultSampleRate'])
print("input rate: {}".format(input_rate))
# Bind audio_state to onAudioFramesAvailable
callback = partial(onAudioFramesAvailable, audio_state, input_rate)
audio_state.stream = audio_state.p.open(format=audio_state.FORMAT,
channels=audio_state.CHANNELS, rate=input_rate,
input=True, frames_per_buffer=audio_state.CHUNK,
input_device_index=device_index,
stream_callback=callback)
audio_state.stream.start_stream()
return audio_state
def resetAudioLocked(audio_state):
audio_state.frames = []
audio_state.transcribe_no_change_count = 0
audio_state.transcribe_sleep_duration = \
audio_state.transcribe_sleep_duration_min_s
audio_state.committed_text = ""
audio_state.text = ""
def resetDisplayLocked(audio_state):
osc_ctrl.clear(audio_state.osc_state)
def resetAudio(audio_state):
audio_state.transcribe_lock.acquire()
audio_state.audio_lock.acquire()
resetAudioLocked(audio_state)
audio_state.audio_lock.release()
audio_state.transcribe_lock.release()
# Transcribe the audio recorded in a file.
def transcribe(audio_state, model, frames, use_cpu: bool):
start_time = time.time()
frames = audio_state.frames
# Convert from signed 16-bit int [-32768, 32767] to signed 16-bit float on
# [-1, 1].
# We should technically acquire a lock to protect frames, but this is
# really slow and in practice it doesn't make the app crash, so who cares.
frames = np.asarray(audio_state.frames)
audio = np.frombuffer(frames, np.int16).flatten().astype(np.float32) / 32768.0
audio = whisper.pad_or_trim(audio, length = audio_state.RATE *
audio_state.MAX_LENGTH_S_WHISPER)
mel = whisper.log_mel_spectrogram(audio).to(model.device)
result = None
#for temp in (0.00, 0.05, 0.10, 0.15, 0.20):
#for temp in (0.00, 0.05):
for temp in (0.00,):
use_gpu = not use_cpu
options = whisper.DecodingOptions(language = audio_state.language,
beam_size = 5, temperature = temp, without_timestamps = True,
fp16 = use_gpu)
result = whisper.decode(model, mel, options)
if result.avg_logprob < -1.0:
print("avg logprob: {}".format(result.avg_logprob))
result = None
continue
if result.compression_ratio > 2.4:
print("compression ratio: {}".format(result.compression_ratio))
result = None
continue
if result.no_speech_prob > 0.60:
print("no speech prob: {}".format(result.no_speech_prob))
result = None
continue
result = result.text
break
return result
def transcribeAudio(audio_state, model, use_cpu: bool):
last_transcribe_time = time.time()
while audio_state.run_app == True:
# Pace this out
if audio_state.audio_paused:
audio_state.sleepInterruptible(audio_state.transcribe_sleep_duration)
else:
time.sleep(0.05)
# Increase sleep time. Code below will set sleep time back to minimum
# if a change is detected.
if audio_state.transcribe_no_change_count < 10:
audio_state.transcribe_no_change_count += 1
longer_sleep_dur = audio_state.transcribe_sleep_duration
longer_sleep_dur += audio_state.transcribe_sleep_duration_min_s * (1.3**audio_state.transcribe_no_change_count)
audio_state.transcribe_sleep_duration = min(
audio_state.transcribe_sleep_duration_max_s,
longer_sleep_dur)
text = transcribe(audio_state, model, audio_state.frames, use_cpu)
if not text:
print("no transcription, spin ({} seconds)".format(time.time() - last_transcribe_time))
last_transcribe_time = time.time()
continue
if audio_state.drop_transcription:
audio_state.drop_transcription = False
print("drop transcription ({} seconds)".format(time.time() - last_transcribe_time))
last_transcribe_time = time.time()
continue
words = ''.join(c for c in text.lower() if (c.isalpha() or c == " ")).split()
old_text = audio_state.text
audio_state.text = string_matcher.matchStrings(audio_state.text,
text, window_size = 25)
now = time.time()
print("Transcription ({} seconds): {}".format(
now - last_transcribe_time,
audio_state.text))
last_transcribe_time = now
if old_text != audio_state.text:
# We think the user said something, so reset the amount of
# time we sleep between transcriptions to the minimum.
audio_state.transcribe_no_change_count = 0
audio_state.transcribe_sleep_duration = audio_state.transcribe_sleep_duration_min_s
def sendAudio(audio_state):
while audio_state.run_app == True:
text = audio_state.committed_text + " " + audio_state.text
ret = osc_ctrl.pageMessage(audio_state.osc_state, text)
is_paging = (ret == False)
osc_ctrl.indicatePaging(audio_state.osc_state.client, is_paging)
# Pace this out
time.sleep(0.01)
def readControllerInput(audio_state, enable_local_beep):
session = None
first = True
while session == None and audio_state.run_app == True:
try:
session = steamvr.SessionState()
except:
print("steamvr is off, no controller input")
session = None
time.sleep(5)
RECORD_STATE = 0
PAUSE_STATE = 1
state = PAUSE_STATE
osc_ctrl.indicateSpeech(audio_state.osc_state.client, False)
osc_ctrl.indicatePaging(audio_state.osc_state.client, False)
last_rising = time.time()
while audio_state.run_app == True:
time.sleep(0.05)
event = steamvr.pollButtonPress(session)
if event == steamvr.EVENT_RISING_EDGE:
last_rising = time.time()
elif event == steamvr.EVENT_FALLING_EDGE:
now = time.time()
if now - last_rising > 0.5:
# Long hold
state = PAUSE_STATE
osc_ctrl.indicateSpeech(audio_state.osc_state.client, False)
osc_ctrl.toggleBoard(audio_state.osc_state.client, False)
#playsound(os.path.abspath("../Sounds/Noise_Off.wav"))
resetAudioLocked(audio_state)
resetDisplayLocked(audio_state)
audio_state.drop_transcription = True
audio_state.audio_paused = True
else:
# Short hold
if state == RECORD_STATE:
state = PAUSE_STATE
osc_ctrl.indicateSpeech(audio_state.osc_state.client, False)
osc_ctrl.lockWorld(audio_state.osc_state.client, True)
audio_state.transcribe_sleep_duration = audio_state.transcribe_sleep_duration_min_s
audio_state.audio_paused = True
if enable_local_beep == 1:
playsound(os.path.abspath("../Sounds/Noise_Off.wav"))
elif state == PAUSE_STATE:
state = RECORD_STATE
osc_ctrl.indicateSpeech(audio_state.osc_state.client, True)
osc_ctrl.toggleBoard(audio_state.osc_state.client, True)
osc_ctrl.lockWorld(audio_state.osc_state.client, False)
resetAudioLocked(audio_state)
resetDisplayLocked(audio_state)
audio_state.drop_transcription = True
audio_state.audio_paused = False
if enable_local_beep == 1:
playsound(os.path.abspath("../Sounds/Noise_On.wav"))
# model should correspond to one of the Whisper models defined in
# whisper/__init__.py. Examples: tiny, base, small, medium.
def transcribeLoop(mic: str, language: str, model: str, enable_local_beep: bool, use_cpu: bool):
audio_state = getMicStream(mic)
audio_state.language = whisper.tokenizer.TO_LANGUAGE_CODE[language]
print("Safe to start talking")
abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
model_root = os.path.join(dname, "Models")
print("Model {} will be saved to {}".format(model, model_root))
model = whisper.load_model(model, download_root=model_root)
transcribe_audio_thd = threading.Thread(target = transcribeAudio, args = [audio_state, model, use_cpu])
transcribe_audio_thd.daemon = True
transcribe_audio_thd.start()
send_audio_thd = threading.Thread(target = sendAudio, args = [audio_state])
send_audio_thd.daemon = True
send_audio_thd.start()
controller_input_thd = threading.Thread(target = readControllerInput, args = [audio_state, enable_local_beep])
controller_input_thd.daemon = True
controller_input_thd.start()
print("Press enter to start a new message.")
for line in sys.stdin:
audio_state.transcribe_lock.acquire()
audio_state.audio_lock.acquire()
resetAudioLocked(audio_state)
resetDisplayLocked(audio_state)
audio_state.drop_transcription = True
audio_state.audio_paused = False
audio_state.audio_lock.release()
audio_state.transcribe_lock.release()
if "exit" in line or "quit" in line:
break
print("Joining threads")
audio_state.run_app = False
transcribe_audio_thd.join()
controller_input_thd.join()
if __name__ == "__main__":
sys.stdout.reconfigure(encoding="utf-8")
print("args: {}".format(" ".join(sys.argv)))
# Set cwd to the directory holding the script
abspath = os.path.abspath(__file__)
dname = os.path.dirname(abspath)
os.chdir(dname)
parser = argparse.ArgumentParser()
parser.add_argument("--mic", type=str, help="Which mic to use. Options: index, focusrite. Default: index")
parser.add_argument("--language", type=str, help="Which language to use. Ex: english, japanese, chinese, french, german.")
parser.add_argument("--model", type=str, help="Which AI model to use. Ex: tiny, base, small, medium")
parser.add_argument("--bytes_per_char", type=str, help="The number of bytes to use to represent each character")
parser.add_argument("--chars_per_sync", type=str, help="The number of characters to send on each sync event")
parser.add_argument("--enable_local_beep", type=int, help="Whether to play a local auditory indicator when transcription starts/stops.")
parser.add_argument("--rows", type=int, help="The number of rows on the board")
parser.add_argument("--cols", type=int, help="The number of columns on the board")
parser.add_argument("--window_duration_s", type=int, help="The length in seconds of the audio recording handed to the transcription algorithm")
parser.add_argument("--cpu", type=int, help="If set to 1, use CPU instead of GPU")
args = parser.parse_args()
if not args.mic:
args.mic = "index"
if not args.language:
args.language = "english"
if not args.model:
args.language = "base"
if not args.bytes_per_char or not args.chars_per_sync:
print("--bytes_per_char and --chars_per_sync required", file=sys.stderr)
sys.exit(1)
if not args.rows or not args.cols:
print("--rows and --cols required", file=sys.stderr)
sys.exit(1)
if args.window_duration_s:
config.MAX_LENGTH_S = int(args.window_duration_s)
if args.cpu == 1:
args.cpu = True
else:
args.cpu = False
generate_utils.config.BYTES_PER_CHAR = int(args.bytes_per_char)
generate_utils.config.CHARS_PER_SYNC = int(args.chars_per_sync)
generate_utils.config.BOARD_ROWS = int(args.rows)
generate_utils.config.BOARD_COLS = int(args.cols)
transcribeLoop(args.mic, args.language, args.model, args.enable_local_beep,
args.cpu)
|