Skip to content

Latest commit

 

History

History
49 lines (33 loc) · 1.08 KB

README.rst

File metadata and controls

49 lines (33 loc) · 1.08 KB

voicevox client for python.

Documentation Status

Unoffical API wrapper that you can use voicevox easy!

Requirements

Voicevox engine only!

Well if you want install voicevox engine, please read this.

Install

pip install voicevox-client

All that!

Example

from voicevox import Client
import asyncio


async def main():
    async with Client() as client:
        audio_query = await client.create_audio_query(
            "こんにちは!", speaker=1
        )
        with open("voice.wav", "wb") as f:
            f.write(await audio_query.synthesis(speaker=4))


 if __name__ == "__main__":
     ## already in asyncio (in a Jupyter notebook, for example)
     # await main()
     ## otherwise
     asyncio.run(main())