├── .dockerignore ├── .gitignore ├── README.md ├── cog.yaml ├── female.wav ├── male.wav ├── output.wav └── predict.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .cog 3 | TTS 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/cog.yaml -------------------------------------------------------------------------------- /female.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/female.wav -------------------------------------------------------------------------------- /male.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/male.wav -------------------------------------------------------------------------------- /output.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/output.wav -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucataco/cog-xtts-v2/HEAD/predict.py --------------------------------------------------------------------------------