我创建了ionic应用程序,并使用cordova插件语音识别进行语音到文本的转换。这在android手机和ios模拟器中运行良好,但在ios 13.3 上不起作用
initSpeech() {
this.speechRecognition.hasPermission()
.then((hasPermission: boolean) => {
console.log(hasPermission)
if (!hasPermission) {
this.speechRecognition.requestPermission()
.then(
() => console.log('granted'),
() => console.log('Denied')
)
}
})
}
start() {
// Start the recognition process
this.speechRecognition.startListening()
.subscribe(
(matches: Array<string>) => { this.voicetext = matches[0]; this.mainForm.controls['comments'].setValue(matches[0]); },
(onerror) => console.log('error:', onerror)
)
}
//stop listening for(ios only)
stop() {
this.speechRecognition.stopListening();
}
链接中指定的代码https://ionicframework.com/docs/native/speech-recognition是我用过的。
对于IOS,我还实现了停止侦听并添加了NSMicrophoneUsageDescription权限ios的info.list中的NSSpeechRecognitionUsageDescription权限。
请帮我做这个。提前感谢
它确实可以工作,但有延迟,所以无法识别它被触发了。