Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

speech-to-text

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

speech-to-text

A speech to text module.

  • 0.7.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
437
decreased by-3.1%
Maintainers
1
Weekly downloads
 
Created
Source

Speech To Text

A speech recognition module.

It's designed to listen continuously to a user (i.e. pauses are ok), and then converts that speech to text.

Install

yarn add speech-to-text

Usage

import SpeechToText from 'speech-to-text';

const onAnythingSaid = text => console.log(`Interim text: ${text}`);
const onFinalised = text => console.log(`Finalised text: ${text}`);

try {
  const listener = new SpeechToText(onAnythingSaid, onFinalised);
  listener.startListening();
} catch (error) {
  console.log(error);
}

Demo here.

API

The constructor

  • onAnythingSaid: this is a callback function that is called with text as it's being said
  • onFinalised: this is a callback function that is called with the full text as it has been resolved in the cloud.
  • onFinishedListening: this is a callback function that is called when the speech recognitions stops listening.
  • language: This is an optional string that specifies the language to be interpreted as. Default is United States English. 'en-US'

The constructor will throw an error if speech recognition is not supported by the browser.

if (
  !('webkitSpeechRecognition' in window) &&
  !('SpeechRecognition' in window)
) {
  throw new Error("This browser doesn't support speech recognition. Try Google Chrome or Firefox.");
}

startListening

Initiates listening to speech input and will continue to call the callback functions provided until the speech recognition stops listening. After which you'll need to call this function again.

stopListening

Does just that. Stops listening.

License

MIT

Keywords

FAQs

Package last updated on 04 Dec 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc