├── .env.example ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app ├── server.py ├── test.py ├── tts_handler.py ├── utils.py └── utils_infer.py ├── assets └── images │ └── logo.webp ├── ckpts └── README.md ├── docker-compose.yml ├── f5_tts_app └── cli.py ├── ref_audio ├── Scarlett.wav.broken └── Scarlett.wav.full ├── requirements.txt └── tests └── test_cli.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/README.md -------------------------------------------------------------------------------- /app/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/app/server.py -------------------------------------------------------------------------------- /app/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/app/test.py -------------------------------------------------------------------------------- /app/tts_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/app/tts_handler.py -------------------------------------------------------------------------------- /app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/app/utils.py -------------------------------------------------------------------------------- /app/utils_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/app/utils_infer.py -------------------------------------------------------------------------------- /assets/images/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/assets/images/logo.webp -------------------------------------------------------------------------------- /ckpts/README.md: -------------------------------------------------------------------------------- 1 | to populate run: 2 | `git clone https://huggingface.co/SWivid/F5-TTS` 3 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /f5_tts_app/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/f5_tts_app/cli.py -------------------------------------------------------------------------------- /ref_audio/Scarlett.wav.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/ref_audio/Scarlett.wav.broken -------------------------------------------------------------------------------- /ref_audio/Scarlett.wav.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/ref_audio/Scarlett.wav.full -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewhand/openai-f5-tts/HEAD/tests/test_cli.py --------------------------------------------------------------------------------