1.0.1 • Published 4 years ago

ngx-speech-to-text v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

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();
}