1.0.2 • Published 2 years ago

voicetextlib v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

VoiceTextAPI

Converts text to speech using the VoiceText Web API.

How to use

Install

yarn add voicetextlib

Usage

stream(param = {}) -> Promise<NodeJS.ReadableStream>

import VoiceTextApi from 'voicetextlib';
import fs from 'node:fs';

const voice = new VoiceTextApi('API TOKEN');
voice.stream({text:'読み上げたい音声です',format:'wav',speaker:'haruka',speed:50})
.then((body) => body.pipe(fs.createWriteStream('test.wav')));

fetchBuffer(param = {}) -> Promise<Uint8Array>

import VoiceTextApi from 'voicetextlib';
import fs from 'node:fs';

const voice = new VoiceTextApi('API TOKEN');
voice.fetchBuffer({text:'読み上げたい音声です',format:'wav',speaker:'haruka',speed:50})
.then((body) => fs.writeFileSync('tes3t.wav',body));

Build

yarn run build

Special Thanks

This project has been strongly influenced by the following projects.

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago