├── .gitignore ├── README.md ├── example.py ├── setup.py └── svr_tts ├── __init__.py ├── core.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | /example.py 2 | /tmp/ 3 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_tts/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_tts/HEAD/example.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_tts/HEAD/setup.py -------------------------------------------------------------------------------- /svr_tts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_tts/HEAD/svr_tts/__init__.py -------------------------------------------------------------------------------- /svr_tts/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_tts/HEAD/svr_tts/core.py -------------------------------------------------------------------------------- /svr_tts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Selectorrr/svr_tts/HEAD/svr_tts/utils.py --------------------------------------------------------------------------------