Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 376 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 376 Bytes

voicevox-client

Dependencies

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);
}