Cant find region for Azure Speech to Text Voice

Manish Mudgal 1 Reputation point
2022-05-30T08:38:32.387+00:00

Azure Text to Speech service provides default support for the audio length of 10 minutes. Any conversion which is more than 10 minutes, requires the use of long audio API. My issue is that I want to use Romanian voice (Emil) but I am not able to find which region I should use. I am not able to find the region for Romanian voice.

Can you please help?

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

1 answer

Sort by: Most helpful
  1. romungi-MSFT 48,501 Reputation points Microsoft Employee
    2022-05-30T13:29:10.007+00:00

    @Manish Mudgal You can lookup the list of voices available in a region by looking up the voice list API.
    In this case a quick lookup of westeurope confirms the voice is available in this region.

        {  
            "Name": "Microsoft Server Speech Text to Speech Voice (ro-RO, EmilNeural)",  
            "DisplayName": "Emil",  
            "LocalName": "Emil",  
            "ShortName": "ro-RO-EmilNeural",  
            "Gender": "Male",  
            "Locale": "ro-RO",  
            "LocaleName": "Romanian (Romania)",  
            "SampleRateHertz": "24000",  
            "VoiceType": "Neural",  
            "Status": "GA"  
        }  
    

    A GET request to the region of your choice should provide the complete list.

    https://<region_name>.tts.speech.microsoft.com/cognitiveservices/voices/list  
    

    Use the header key Ocp-Apim-Subscription-Key & the key value as your speech resource subscription key.

    If an answer is helpful, please click on 130616-image.png or upvote 130671-image.png which might help other community members reading this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.