SpeakSsmlAsync возвращает BadRequest - PullRequest
2 голосов
/ 03 июня 2019

При вызове SpeakSsmlAsync (Microsoft Speech SDK) возвращается следующее сообщение об ошибке:

> CANCELED: Reason=Error
> CANCELED: ErrorCode=BadRequest 
> CANCELED: ErrorDetails=[HTTPAPI result code = HTTPAPI_OK. HTTP status code=400.] 
> CANCELED: Did you update the subscription info?

Шаги для воспроизведения:

  1. Загрузить образец быстрого запуска из https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/quickstart/text-to-speech/csharp-dotnet-windows

  2. Заменить идентификатор подписки и регион собственными значениями, установить активную конфигурацию, как описано в документации, очистить и перестроить проект

  3. Запустите программу и введите текст, такой как "abracadabra"

    -> Работает нормально (использует SpeakTextAsync)

  4. Замените SpeakTextAsync на SpeakSsmlAsync

  5. Запустите программу и введите текст

    -> ErrorCode = BadRequest

  6. Повторите попытку с правильным кодом SSML, например <speak version="1.0" xmlns="https://www.w3.org/2001/10/synthesis" xml:lang="en-US">abracadabra</speak> "

    -> ErrorCode = BadRequest

Система

  • .NET Framework 4.6.1
  • Windows 10 Build 17134
  • Область обслуживания = "westeurope"

Код

using System;
using System.Threading.Tasks;
using Microsoft.CognitiveServices.Speech;

namespace helloworld
{
    class Program
    {

        private static string endpointSpeechKey = "<MyOwnServiceKey>";
        private static string region = "westeurope";

        public static async Task SynthesisToSpeakerAsync()
        {
            var config = SpeechConfig.FromSubscription(endpointSpeechKey, region);
            using (var synthesizer = new SpeechSynthesizer(config))
            {
                Console.WriteLine("Type some text that you want to speak...");
                Console.Write("> ");
                string text = Console.ReadLine();

                using (var result = await synthesizer.SpeakSsmlAsync(text))
                {
                    if (result.Reason == ResultReason.SynthesizingAudioCompleted)
                    {
                        Console.WriteLine($"Speech synthesized to speaker for text [{text}]");
                    }
                    else if (result.Reason == ResultReason.Canceled)
                    {
                        var cancellation = SpeechSynthesisCancellationDetails.FromResult(result);
                        Console.WriteLine($"CANCELED: Reason={cancellation.Reason}");

                        if (cancellation.Reason == CancellationReason.Error)
                        {
                            Console.WriteLine($"CANCELED: ErrorCode={cancellation.ErrorCode}");
                            Console.WriteLine($"CANCELED: ErrorDetails=[{cancellation.ErrorDetails}]");
                            Console.WriteLine($"CANCELED: Did you update the subscription info?");
                        }
                    }
                }

                // This is to give some time for the speaker to finish playing back the audio
                Console.WriteLine("Press any key to exit...");
                Console.ReadKey();
            }
        }

        static void Main()
        {
            SynthesisToSpeakerAsync().Wait();
        }
    }
}

Снимок экрана отладки

enter image description here

1 Ответ

0 голосов
/ 04 июня 2019

Azure, похоже, принимает SSML, только если включена голосовая метка.В противном случае вы получите ошибку http-400.

С кодом, приведенным ниже, вызов SpeakSsmlAsync работает успешно:

text = @"<speak version='1.0' xmlns='https://www.w3.org/2001/10/synthesis' xml:lang='en-US'><voice name='en-US-ZiraRUS'>abracadabra</voice></speak>";
using (var result = await synthesizer.SpeakSsmlAsync(text))

Будьте внимательны при поиске Microsoft SSML.Существует разница между

https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/speech-synthesis-markup

(это то, что вы хотите при программировании с использованием служб речи Azure) и

https://docs.microsoft.com/en-us/cortana/skills/speech-synthesis-markup-language

...