ngx-speech-to-text
v1.0.1
Published
Speech to text of inbult chrome
Downloads
16
Maintainers
Readme
NgxSpeechToText - How to use
constructor(
private speechRecognitionService: SpeechRecognitionService
) { }
ngOnInit() {
this.speechRecognitionService.init();
this.speechRecognitionService.responseText$.subscribe(res => {
// DO something
}
this.speechRecognitionService.start();
...
...
}
ngOnDestroy() {
this.speechRecognitionService._destroy();
}
