kn-IN Kannada & as-IN Assamese languages are not getting processing to text.

Somendra CRM 1 Reputation point
2022-08-04T09:49:26.437+00:00

Dear Sir / Ma'm,

Following languages are not getting process in Speech to text conversion in the sample projects provided in "cognitive-services-speech-sdk-master" given by MS, please help me regarding the same.
kn-IN Kannada & as-IN Assamese languages are not getting processing to text.

Thanks in advance for the supports.

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

1 answer

Sort by: Most helpful
  1. romungi-MSFT 42,786 Reputation points Microsoft Employee
    2022-08-05T08:08:17.133+00:00

    @Somendra CRM If you lookup the language and support page of the documentation only Kannada is a supported language for speech to text. Assamese is only supported for translation.

    In your scenario if you are using the samples from the speech SDK github repo then the most likely issue could be not setting the language with your speech config. The samples do not set any recognition language and the default is english(en-US). If you would like to set the recognition language you will have to update the script to use kannada and then run the sample. For example:
    If the sample is setting the key and region of your resource with this line:

    speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region)  
    

    You should update it to:

    speech_config = speechsdk.SpeechConfig(subscription=speech_key, region=service_region , speechRecognitionLanguage='kn-IN')  
    

    You can lookup the SDK reference doc for python for reference.

    For getting output for assamese the best option is to use Kannada as source language and assamese as target and try the translation sample.

        translation_config = speechsdk.translation.SpeechTranslationConfig(  
            subscription=speech_key, region=service_region,  
            speech_recognition_language='kn-IN',  
            target_languages=('as'))  
    

    I hope this helps!!

    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.

    0 comments No comments