What servers allow Long Audio API for text-to-speech with Aria vocaloid on Azure?

DDS 1 Reputation point
2020-10-07T21:26:40.79+00:00

What servers allow Long Audio API for text-to-speech with Aria vocaloid on Azure?

Azure AI Speech
Azure AI Speech
An Azure service that integrates speech processing into apps and services.
1,438 questions
{count} votes

1 answer

Sort by: Most helpful
  1. GiftA-MSFT 11,151 Reputation points
    2020-10-13T17:53:01.217+00:00

    It seems to be working on my end. Please follow these steps:

    Run the following command to get available voice list

    python voiceclient.py --voices -region eastus -key xxxxxxxxxx  
    
    • I will be using one of the voices returned from previous command

    Name: zh-CN-XiaoyouNeural, Description: {"Version":"20200520111712"}, Id: 89262f4e-76b6-41db-96fc-f9151e0954f6, Locale: zh-CN, Gender: Male, PublicVoice: True, Created: 2020-05-20T11:43:09Z

    Then submit synthesis request:

    python voiceclient.py --submit -region eastus -key xxxxxxxxxx -file en-US.txt -locale zh-CN -voiceId 89262f4e-76b6-41db-96fc-f9151e0954f6 -format riff-16khz-16bit-mono-pcm --concatenateResult  
    

    Also, please refer to the Long Audio API documentation and sample code usage details. Hope this helps!

    0 comments No comments