认知服务。 Azure 端点不工作

Cognitive services. Azure endpoint not working

我集成了 Microsoft Cognitive Services Speech to Text 的 30 天免费试用。

var config = SpeechConfig.FromSubscription("fake", "westus");

   using (var recognizer = new SpeechRecognizer(config))
      {
        lock (threadLocker)
        {
            waitingForReco = true;
        }

        var result = recognizer.RecognizeOnceAsync().Result;

        string newMessage = string.Empty;
        if (result.Reason == ResultReason.RecognizedSpeech)
        {

            newMessage = result.Text;
        }
        else if (result.Reason == ResultReason.NoMatch)
        {
            newMessage = "NOMATCH: Speech could not be recognized.";
        }
        else if (result.Reason == ResultReason.Canceled)
        {
            var cancellation = CancellationDetails.FromResult(result);
            newMessage = $"CANCELED: Reason={cancellation.Reason} ErrorDetails={cancellation.ErrorDetails}";
        }

        lock (threadLocker)
        {
            message = newMessage;
            waitingForReco = false;
        }
    }

当我使用免费的演示密钥连接到 api 时,它可以正常工作。当我在 Azure 中创建 Azure 认知服务时,它总是 returns 已取消。

我必须为此演示密钥和生产密钥配置任何其他差异吗?

我认为您可能创建了错误的服务。对于认知服务,有很多种,比如face、luis、speechservice等等。在这种情况下,您需要在Azure门户上创建资源时通过搜索语音来创建语音服务。

希望对您有所帮助!