forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbetaFeatures.js
More file actions
460 lines (396 loc) · 13.1 KB
/
betaFeatures.js
File metadata and controls
460 lines (396 loc) · 13.1 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
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
// Copyright 2017 Google LLC
//
// 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.
/**
* This application demonstrates how to perform basic recognize operations with
* with the Google Cloud Speech API.
*
* For more information, see the README.md under /speech and the documentation
* at https://cloud.google.com/speech/docs.
*/
'use strict';
async function speechTranscribeDiarization(fileName) {
// [START speech_transcribe_diarization_beta]
const fs = require('fs');
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const fileName = 'Local path to audio file, e.g. /path/to/audio.raw';
const config = {
encoding: 'LINEAR16',
sampleRateHertz: 8000,
languageCode: 'en-US',
enableSpeakerDiarization: true,
minSpeakerCount: 2,
maxSpeakerCount: 2,
model: 'phone_call',
};
const audio = {
content: fs.readFileSync(fileName).toString('base64'),
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(result => result.alternatives[0].transcript)
.join('\n');
console.log(`Transcription: ${transcription}`);
console.log('Speaker Diarization:');
const result = response.results[response.results.length - 1];
const wordsInfo = result.alternatives[0].words;
// Note: The transcript within each result is separate and sequential per result.
// However, the words list within an alternative includes all the words
// from all the results thus far. Thus, to get all the words with speaker
// tags, you only have to take the words list from the last result:
wordsInfo.forEach(a =>
console.log(` word: ${a.word}, speakerTag: ${a.speakerTag}`)
);
// [END speech_transcribe_diarization_beta]
}
async function asyncSpeechTranscribeDiarizationGCS(gcsUri) {
// [START speech_transcribe_diarization_gcs_beta]
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following line before running the sample.
*/
// const uri = path to GCS audio file e.g. `gs:/bucket/audio.wav`;
const config = {
encoding: 'LINEAR16',
sampleRateHertz: 8000,
languageCode: 'en-US',
enableSpeakerDiarization: true,
minSpeakerCount: 2,
maxSpeakerCount: 2,
model: 'phone_call',
};
const audio = {
uri: gcsUri,
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(result => result.alternatives[0].transcript)
.join('\n');
console.log(`Transcription: ${transcription}`);
console.log('Speaker Diarization:');
const result = response.results[response.results.length - 1];
const wordsInfo = result.alternatives[0].words;
// Note: The transcript within each result is separate and sequential per result.
// However, the words list within an alternative includes all the words
// from all the results thus far. Thus, to get all the words with speaker
// tags, you only have to take the words list from the last result:
wordsInfo.forEach(a =>
console.log(` word: ${a.word}, speakerTag: ${a.speakerTag}`)
);
// [END speech_transcribe_diarization_gcs_beta]
}
async function speechTranscribeMultiChannel(fileName) {
// [START speech_transcribe_multichannel_beta]
const fs = require('fs');
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const fileName = 'Local path to audio file, e.g. /path/to/audio.raw';
const config = {
encoding: 'LINEAR16',
languageCode: 'en-US',
audioChannelCount: 2,
enableSeparateRecognitionPerChannel: true,
};
const audio = {
content: fs.readFileSync(fileName).toString('base64'),
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(
result =>
` Channel Tag: ${result.channelTag} ${result.alternatives[0].transcript}`
)
.join('\n');
console.log(`Transcription: \n${transcription}`);
// [END speech_transcribe_multichannel_beta]
}
async function speechTranscribeMultichannelGCS(gcsUri) {
// [START speech_transcribe_multichannel_gcs_beta]
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
const config = {
encoding: 'LINEAR16',
languageCode: 'en-US',
audioChannelCount: 2,
enableSeparateRecognitionPerChannel: true,
};
const audio = {
uri: gcsUri,
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(
result =>
` Channel Tag: ${result.channelTag} ${result.alternatives[0].transcript}`
)
.join('\n');
console.log(`Transcription: \n${transcription}`);
// [END speech_transcribe_multichannel_gcs_beta]
}
async function speechTranscribeMultilang(fileName) {
// [START speech_transcribe_multilanguage_beta]
const fs = require('fs');
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const fileName = 'Local path to audio file, e.g. /path/to/audio.raw';
const config = {
encoding: 'LINEAR16',
sampleRateHertz: 44100,
languageCode: 'en-US',
alternativeLanguageCodes: ['es-ES', 'en-US'],
};
const audio = {
content: fs.readFileSync(fileName).toString('base64'),
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(result => result.alternatives[0].transcript)
.join('\n');
console.log(`Transcription: ${transcription}`);
// [END speech_transcribe_multilanguage_beta]
}
async function speechTranscribeMultilangGCS(gcsUri) {
// [START speech_transcribe_multilanguage_gcs_beta]
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following line before running the sample.
*/
// const uri = path to GCS audio file e.g. `gs:/bucket/audio.wav`;
const config = {
encoding: 'LINEAR16',
sampleRateHertz: 44100,
languageCode: 'en-US',
alternativeLanguageCodes: ['es-ES', 'en-US'],
};
const audio = {
uri: gcsUri,
};
const request = {
config: config,
audio: audio,
};
const [operation] = await client.longRunningRecognize(request);
const [response] = await operation.promise();
const transcription = response.results
.map(result => result.alternatives[0].transcript)
.join('\n');
console.log(`Transcription: ${transcription}`);
// [END speech_transcribe_multilanguage_gcs_beta]
}
async function speechTranscribeWordLevelConfidence(fileName) {
// [START speech_transcribe_word_level_confidence_beta]
const fs = require('fs');
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// const fileName = 'Local path to audio file, e.g. /path/to/audio.raw';
const config = {
encoding: 'FLAC',
sampleRateHertz: 16000,
languageCode: 'en-US',
enableWordConfidence: true,
};
const audio = {
content: fs.readFileSync(fileName).toString('base64'),
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(result => result.alternatives[0].transcript)
.join('\n');
const confidence = response.results
.map(result => result.alternatives[0].confidence)
.join('\n');
console.log(`Transcription: ${transcription} \n Confidence: ${confidence}`);
console.log('Word-Level-Confidence:');
const words = response.results.map(result => result.alternatives[0]);
words[0].words.forEach(a => {
console.log(` word: ${a.word}, confidence: ${a.confidence}`);
});
// [END speech_transcribe_word_level_confidence_beta]
}
async function speechTranscribeWordLevelConfidenceGCS(gcsUri) {
// [START speech_transcribe_word_level_confidence_gcs_beta]
// Imports the Google Cloud client library
const speech = require('@google-cloud/speech').v1p1beta1;
// Creates a client
const client = new speech.SpeechClient();
/**
* TODO(developer): Uncomment the following line before running the sample.
*/
// const uri = path to GCS audio file e.g. `gs:/bucket/audio.wav`;
const config = {
encoding: 'FLAC',
sampleRateHertz: 16000,
languageCode: 'en-US',
enableWordConfidence: true,
};
const audio = {
uri: gcsUri,
};
const request = {
config: config,
audio: audio,
};
const [response] = await client.recognize(request);
const transcription = response.results
.map(result => result.alternatives[0].transcript)
.join('\n');
const confidence = response.results
.map(result => result.alternatives[0].confidence)
.join('\n');
console.log(`Transcription: ${transcription} \n Confidence: ${confidence}`);
console.log('Word-Level-Confidence:');
const words = response.results.map(result => result.alternatives[0]);
words[0].words.forEach(a => {
console.log(` word: ${a.word}, confidence: ${a.confidence}`);
});
// [END speech_transcribe_word_level_confidence_gcs_beta]
}
require('yargs')
.demand(1)
.command(
'Diarization',
'Isolate distinct speakers in an audio file',
{},
opts => speechTranscribeDiarization(opts.speechFile)
)
.command(
'DiarizationGCS',
'Isolate distinct speakers in an audio file located in a Google Cloud Storage bucket.',
{},
opts => asyncSpeechTranscribeDiarizationGCS(opts.gcsUri)
)
.command(
'multiChannelTranscribe',
'Differentiates input by audio channel in local audio file.',
{},
opts => speechTranscribeMultiChannel(opts.speechFile)
)
.command(
'multiChannelTranscribeGCS',
'Differentiates input by audio channel in an audio file located in a Google Cloud Storage bucket.',
{},
opts => speechTranscribeMultichannelGCS(opts.gcsUri)
)
.command(
'multiLanguageTranscribe',
'Transcribes multiple languages from local audio file.',
{},
opts => speechTranscribeMultilang(opts.speechFile)
)
.command(
'multiLanguageTranscribeGCS',
'Transcribes multiple languages from GCS audio file.',
{},
opts => speechTranscribeMultilangGCS(opts.gcsUri)
)
.command(
'wordLevelConfidence',
'Detects word level confidence from local audio file.',
{},
opts => speechTranscribeWordLevelConfidence(opts.speechFile)
)
.command(
'wordLevelConfidenceGCS',
'Detects word level confidence from GCS audio file.',
{},
opts => speechTranscribeWordLevelConfidenceGCS(opts.gcsUri)
)
.options({
speechFile: {
alias: 'f',
global: true,
requiresArg: false,
type: 'string',
},
gcsUri: {
alias: 'u',
global: true,
requiresArg: true,
type: 'string',
},
})
.example('node $0 Diarization -f ./resources/commercial_mono.wav')
.example(
'node $0 DiarizationGCS -u gs://cloud-samples-tests/speech/commercial_mono.wav'
)
.example(
'node $0 multiChannelTranscribe -f ./resources/commercial_stereo.wav'
)
.example(
'node $0 multiChannelTranscribeGCS -u gs://cloud-samples-tests/speech/commercial_stereo.wav'
)
.example('node $0 multiLanguageTranscribe -f ./resources/multi.wav')
.example(
'node $0 multiLanguageTranscribeGCS -u gs://nodejs-docs-samples/multi_mono.wav'
)
.example('node $0 wordLevelConfidence -f ./resources/brooklyn.flac')
.example(
'node $0 wordLevelConfidenceGCS -u gs://cloud-samples-tests/speech/brooklyn.flac'
)
.wrap(120)
.recommendCommands()
.epilogue('For more information, see https://cloud.google.com/speech/docs')
.help()
.strict().argv;