You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Android, I have already granted the recording permission. When I use the cognitive-services-speech-sdk for recording, I encounter the error code: 0x38 (SPXERR_AUDIO_SYS_LIBRARY_NOT_FOUND). How can I resolve this issue? Is speechsdk not supported, or is there another reason?
Steps to reproduce
SPXERR_AUDIO_SYS_LIBRARY_NOT_FOUND
Minimal reproduction project (MRP)
publicasyncTask<PronunciationAssessmentResult>FromMic(SpeechConfigspeechConfig){varpronunciationAssessmentConfig=newPronunciationAssessmentConfig(referenceText:"I am tom.",gradingSystem:GradingSystem.HundredMark,granularity:Granularity.Word,enableMiscue:true);pronunciationAssessmentConfig.PhonemeAlphabet="IPA";pronunciationAssessmentConfig.NBestPhonemeCount=5;speechConfig.SetProperty(PropertyId.Speech_SegmentationSilenceTimeoutMs,3000.ToString());usingvaraudioConfig=AudioConfig.FromDefaultMicrophoneInput();using(varspeechRecognizer=newSpeechRecognizer(speechConfig,audioConfig)){pronunciationAssessmentConfig.ApplyTo(speechRecognizer);varspeechRecognitionResult=awaitspeechRecognizer.RecognizeOnceAsync();// The pronunciation assessment result as a Speech SDK objectvarpronunciationAssessmentResult=PronunciationAssessmentResult.FromResult(speechRecognitionResult);// The pronunciation assessment result as a JSON stringvarpronunciationAssessmentResultJson=speechRecognitionResult.Properties.GetProperty(PropertyId.SpeechServiceResponse_JsonResult);returnpronunciationAssessmentResult;}}
The text was updated successfully, but these errors were encountered:
Tested versions
godot4 dev6 c#
System information
android 11 api 30
Issue description
On Android, I have already granted the recording permission. When I use the cognitive-services-speech-sdk for recording, I encounter the error code: 0x38 (SPXERR_AUDIO_SYS_LIBRARY_NOT_FOUND). How can I resolve this issue? Is speechsdk not supported, or is there another reason?
Steps to reproduce
SPXERR_AUDIO_SYS_LIBRARY_NOT_FOUND
Minimal reproduction project (MRP)
The text was updated successfully, but these errors were encountered: