Skip to content

kosich/rxjs-stt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


👂
Web API Speech recognition with RxJS

NPM Bundlephobia MIT license


A RxJS wrapper around browser native SpeechRecognition

Try it online

Install

npm i rxjs-stt

Use

import { listen } from 'rxjs-stt';

listen({ lang: 'en' }).subscribe(e => {
    if (e.type == 'result') {
        console.log(e.results[0][0].transcript);
    }
});

Enjoy 🙂

About

RxJS wrapper for speech recognition Web API

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published