yandex-speech-promise

Promise based implementation of Yandex Speech Kit API


Keywords
yandex, tts, stt, asr, speech, synthesis, recognition, speechkit, promise, speech-to-text, text-to-speech, yandex-api
License
MIT
Install
npm install yandex-speech-promise@1.3.3

Documentation

Yandex Speech Promise

This is a promise based implementation of Yandex Speech Kit API

Usage

Example:

const { text2speech, speech2text } = require('yandex-speech-promise')
const auth = "Api-Key ..."

text2speech("Привет мир!", { auth })
  .then((audio) => speech2text(audio, { auth }))
  .then((text) => console.log(text)) // привет мир