-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathindex.js
More file actions
275 lines (243 loc) · 7.64 KB
/
index.js
File metadata and controls
275 lines (243 loc) · 7.64 KB
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
'use strict';
const osType = require('os').type();
const isMac = osType === 'Darwin';
const isWin = osType.indexOf('Windows') > -1;
const spawn = require('child_process').spawn;
const EventEmitter = require('events');
function normalizeStringOption(name, value, defaultValue) {
const normalizedValue = value === undefined ? defaultValue : value;
if (
typeof normalizedValue !== 'string' &&
typeof normalizedValue !== 'number'
) {
throw new TypeError(name + ' must be a string or number');
}
const stringValue = String(normalizedValue);
if (stringValue.trim() === '') {
throw new TypeError(name + ' must not be empty');
}
return stringValue;
}
function normalizeEndian(value) {
const endian = normalizeStringOption('endian', value, 'little');
if (endian !== 'big' && endian !== 'little') {
throw new TypeError("endian must be 'big' or 'little'");
}
return endian;
}
function normalizeBooleanOption(name, value, defaultValue) {
if (value === undefined) {
return defaultValue;
}
if (typeof value !== 'boolean') {
throw new TypeError(name + ' must be a boolean');
}
return value;
}
function normalizeAdditionalParameters(value) {
if (value === undefined || value === false) {
return false;
}
if (
!Array.isArray(value) ||
value.some((item) => typeof item !== 'string')
) {
throw new TypeError(
'additionalParameters must be an array of strings or false',
);
}
return value.slice();
}
function normalizeSpawnOptions(value) {
if (value === undefined) {
return undefined;
}
if (!value || typeof value !== 'object' || Array.isArray(value)) {
throw new TypeError('spawnOptions must be an object');
}
if (Object.prototype.hasOwnProperty.call(value, 'stdio')) {
throw new TypeError(
'spawnOptions.stdio is not supported because node-microphone requires stdout and stderr pipes',
);
}
return Object.assign({}, value);
}
class Microphone extends EventEmitter {
constructor(options) {
super();
this.ps = null;
options = options || {};
this.endian = normalizeEndian(options.endian);
this.bitwidth = normalizeStringOption(
'bitwidth',
options.bitwidth,
'16',
);
this.encoding = normalizeStringOption(
'encoding',
options.encoding,
'signed-integer',
);
this.rate = normalizeStringOption('rate', options.rate, '16000');
this.channels = normalizeStringOption(
'channels',
options.channels,
'1',
);
this.fileType = normalizeStringOption(
'fileType',
options.fileType,
'raw',
);
this.additionalParameters = normalizeAdditionalParameters(
options.additionalParameters,
);
this.spawnOptions = normalizeSpawnOptions(options.spawnOptions);
this.useDataEmitter = normalizeBooleanOption(
'useDataEmitter',
options.useDataEmitter,
false,
);
if (isWin) {
this.device = normalizeStringOption(
'device',
options.device,
'default',
);
}
if (isMac && options.device !== undefined) {
this.device = normalizeStringOption(
'device',
options.device,
options.device,
);
}
if (!isWin && !isMac) {
this.device = normalizeStringOption(
'device',
options.device,
'plughw:1,0',
);
this.format = undefined;
this.formatEndian = undefined;
this.formatEncoding = undefined;
if (this.encoding === 'unsigned-integer') {
this.formatEncoding = 'U';
} else {
this.formatEncoding = 'S';
}
if (this.endian === 'big') {
this.formatEndian = 'BE';
} else {
this.formatEndian = 'LE';
}
this.format =
this.formatEncoding + this.bitwidth + '_' + this.formatEndian;
}
}
// end on silence - default threshold 0.5
//'silence', '1', '0.1', options.threshold + '%',
//'1', '1.0', options.threshold + '%'
startRecording() {
let audioOptions;
let command;
if (this.ps === null) {
if (isWin) {
audioOptions = [
'-t',
'waveaudio',
this.device,
'-b',
this.bitwidth,
'--endian',
this.endian,
'-c',
this.channels,
'-r',
this.rate,
'-e',
this.encoding,
'-t',
this.fileType,
'-',
];
command = 'sox';
} else if (isMac) {
audioOptions = [
'-q',
'-b',
this.bitwidth,
'-c',
this.channels,
'-r',
this.rate,
'-e',
this.encoding,
'-t',
this.fileType,
'-',
];
command = 'rec';
} else {
audioOptions = [
'-c',
this.channels,
'-r',
this.rate,
'-f',
this.format,
'-t',
this.fileType,
'-D',
this.device,
];
command = 'arecord';
}
if (this.additionalParameters) {
audioOptions = audioOptions.concat(this.additionalParameters);
}
let spawnOptions = this.spawnOptions;
if (isMac && this.device !== undefined) {
spawnOptions = Object.assign({}, this.spawnOptions, {
env: Object.assign(
{},
process.env,
this.spawnOptions && this.spawnOptions.env,
{ AUDIODEV: this.device },
),
});
}
this.ps = spawn(command, audioOptions, spawnOptions);
const childProcess = this.ps;
childProcess.on('error', (error) => {
this.emit('error', error);
});
childProcess.on('close', (code, signal) => {
if (this.ps === childProcess) {
this.ps = null;
}
this.emit('close', code, signal);
});
childProcess.stderr.on('error', (error) => {
this.emit('error', error);
});
childProcess.stderr.on('data', (info) => {
this.emit('info', info);
});
if (this.useDataEmitter) {
childProcess.stdout.on('data', (data) => {
this.emit('data', data);
});
}
return childProcess.stdout;
}
return undefined;
}
stopRecording() {
if (this.ps) {
this.ps.kill();
this.ps = null;
}
}
}
module.exports = Microphone;