1.2.0 • Published 12 months ago

iris-tts v1.2.0

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
12 months ago

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)
  }
})()
1.2.0

12 months ago

1.1.0-dev1

1 year ago

1.1.0-dev5

1 year ago

1.1.0-dev4

1 year ago

1.1.0-dev3

1 year ago

1.1.0-dev2

1 year ago

1.0.3

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago