Socket
Socket
Sign inDemoInstall

@accentdotai/speech-events

Package Overview
Dependencies
0
Maintainers
1
Versions
15
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @accentdotai/speech-events

A plugin for detecting speech events in audioContext instances


Version published
Weekly downloads
16
increased by700%
Maintainers
1
Install size
69.3 kB
Created
Weekly downloads
 

Readme

Source

Speech Events

A plugin for detecting speech events in audioContext instances

Hosted in Github :octopus:

This library drives the speech events detected on Accent.ai.


Syntax

Constructor
var speechEvents = new speechEventsConst({
                         speechStatusCB: (status) => {
                           console.log(status);
                         },
                         speechDetectionAllowedDelay: 1000,
                         speechDetectionThreshold: 40,
                         speechDetectionMaximum: this.recordingMaxLength,
                       });

Creates a speech events analyzer instance.

  • config - (optional) A configuration object (see Config section below)

Config
  • speechStatusCB
  • errorCB
  • detectOnly
  • concatenateMaxChunks
  • speechDetectionAllowedDelay
  • speechDetectionMinimum
  • speechDetectionMaximum
  • bufferSize
  • analysisChunkLength
  • inputSampleRate
  • speechDetectionThreshold
  • compressPauses

Instance Methods
/**
  * Connect audio context and media stream to this speech analysis class instance.
  * @param {AudioContext} audioContext The audio context gotten from `getUserMedia` caller.
  * @param {MediaStream} realAudioInput Media stream node.
  */
speechEvents.connectStreamSourceProcessor(audioContext, realAudioInput);

speechEvents.startAnalysis();
speechEvents.stopAnalysis();

Bugs?

Submit issues to: https://github.com/accentdotai/speech-events/issues

Development

This package can be used both as an ES6 Node.js module and a Browser library.

Node.js imports use the file src/speech-events.js.

NOTE: Currently this package can only be used under Node.js apps compatible with ES6.

Webpack is used to build the browser-compatible lib/speech-events.js file which is later uglified (using uglify-js) into dist/speech-events.min.js.

Scripts

The following scripts are defined within package.json for ease of development:

npm run lint
npm run build

For more info on how these work simply checkout the script definitions within package.json.

TODO

  • Add jasmine tests
  • Make Node.js module version which is compatible with non ES6 apps.

License (MIT)

Copyright © 2017 Jean M. Lescure

FAQs

Last updated on 04 Jul 2017

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc