Attention! This repository is archived and the library has been moved to tinkoff/ng-web-apis monorepository
Part of Web APIs for Angular
This is a library to use Web Speech API with Angular.
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
Web Speech API consists of speech synthesis and speech recognition.
- Use
SpeechSynthesisModule
to gain access toTextToSpeechDirective
andUtterancePipe
. Use them like the example below for speech synthesis functionality:
<textarea
class="textarea"
[(ngModel)]="text"
[waTextToSpeech]="text | waUtterance: options"
[waTextToSpeechPaused]="paused"
(waTextToSpeechEnd)="onEnd()"
/>
- For speech recognition use
SpeechRecognitionService
in supporting browsers (only Chrome at this point)
SpeechRecognitionService
provides access to speech recognition in familiar RxJS Observable model.
To work with the stream there are certain operators included in this library:
confidenceAbove
to filter recognitions to desired level of confidencecontinuous
to enable continuous mode of recognitionfinal
to only include final recognition resultsfirstAlternative
to quickly retrieve first alternative (which typically is the only one anyway)skipUntilSaid
to ignore stream until certain phrase is saidtakeUntilSaid
to stop listening to stream upon certain phraseisSaid
utility function to check if a phrase is inSpeechRecognitionResult[]
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')),
);
There are also a couple of tokens included in this library:
SPEECH_RECOGNITION_MAX_ALTERNATIVES
to configure number of alternatives presented inSpeechRecognitionResult
SPEECH_RECOGNITION_SUPPORT
to check if browser supports speech recognitionSPEECH_SYNTHESIS_SUPPORT
to check if browser supports speech synthesisSPEECH_SYNTHESIS_VOICES
to get the list of available voices for speech synthesis
Other Web APIs for Angular by @ng-web-apis
Do you also want to open-source something, but hate the collateral work? Check out this Angular Open-source Library Starter we’ve created for our projects. It got you covered on continuous integration, pre-commit checks, linting, versioning + changelog, code coverage and all that jazz.