gpt4 book ai didi

c# - 语音识别在此系统上不可用。找不到 SAPI 和语音识别引擎

转载 作者:行者123 更新时间:2023-12-01 09:24:57 25 4
gpt4 key购买 nike

美好的一天!我尝试使用 Speech SDK 11 向文本引擎编写简单的语音。所以尝试从这个例子中执行测试。

所以,我只是创建控制台应用程序并运行代码。 (有任务)

 Task speechRecognizer = new Task(DoWork);
speechRecognizer.Start();
speechRecognizer.Wait();

static void DoWork()
{

// Create a new SpeechRecognitionEngine instance.
SpeechRecognitionEngine sre = new SpeechRecognitionEngine();

// Configure the input to the recognizer.
sre.SetInputToWaveFile(@"c:\Test\Colors.wav");

// Create a simple grammar that recognizes "red", "green", or "blue".
Choices colors = new Choices();
colors.Add(new string[] { "red", "green", "blue" });

// Create a GrammarBuilder object and append the Choices object.
GrammarBuilder gb = new GrammarBuilder();
gb.Append(colors);

// Create the Grammar instance and load it into the speech recognition engine.
Grammar g = new Grammar(gb);
sre.LoadGrammar(g);

// Register a handler for the SpeechRecognized event.
sre.SpeechRecognized +=
new EventHandler<SpeechRecognizedEventArgs>(sre_SpeechRecognized);

// Start recognition.
sre.Recognize();
}

但我得到这个异常(exception):语音识别在这个系统上不可用。找不到SAPI和语音识别引擎。我尝试安装SpeechSDK51,但没有结果。

你能告诉我如何解决这个错误吗?

谢谢!

附言错误出现在:

 // Create a new SpeechRecognitionEngine instance.
SpeechRecognitionEngine sre = new SpeechRecognitionEngine();

最佳答案

您是否同时添加了 x64 和 x86 版本的运行时组件?它对我有用。

关于c# - 语音识别在此系统上不可用。找不到 SAPI 和语音识别引擎,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24444153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com