I am using Global MS Azure cognitive services SDK in WEB application (JavaScript) using websocket connection Speech-to-Text. How can I use Speech-to-Text with credentials for MS Azure China? It has different region at least and different link for websocket? Does exist another SDK for China?
Intagrate China MS Azure Cognitive Services with the Global one for WEB
152 Views Asked by Анастасия Яцура At
1
There are 1 best solutions below
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in SPEECH-TO-TEXT
- How to Avoid Speech Recognition from Recognizing Speaker Playback in Unity
- recognize_google fails with WinError 10060
- React native voice isn't detecting my voice
- Try to run flutter app after install speech-to-text package in my flutter project
- Unable to convert Speech to Text using Azure Speech-to-Text service
- Automatic speech recognition from scratch
- google speech transcribe-streaming-audio with single_utterance and time limit
- How to get the microphone to record sound with Google Speech recognition on Raspberry Pi 3?
- How to increase the time for which the Microsoft Speech Service SDK listens in a single go?
- AttributeError: module 'speech_recognition' has no attribute 'Microphone'
- Kotlin Speech Recognition Without Google Api or any pop ups
- Is there a way to change number words to numeric numbers between other text in a string in python?
- Azure speech to text with identification error 'Activation Phrase is not matched'
- Python SpeechRecognition having trouble processing short pronounced words
- Why doesn't SpeechSynthesizer work when using SpeechRecognizer?
Related Questions in AZURE-COGNITIVE-SERVICES
- Long Loading Times for HoloLens 2 Unity App
- How to get a media stream of the speaker's output to transfer it over the network to microsoft cognitive services for real time speech to text
- Getting error runing Azure Text-to-speech in Google Function
- How to return images in a chunked Azure AI search index
- Process audio from Byte Stream or file without saving to disk Azure Speech SDK Python
- Action failed due to a Cognitive Services authentication error. Please check your authorization input and ensure it is correct
- Microsoft Cognitive Services Speech SDK JavaScript and C# Quickstart samples both giving error while enrolling profile
- Problem with running Azure spatial-analysis container
- Can Microsoft Azure Translator API translate text that has HTML tags?
- Using Azure AI Immersive Reader in ReactJS app
- Why does Azure Cognitive Search Indexer Create Base64 names unnecessarily?
- What is the estimated maximum time that is taken by Azure Document Intelligence (formerly Azure Form Recognizer) to Analyze an ID Document?
- Azure Neural Voice: Invalid deploymentId
- Speaker Identity using azure speech recognition
- What is causing a discrepancy in the time calculation in Azure's speech service?
Related Questions in AZURE-CHINA
- How to encrypt file using sops using a key stored in Azure Vault in China
- C# AzureSDK SecretClient how to authenticate against AzureChinaCloud
- Connect to KeyVault in Azure China
- Intermittent certificate error when accessing server URL
- Azure Function with Eventhub Trigger fails with "Encountered error while fetching the list of EventHub PartitionIds -> Unauthorized"
- Graph API: Upload contents of driveItem throws 501 not_implemented error for AzureChina
- Specify proxy for helm repository in terraform for azure china
- Azure China: Change tracking is not supported
- How to get Organization details in AzureChina Region using Microsoft Graph APIs in Postman using Device code Authentication?
- Traffic Manager applies to both Azure Global and Azure China
- Intagrate China MS Azure Cognitive Services with the Global one for WEB
- Is it possible to deploy the Web App to Azure China by the Azure DevOps pipeline
- Error 400 while building images with Packer in AzureChina
- Error trying to run packer in AzureChinaCloud
- Azure B2C in China - Troubleshooting Custom Policy for Local Account Sign-in
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Due to some impacts of policy in China, Azure China and Azure Global are two independent systems. If you want to use Azure Speech-to-Text service in China, you should have an Azure China subscription and create a speech-service.
It does have different regions and endpoints in speech-service. If you are using JS SDK to do your development work, there are two things of Azure China Speech service that you need to know :
chinaeast2chinaeast2.stt.speech.azure.cnIf you are using JS SDK to call Azure Speech-to-Text services, you can still use this SDK here but you should change the endpoint in sdk source code, for instance, in
microsoft.cognitiveservices.speech.sdk.bundle.jsyou should go to line 6293 to change its host from Azure Global to Azure China:I also did some test on my side for you ,this is my speech service in Azure China :
Official samle html gets from here .
Test result :
It works me perfectly on speech to text service.
Hope it helps !