1.2.0 • Published 2 years ago
iris-tts v1.2.0
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
2 years ago
1.1.0-dev1
3 years ago
1.1.0-dev5
3 years ago
1.1.0-dev4
3 years ago
1.1.0-dev3
3 years ago
1.1.0-dev2
3 years ago
1.0.3
3 years ago
1.0.2
3 years ago
1.0.1
3 years ago
1.0.0
3 years ago