我遇到了同样的问题,似乎是博文中的错字,所以我在这里与 SDK 示例进行了比较:https ://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/ js/浏览器
Smael 的回答本质上是修复 - 从函数调用中删除 .Recognizer 并且应该修复它(还要确保您返回的 SDK 引用与您正在导入的引用同名:
import { Component } from '@angular/core';
import { environment } from 'src/environments/environment';
import * as SpeechSDK from 'microsoft-speech-browser-sdk';
@Component({
selector: 'app-home',
templateUrl: './home.component.html',
})
export class HomeComponent {
speechAuthToken: string;
recognizer: any;
constructor() {
this.recognizer = this.RecognizerSetup(SpeechSDK, SpeechSDK.RecognitionMode.Conversation, 'en-US',
SpeechSDK.SpeechResultFormat.Simple, environment.speechSubscriptionKey);
}
RecognizerSetup(SDK, recognitionMode, language, format, subscriptionKey) {
const recognizerConfig = new SDK.RecognizerConfig(
new SDK.SpeechConfig(
new SDK.Context(
new SDK.OS(navigator.userAgent, 'Browser', null),
new SDK.Device('SpeechSample', 'SpeechSample', '1.0.00000'))),
recognitionMode, // SDK.RecognitionMode.Interactive (Options - Interactive/Conversation/Dictation)
language, // Supported languages are specific to each recognition mode Refer to docs.
format); // SDK.SpeechResultFormat.Simple (Options - Simple/Detailed)
// Alternatively use SDK.CognitiveTokenAuthentication(fetchCallback, fetchOnExpiryCallback) for token auth
const authentication = new SDK.CognitiveSubscriptionKeyAuthentication(subscriptionKey);
return SpeechSDK.CreateRecognizer(recognizerConfig, authentication);
}
RecognizerStart() {
this.recognizer.Recognize((event) => {
/*
Alternative syntax for typescript devs.
if (event instanceof SDK.RecognitionTriggeredEvent)
*/
switch (event.Name) {
case 'RecognitionTriggeredEvent' :
console.log('Initializing');
break;
case 'ListeningStartedEvent' :
console.log('Listening');
break;
case 'RecognitionStartedEvent' :
console.log('Listening_Recognizing');
break;
case 'SpeechStartDetectedEvent' :
console.log('Listening_DetectedSpeech_Recognizing');
console.log(JSON.stringify(event.Result)); // check console for other information in result
break;
case 'SpeechHypothesisEvent' :
// UpdateRecognizedHypothesis(event.Result.Text);
console.log(JSON.stringify(event.Result)); // check console for other information in result
break;
case 'SpeechFragmentEvent' :
// UpdateRecognizedHypothesis(event.Result.Text);
console.log(JSON.stringify(event.Result)); // check console for other information in result
break;
case 'SpeechEndDetectedEvent' :
// OnSpeechEndDetected();
console.log('Processing_Adding_Final_Touches');
console.log(JSON.stringify(event.Result)); // check console for other information in result
break;
case 'SpeechSimplePhraseEvent' :
// UpdateRecognizedPhrase(JSON.stringify(event.Result, null, 3));
break;
case 'SpeechDetailedPhraseEvent' :
// UpdateRecognizedPhrase(JSON.stringify(event.Result, null, 3));
break;
case 'RecognitionEndedEvent' :
// OnComplete();
console.log('Idle');
console.log(JSON.stringify(event)); // Debug information
break;
}
})
.On(() => {
// The request succeeded. Nothing to do here.
},
(error) => {
console.error(error);
});
}
RecognizerStop() {
// recognizer.AudioSource.Detach(audioNodeId) can be also used here. (audioNodeId is part of ListeningStartedEvent)
this.recognizer.AudioSource.TurnOff();
}
}