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 240bd93 commit d80885fCopy full SHA for d80885f
speech/betaFeatures.js
@@ -189,9 +189,12 @@ async function speechTranscribeMultichannelGCS(gcsUri) {
189
190
const [response] = await client.recognize(request);
191
const transcription = response.results
192
- .map(result => {
193
- ` Channel Tag: ${result.channelTag} ${result.alternatives[0].transcript}`;
194
- })
+ .map(
+ result =>
+ ` Channel Tag: ${result.channelTag} ${
195
+ result.alternatives[0].transcript
196
+ }`
197
+ )
198
.join('\n');
199
console.log(`Transcription: \n${transcription}`);
200
// [END speech_transcribe_multichannel_gcs_beta]
0 commit comments