voicevox-client
v0.3.0
Published
Voicevox wrapper for ts/js
Downloads
26
Readme
voicevox-client
Dependencies
- Node.js >= 18
Installation
$ yarn add voicevox-client
Example
import Client from "voicevox-client";
const client = new Client("http://127.0.0.1:50021");
async function main() {
const audioquery = await client.createAudioQuery("こんにちは", 1);
await audioquery.synthesis(1);
}