We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d80885f commit 1accc78Copy full SHA for 1accc78
speech/betaFeatures.js
@@ -156,9 +156,12 @@ async function speechTranscribeMultiChannel(fileName) {
156
157
const [response] = await client.recognize(request);
158
const transcription = response.results
159
- .map(result => {
160
- ` Channel Tag: ${result.channelTag} ${result.alternatives[0].transcript}`;
161
- })
+ .map(
+ result =>
+ ` Channel Tag: ${result.channelTag} ${
162
+ result.alternatives[0].transcript
163
+ }`
164
+ )
165
.join('\n');
166
console.log(`Transcription: \n${transcription}`);
167
// [END speech_transcribe_multichannel_beta]
0 commit comments