speech-to-text
Turn your voice into strings.
Table of Contents
import SpeechToText from "aiava-speech-to-text";
const input: SpeechToText = new SpeechToText("en-US");
input.on("final", event => {
const data: string = event.results[event.resultIndex][0].transcription;
console.log(data);
});
input.on("end", event => input.start());
input.start();
Installation
yarn add aiava-speech-to-text
Or with NPM
npm i -S aiava-speech-to-text
Documentation
All the documentation is located on the Speech To Text documentation site.