npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ng-web-apis/speech

v3.0.7

Published

A library for using Web Speech API with Angular

Downloads

400

Readme

ng-web-apis logo Web Speech API for Angular

npm version npm bundle size codecov

This is a library to use Web Speech API with Angular.

Install

If you do not have @ng-web-apis/common:

npm i @ng-web-apis/common

Now install the package:

npm i @ng-web-apis/speech

How to use

Web Speech API consists of speech synthesis and speech recognition.

  1. Use SpeechSynthesisModule to gain access to TextToSpeechDirective and UtterancePipe. Use them like the example below for speech synthesis functionality:
<textarea
  class="textarea"
  [waTextToSpeech]="text | waUtterance: options"
  [waTextToSpeechPaused]="paused"
  [(ngModel)]="text"
  (waTextToSpeechEnd)="onEnd()"
/>
  1. For speech recognition use SpeechRecognitionService in supporting browsers (only Chrome at this point)

Operators

SpeechRecognitionService provides access to speech recognition in familiar RxJS Observable model. To work with the stream there are certain operators included in this library:

  1. confidenceAbove to filter recognitions to desired level of confidence
  2. continuous to enable continuous mode of recognition
  3. final to only include final recognition results
  4. firstAlternative to quickly retrieve first alternative (which typically is the only one anyway)
  5. skipUntilSaid to ignore stream until certain phrase is said
  6. takeUntilSaid to stop listening to stream upon certain phrase
  7. isSaid utility function to check if a phrase is in SpeechRecognitionResult[]

You may want to use repeat() and retry() in your stream to restart speech recognition. It is stopped after some time and error is thrown if nothing was said for a while.

Here are a few examples:

// Record speech after "Okay Angular" is said
this.stream$ = this.speechRecognition$.pipe(
  retry(),
  repeat(),
  skipUntilSaid('Okay Angular'),
  takeUntilSaid('Thank you Angular'),
  repeat(),
  final(),
  continuous(),
);
// Fire photon torpedoes with a voice command
this.torpedoes$ = this.speechRecognition$.pipe(retry(), repeat(), filter(isSaid('Fire photon torpedoes')));

Tokens

There are also a couple of tokens included in this library:

  1. SPEECH_RECOGNITION_MAX_ALTERNATIVES to configure number of alternatives presented in SpeechRecognitionResult
  2. SPEECH_RECOGNITION_SUPPORT to check if browser supports speech recognition
  3. SPEECH_SYNTHESIS_SUPPORT to check if browser supports speech synthesis
  4. SPEECH_SYNTHESIS_VOICES to get the list of available voices for speech synthesis

See also

Other Web APIs for Angular by @ng-web-apis