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

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i ngx-speech-to-text

    Weekly Downloads

    11

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    61 kB

    Total Files

    24

    Last publish

    Collaborators

    • zypher606