New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

infobot-tinkoff-stt

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infobot-tinkoff-stt

Node.JS library for Tinkoff VoiceKit Speech-to-Text with streaming recognition

  • 1.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

infobot-tinkoff-stt

Node.JS library for Tinkoff VoiceKit service. Library can work in stream mode or recognize stored audio file.

Based on examples for Node.JS from https://github.com/TinkoffCreditSystems/voicekit-examples/tree/master/nodejs

To work with this library you need to obtain from Tinkoff VoiceKit support:

  • API key
  • Secret key

Audio file recognition example:

const STT = require('infobot-tinkoff-stt');

const api_key = API_KEY ;
const secret_key = SECRET_KEY;

const stt = new STT(api_key, secret_key);
stt.recognizeFile('test.wav', {
    encoding: STT.FORMAT_LINEAR_16,
    sample_rate_hertz: 16000}).then(res => {
    console.log(JSON.stringify(res));
});

Provided by INFOBOT LLC. under ISC license.

Keywords

FAQs

Package last updated on 17 Jan 2022

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