-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmic.js
executable file
·241 lines (206 loc) · 8.01 KB
/
mic.js
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
#! /usr/bin/env node
//
// Copyright 2024 Picovoice Inc.
//
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
//
// 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.
//
"use strict";
const { program } = require("commander");
const readline = require("readline");
const fs = require("fs");
const { PvRecorder } = require("@picovoice/pvrecorder-node");
const {
Eagle,
EagleProfiler,
EagleProfilerEnrollFeedback,
EagleErrors
} = require("@picovoice/eagle-node");
const FEEDBACK_TO_DESCRIPTIVE_MSG = {
[EagleProfilerEnrollFeedback.NONE]: 'Good audio',
[EagleProfilerEnrollFeedback.AUDIO_TOO_SHORT]: 'Insufficient audio length',
[EagleProfilerEnrollFeedback.UNKNOWN_SPEAKER]: 'Different speaker in audio',
[EagleProfilerEnrollFeedback.NO_VOICE_FOUND]: 'No voice found in audio',
[EagleProfilerEnrollFeedback.QUALITY_ISSUE]: 'Low audio quality due to bad microphone or environment'
};
program
.option('-s, --show_audio_devices', 'List available audio input devices and exit')
.option('-i, --audio_device_index <number>', 'index of audio device to use to record audio', Number, -1)
.option('-a, --access_key <string>', 'AccessKey obtained from Picovoice Console (https://console.picovoice.ai/)')
.option('-l, --library_path [value]', 'Absolute path to dynamic library. Default: using the library provided by `pveagle`')
.option('-m, --model_path [value]', 'Absolute path to Eagle model. Default: using the model provided by `pveagle`')
.option('--enroll', 'Enroll a new speaker profile')
.option('--test', "Evaluate Eagle's performance using the provided speaker profiles.")
.option('--output_profile_path <string>', 'Absolute path to output file for the created profile')
.option('--input_profile_paths <strings...>', 'Absolute path(s) to speaker profile(s)')
if (process.argv.length < 1) {
program.help();
}
program.parse(process.argv);
function printResults(scores, labels) {
let result = '\rscores -> ';
let formattedResults = [];
for (let i = 0; i < labels.length; i++) {
formattedResults.push(`\`${labels[i]}\`: ${scores[i].toFixed(2)}`);
}
result += formattedResults.join(', ');
process.stdout.write(result);
}
let isInterrupted = false;
async function micDemo() {
const accessKey = program["access_key"];
const libraryFilePath = program["library_file_path"];
const modelFilePath = program["model_file_path"];
const audioDeviceIndex = program["audio_device_index"];
const showAudioDevices = program["show_audio_devices"];
const enroll = program["enroll"];
const test = program["test"];
const outputProfilePath = program["output_profile_path"];
const inputProfilePaths = program["input_profile_paths"];
let showAudioDevicesDefined = showAudioDevices !== undefined;
if (showAudioDevicesDefined) {
const devices = PvRecorder.getAvailableDevices();
for (let i = 0; i < devices.length; i++) {
console.log(`index: ${i}, device name: ${devices[i]}`);
}
process.exit();
}
if (accessKey === undefined) {
console.log("No AccessKey provided");
process.exit();
}
readline.emitKeypressEvents(process.stdin);
if (process.stdin.isTTY) {
process.stdin.setRawMode(true);
}
process.stdin.on("keypress", (key, str) => {
if (
str.sequence === "\r" ||
str.sequence === "\n" ||
(str.ctrl && str.name === "c")
) {
isInterrupted = true;
}
});
if (enroll) {
if (!outputProfilePath) {
console.log("Please provide a speaker output profile path --output_profile_path")
process.exit();
}
let eagleProfiler;
let recorder;
try {
eagleProfiler = new EagleProfiler(accessKey, {
modelPath: modelFilePath,
libraryPath: libraryFilePath
});
console.log(`Eagle version: ${eagleProfiler.version}`);
recorder = new PvRecorder(eagleProfiler.frameLength, audioDeviceIndex);
console.log(`Using device: ${recorder.getSelectedDevice()}`);
} catch (e) {
console.error('Failed to initialize Eagle:', e);
process.exit();
}
try {
let enrollPercentage = 0;
let audioData = [];
let numIterations = 0
const loadingDotsArr = [" . ", " .. ", " ...", " ..", " .", " "];
console.log('Please keep speaking until the enrollment percentage reaches 100%... Press `CTRL C` to stop');
recorder.start();
while (enrollPercentage < 100 && !isInterrupted) {
const inputFrame = await recorder.read();
audioData.push(inputFrame);
if (audioData.length * eagleProfiler.frameLength >= eagleProfiler.minEnrollSamples) {
const frames = new Int16Array(audioData.length * eagleProfiler.frameLength);
for (let i = 0; i < audioData.length; i++) {
frames.set(audioData[i], i * eagleProfiler.frameLength);
}
audioData = [];
const { percentage, feedback } = eagleProfiler.enroll(frames);
const displayPercentage = percentage.toFixed(0);
const spacer = ` `.repeat(3 - displayPercentage.length);
const feedbackMessage = FEEDBACK_TO_DESCRIPTIVE_MSG[feedback];
const loadingDots = loadingDotsArr[numIterations % loadingDotsArr.length];
readline.clearLine(process.stdout, 0)
readline.cursorTo(process.stdout, 0, null)
process.stdout.write(`\r[${spacer}${displayPercentage}%] - ${feedbackMessage}${loadingDots}`);
enrollPercentage = percentage;
numIterations++
}
}
recorder.stop();
process.stdout.write(`\n`);
if (isInterrupted) {
recorder.stop();
console.log("Stopping enrollment. No speaker profile is saved.")
process.exit();
} else {
const speakerProfile = eagleProfiler.export();
fs.writeFileSync(outputProfilePath, Buffer.from(speakerProfile));
console.log(`Speaker profile is saved to ${outputProfilePath}`);
}
} catch (e) {
if (e instanceof EagleErrors.EagleActivationLimitReachedError) {
console.error(`AccessKey '${accessKey}' has reached it's processing limit.`);
} else {
console.error('Failed to enroll speaker:', e);
}
}
recorder?.stop();
recorder?.release();
eagleProfiler?.release();
process.exit();
}
if (test) {
if (!inputProfilePaths) {
console.log("Please provide at least one speaker input profile path --input_profile_paths")
process.exit();
}
const profiles = [];
const speakerLabels = [];
for (let profilePath of inputProfilePaths) {
speakerLabels.push(profilePath);
const buffer = fs.readFileSync(profilePath);
const arrayBuffer = buffer.buffer.slice(
buffer.byteOffset,
buffer.byteOffset + buffer.byteLength
);
profiles.push(arrayBuffer);
}
let eagle;
let recorder;
try {
eagle = new Eagle(accessKey, profiles, {
modelPath: modelFilePath,
libraryPath: libraryFilePath
});
recorder = new PvRecorder(eagle.frameLength, audioDeviceIndex);
recorder.start();
console.log('Listening for audio... (press Ctrl+C to stop)');
while (!isInterrupted) {
const pcm = await recorder.read();
const scores = eagle.process(pcm);
printResults(scores, speakerLabels);
}
process.stdout.write("\nStopping...\n");
} catch (e) {
if (e instanceof EagleErrors.EagleActivationLimitReachedError) {
console.error(`AccessKey '${accessKey}' has reached it's processing limit.`);
} else {
console.error('Error during testing:', e);
}
}
recorder?.stop();
recorder?.release();
eagle?.release();
process.exit();
}
console.error('Please specify a mode: --enroll or --test');
process.exit();
}
micDemo();