forked from Picovoice/porcupine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
porcupine_demo_non_blocking.py
242 lines (195 loc) · 9.33 KB
/
porcupine_demo_non_blocking.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
#
# Copyright 2018 Picovoice Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import argparse
import os
import platform
import struct
import sys
import time
from datetime import datetime
from threading import Thread
import numpy as np
import pyaudio
import soundfile
sys.path.append(os.path.join(os.path.dirname(__file__), '../../binding/python'))
from porcupine import Porcupine
class PorcupineDemo(Thread):
"""
Demo class for wake word detection (aka Porcupine) library. It creates an input audio stream from a microphone,
monitors it, and upon detecting the specified wake word(s) prints the detection time and index of wake word on
console. It optionally saves the recorded audio into a file for further review.
This is the non-blocking version that uses the callback function of PyAudio.
"""
def __init__(
self,
library_path,
model_file_path,
keyword_file_paths,
sensitivity=0.5,
input_device_index=None,
output_path=None):
"""
Constructor.
:param library_path: Absolute path to Porcupine's dynamic library.
:param model_file_path: Absolute path to the model parameter file.
:param keyword_file_paths: List of absolute paths to keyword files.
:param sensitivity: Sensitivity parameter. For more information refer to 'include/pv_porcupine.h'. It uses the
same sensitivity value for all keywords.
:param input_device_index: Optional argument. If provided, audio is recorded from this input device. Otherwise,
the default audio input device is used.
:param output_path: If provided recorded audio will be stored in this location at the end of the run.
"""
super(PorcupineDemo, self).__init__()
self._library_path = library_path
self._model_file_path = model_file_path
self._keyword_file_paths = keyword_file_paths
self._sensitivity = float(sensitivity)
self._input_device_index = input_device_index
self._output_path = output_path
if self._output_path is not None:
self._recorded_frames = []
def run(self):
"""
Creates an input audio stream, initializes wake word detection (Porcupine) object, and monitors the audio
stream for occurrences of the wake word(s). It prints the time of detection for each occurrence and index of
wake word.
"""
num_keywords = len(self._keyword_file_paths)
keyword_names =\
[os.path.basename(x).strip('.ppn').strip('_tiny').split('_')[0] for x in self._keyword_file_paths]
def _audio_callback(in_data, frame_count, time_info, status):
if frame_count >= porcupine.frame_length:
pcm = struct.unpack_from("h" * porcupine.frame_length, in_data)
result = porcupine.process(pcm)
if num_keywords == 1 and result:
print('[%s] detected keyword' % str(datetime.now()))
# add your own code execution here ... it will not block the recognition
elif num_keywords > 1 and result >= 0:
print('[%s] detected %s' % (str(datetime.now()), keyword_names[result]))
# or add it here if you use multiple keywords
if self._output_path is not None:
self._recorded_frames.append(pcm)
return None, pyaudio.paContinue
porcupine = None
pa = None
audio_stream = None
sample_rate = None
try:
porcupine = Porcupine(
library_path=self._library_path,
model_file_path=self._model_file_path,
keyword_file_paths=self._keyword_file_paths,
sensitivities=[self._sensitivity] * num_keywords)
pa = pyaudio.PyAudio()
sample_rate = porcupine.sample_rate
num_channels = 1
audio_format = pyaudio.paInt16
frame_length = porcupine.frame_length
audio_stream = pa.open(
rate=sample_rate,
channels=num_channels,
format=audio_format,
input=True,
frames_per_buffer=frame_length,
input_device_index=self._input_device_index,
stream_callback=_audio_callback)
audio_stream.start_stream()
print("Started porcupine with following settings:")
if self._input_device_index:
print("Input device: %d (check with --show_audio_devices_info)" % self._input_device_index)
else:
print("Input device: default (check with --show_audio_devices_info)")
print("Sample-rate: %d" % sample_rate)
print("Channels: %d" % num_channels)
print("Format: %d" % audio_format)
print("Frame-length: %d" % frame_length)
print("Keyword file(s): %s" % self._keyword_file_paths)
print("Waiting for keywords ...\n")
while True:
time.sleep(0.1)
except KeyboardInterrupt:
print('stopping ...')
finally:
if audio_stream is not None:
audio_stream.stop_stream()
audio_stream.close()
if pa is not None:
pa.terminate()
# delete Porcupine last to avoid segfault in callback.
if porcupine is not None:
porcupine.delete()
if self._output_path is not None and sample_rate is not None and len(self._recorded_frames) > 0:
recorded_audio = np.concatenate(self._recorded_frames, axis=0).astype(np.int16)
soundfile.write(self._output_path, recorded_audio, samplerate=sample_rate, subtype='PCM_16')
_AUDIO_DEVICE_INFO_KEYS = ['index', 'name', 'defaultSampleRate', 'maxInputChannels']
@classmethod
def show_audio_devices_info(cls):
""" Provides information regarding different audio devices available. """
pa = pyaudio.PyAudio()
for i in range(pa.get_device_count()):
info = pa.get_device_info_by_index(i)
print(', '.join("'%s': '%s'" % (k, str(info[k])) for k in cls._AUDIO_DEVICE_INFO_KEYS))
pa.terminate()
def _default_library_path():
system = platform.system()
machine = platform.machine()
if system == 'Darwin':
return os.path.join(os.path.dirname(__file__), '../../lib/mac/%s/libpv_porcupine.dylib' % machine)
elif system == 'Linux':
if machine == 'x86_64' or machine == 'i386':
return os.path.join(os.path.dirname(__file__), '../../lib/linux/%s/libpv_porcupine.so' % machine)
else:
raise Exception('cannot autodetect the binary type. Please enter the path to the shared object using --library_path command line argument.')
elif system == 'Windows':
if platform.architecture()[0] == '32bit':
return os.path.join(os.path.dirname(__file__), '..\\..\\lib\\windows\\i686\\libpv_porcupine.dll')
else:
return os.path.join(os.path.dirname(__file__), '..\\..\\lib\\windows\\amd64\\libpv_porcupine.dll')
raise NotImplementedError('Porcupine is not supported on %s/%s yet!' % (system, machine))
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--keyword_file_paths', help='comma-separated absolute paths to keyword files', type=str)
parser.add_argument(
'--library_path',
help="absolute path to Porcupine's dynamic library",
type=str)
parser.add_argument(
'--model_file_path',
help='absolute path to model parameter file',
type=str,
default=os.path.join(os.path.dirname(__file__), '../../lib/common/porcupine_params.pv'))
parser.add_argument('--sensitivity', help='detection sensitivity [0, 1]', default=0.5)
parser.add_argument('--input_audio_device_index', help='index of input audio device', type=int, default=None)
parser.add_argument(
'--output_path',
help='absolute path to where recorded audio will be stored. If not set, it will be bypassed.',
type=str,
default=None)
parser.add_argument('--show_audio_devices_info', action='store_true')
args = parser.parse_args()
if args.show_audio_devices_info:
PorcupineDemo.show_audio_devices_info()
else:
if not args.keyword_file_paths:
raise ValueError('keyword file paths are missing')
PorcupineDemo(
library_path=args.library_path if args.library_path is not None else _default_library_path(),
model_file_path=args.model_file_path,
keyword_file_paths=[x.strip() for x in args.keyword_file_paths.split(',')],
sensitivity=args.sensitivity,
output_path=args.output_path,
input_device_index=args.input_audio_device_index
).run()