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

infobot-tinkoff-tts

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

infobot-tinkoff-tts

Node.JS library for Tinkoff Voicekit Text-to-Speech

  • 1.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

infobot-tinkoff-tts

Node.JS library for Tinkoff Voicekit TTS service. Library can be used to generate audio files from text with TTS service.

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:

  • API key
  • Secret key

Please check this page for information about registration process.

Audio file generation example:

const TTS = require('infobot-tinkoff-tts');
const fs = require('fs');

const key = API_KEY ;
const secret = SECRET_KEY;

const tts = new TTS(key, secret, 'oleg');
tts.generateAudio('Привет, это тест голоса Олег').then(res => {
    fs.writeFileSync('out.wav', res);
}).catch(err => {
    console.error(err);
});

Supported voices:

  • oleg - Russian Male
  • alyona - Russian Female

Provided by INFOBOT LLC. under ISC license.

Keywords

FAQs

Package last updated on 10 Mar 2023

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