Socket
Socket
Sign inDemoInstall

iris-tts

Package Overview
Dependencies
11
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    iris-tts

This is a node library that uses a _third party service_ to provide high quality text-to-speech. It can handle any amount of text.


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Install size
1.57 MB
Created
Weekly downloads
 

Readme

Source

Iris TTS

This is a node library that uses a third party service to provide high quality text-to-speech. It can handle any amount of text.

Usage

import { open } from 'fs/promises'
import { getVoiceChunks } from './tts'

const iterator = getVoiceChunks('hola!', 'es-ES-AlvaroNeural')

;(async () => {
  const f = await open('./audio.mp3', 'w+')
  for await (const chunk of iterator) {
    f.write(chunk)
  }
})()

FAQs

Last updated on 14 May 2023

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