ngx-speech-to-text
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i ngx-speech-to-text

Weekly Downloads

10

Version

1.0.1

License

MIT

Unpacked Size

61 kB

Total Files

24

Last publish

Collaborators

  • zypher606