Forums

Error accessing mic from deployed web app: Exception with an error code: 0xe (SPXERR_MIC_NOT_AVAILABLE)

I am using Microsoft Speech SDK for speech recognition. audio_config = speechsdk.audio.AudioConfig(use_default_microphone=True) auto_detect_source_language_config = speechsdk.languageconfig.AutoDetectSourceLanguageConfig(languages=["en-IN", "ta-IN", "hi-IN"]) speech_recognizer = speechsdk.SpeechRecognizer(speech_config=speech_config, audio_config=audio_config, auto_detect_source_language_config=auto_detect_source_language_config)

In my local system, the app is invoking mic flawlessly. On the hosted app though, I get error of Exception with an error code: 0xe (SPXERR_MIC_NOT_AVAILABLE).

I have tried to change URL to HTTPS and granted mic permission to browser.

I'm not sure if we'd be the best people to ask about this problem. Have you tried the project specific forums on StackOverflow or on their github repo?