Skip to content

Unoffical API wrapper that you can use voicevox easy!

License

Notifications You must be signed in to change notification settings

ryunix/python

 
 

Repository files navigation

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())

About

Unoffical API wrapper that you can use voicevox easy!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%