├── .github └── workflows │ └── docker-build-push.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.py ├── dia ├── __init__.py ├── audio.py ├── config.py ├── layers.py ├── model.py └── state.py ├── docker-compose.yml ├── documentation.md ├── download_model.py ├── engine.py ├── env.example.txt ├── models.py ├── reference_audio ├── Gianna.txt ├── Gianna.wav ├── Oliver_Luna.txt ├── Oliver_Luna.wav ├── Robert.txt └── Robert.wav ├── requirements.txt ├── server.py ├── static ├── screenshot-d.png └── screenshot-l.png ├── ui ├── index.html ├── presets.yaml └── script.js ├── utils.py └── voices ├── Abigail.txt ├── Abigail.wav ├── Abigail_Taylor.txt ├── Abigail_Taylor.wav ├── Adrian.txt ├── Adrian.wav ├── Adrian_Jade.txt ├── Adrian_Jade.wav ├── Alexander.txt ├── Alexander.wav ├── Alexander_Emily.txt ├── Alexander_Emily.wav ├── Alice.txt ├── Alice.wav ├── Austin.txt ├── Austin.wav ├── Austin_Jeremiah.txt ├── Austin_Jeremiah.wav ├── Axel.txt ├── Axel.wav ├── Axel_Miles.txt ├── Axel_Miles.wav ├── Connor.txt ├── Connor.wav ├── Connor_Ryan.txt ├── Connor_Ryan.wav ├── Cora.txt ├── Cora.wav ├── Cora_Gianna.txt ├── Cora_Gianna.wav ├── Elena.txt ├── Elena.wav ├── Elena_Emily.txt ├── Elena_Emily.wav ├── Eli.txt ├── Eli.wav ├── Emily.txt ├── Emily.wav ├── Everett.txt ├── Everett.wav ├── Everett_Jordan.txt ├── Everett_Jordan.wav ├── Gabriel.txt ├── Gabriel.wav ├── Gabriel_Ian.txt ├── Gabriel_Ian.wav ├── Gianna.txt ├── Gianna.wav ├── Henry.txt ├── Henry.wav ├── Ian.txt ├── Ian.wav ├── Jade.txt ├── Jade.wav ├── Jade_Layla.txt ├── Jade_Layla.wav ├── Jeremiah.txt ├── Jeremiah.wav ├── Jordan.txt ├── Jordan.wav ├── Julian.txt ├── Julian.wav ├── Julian_Thomas.txt ├── Julian_Thomas.wav ├── Layla.txt ├── Layla.wav ├── Leonardo.txt ├── Leonardo.wav ├── Leonardo_Olivia.txt ├── Leonardo_Olivia.wav ├── Michael.txt ├── Michael.wav ├── Michael_Emily.txt ├── Michael_Emily.wav ├── Miles.txt ├── Miles.wav ├── Oliver_Luna.txt ├── Oliver_Luna.wav ├── Olivia.txt ├── Olivia.wav ├── Ryan.txt ├── Ryan.wav ├── Taylor.txt ├── Taylor.wav ├── Thomas.txt └── Thomas.wav /.github/workflows/docker-build-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/.github/workflows/docker-build-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/config.py -------------------------------------------------------------------------------- /dia/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dia/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/dia/audio.py -------------------------------------------------------------------------------- /dia/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/dia/config.py -------------------------------------------------------------------------------- /dia/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/dia/layers.py -------------------------------------------------------------------------------- /dia/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/dia/model.py -------------------------------------------------------------------------------- /dia/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/dia/state.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/documentation.md -------------------------------------------------------------------------------- /download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/download_model.py -------------------------------------------------------------------------------- /engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/engine.py -------------------------------------------------------------------------------- /env.example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/env.example.txt -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/models.py -------------------------------------------------------------------------------- /reference_audio/Gianna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/reference_audio/Gianna.txt -------------------------------------------------------------------------------- /reference_audio/Gianna.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/reference_audio/Gianna.wav -------------------------------------------------------------------------------- /reference_audio/Oliver_Luna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/reference_audio/Oliver_Luna.txt -------------------------------------------------------------------------------- /reference_audio/Oliver_Luna.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/reference_audio/Oliver_Luna.wav -------------------------------------------------------------------------------- /reference_audio/Robert.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/reference_audio/Robert.txt -------------------------------------------------------------------------------- /reference_audio/Robert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/reference_audio/Robert.wav -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/server.py -------------------------------------------------------------------------------- /static/screenshot-d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/static/screenshot-d.png -------------------------------------------------------------------------------- /static/screenshot-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/static/screenshot-l.png -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/presets.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/ui/presets.yaml -------------------------------------------------------------------------------- /ui/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/ui/script.js -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/utils.py -------------------------------------------------------------------------------- /voices/Abigail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Abigail.txt -------------------------------------------------------------------------------- /voices/Abigail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Abigail.wav -------------------------------------------------------------------------------- /voices/Abigail_Taylor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Abigail_Taylor.txt -------------------------------------------------------------------------------- /voices/Abigail_Taylor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Abigail_Taylor.wav -------------------------------------------------------------------------------- /voices/Adrian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Adrian.txt -------------------------------------------------------------------------------- /voices/Adrian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Adrian.wav -------------------------------------------------------------------------------- /voices/Adrian_Jade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Adrian_Jade.txt -------------------------------------------------------------------------------- /voices/Adrian_Jade.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Adrian_Jade.wav -------------------------------------------------------------------------------- /voices/Alexander.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Alexander.txt -------------------------------------------------------------------------------- /voices/Alexander.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Alexander.wav -------------------------------------------------------------------------------- /voices/Alexander_Emily.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Alexander_Emily.txt -------------------------------------------------------------------------------- /voices/Alexander_Emily.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Alexander_Emily.wav -------------------------------------------------------------------------------- /voices/Alice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Alice.txt -------------------------------------------------------------------------------- /voices/Alice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Alice.wav -------------------------------------------------------------------------------- /voices/Austin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Austin.txt -------------------------------------------------------------------------------- /voices/Austin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Austin.wav -------------------------------------------------------------------------------- /voices/Austin_Jeremiah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Austin_Jeremiah.txt -------------------------------------------------------------------------------- /voices/Austin_Jeremiah.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Austin_Jeremiah.wav -------------------------------------------------------------------------------- /voices/Axel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Axel.txt -------------------------------------------------------------------------------- /voices/Axel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Axel.wav -------------------------------------------------------------------------------- /voices/Axel_Miles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Axel_Miles.txt -------------------------------------------------------------------------------- /voices/Axel_Miles.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Axel_Miles.wav -------------------------------------------------------------------------------- /voices/Connor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Connor.txt -------------------------------------------------------------------------------- /voices/Connor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Connor.wav -------------------------------------------------------------------------------- /voices/Connor_Ryan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Connor_Ryan.txt -------------------------------------------------------------------------------- /voices/Connor_Ryan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Connor_Ryan.wav -------------------------------------------------------------------------------- /voices/Cora.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Cora.txt -------------------------------------------------------------------------------- /voices/Cora.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Cora.wav -------------------------------------------------------------------------------- /voices/Cora_Gianna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Cora_Gianna.txt -------------------------------------------------------------------------------- /voices/Cora_Gianna.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Cora_Gianna.wav -------------------------------------------------------------------------------- /voices/Elena.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Elena.txt -------------------------------------------------------------------------------- /voices/Elena.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Elena.wav -------------------------------------------------------------------------------- /voices/Elena_Emily.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Elena_Emily.txt -------------------------------------------------------------------------------- /voices/Elena_Emily.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Elena_Emily.wav -------------------------------------------------------------------------------- /voices/Eli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Eli.txt -------------------------------------------------------------------------------- /voices/Eli.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Eli.wav -------------------------------------------------------------------------------- /voices/Emily.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Emily.txt -------------------------------------------------------------------------------- /voices/Emily.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Emily.wav -------------------------------------------------------------------------------- /voices/Everett.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Everett.txt -------------------------------------------------------------------------------- /voices/Everett.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Everett.wav -------------------------------------------------------------------------------- /voices/Everett_Jordan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Everett_Jordan.txt -------------------------------------------------------------------------------- /voices/Everett_Jordan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Everett_Jordan.wav -------------------------------------------------------------------------------- /voices/Gabriel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Gabriel.txt -------------------------------------------------------------------------------- /voices/Gabriel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Gabriel.wav -------------------------------------------------------------------------------- /voices/Gabriel_Ian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Gabriel_Ian.txt -------------------------------------------------------------------------------- /voices/Gabriel_Ian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Gabriel_Ian.wav -------------------------------------------------------------------------------- /voices/Gianna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Gianna.txt -------------------------------------------------------------------------------- /voices/Gianna.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Gianna.wav -------------------------------------------------------------------------------- /voices/Henry.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Henry.txt -------------------------------------------------------------------------------- /voices/Henry.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Henry.wav -------------------------------------------------------------------------------- /voices/Ian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Ian.txt -------------------------------------------------------------------------------- /voices/Ian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Ian.wav -------------------------------------------------------------------------------- /voices/Jade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jade.txt -------------------------------------------------------------------------------- /voices/Jade.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jade.wav -------------------------------------------------------------------------------- /voices/Jade_Layla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jade_Layla.txt -------------------------------------------------------------------------------- /voices/Jade_Layla.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jade_Layla.wav -------------------------------------------------------------------------------- /voices/Jeremiah.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jeremiah.txt -------------------------------------------------------------------------------- /voices/Jeremiah.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jeremiah.wav -------------------------------------------------------------------------------- /voices/Jordan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jordan.txt -------------------------------------------------------------------------------- /voices/Jordan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Jordan.wav -------------------------------------------------------------------------------- /voices/Julian.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Julian.txt -------------------------------------------------------------------------------- /voices/Julian.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Julian.wav -------------------------------------------------------------------------------- /voices/Julian_Thomas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Julian_Thomas.txt -------------------------------------------------------------------------------- /voices/Julian_Thomas.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Julian_Thomas.wav -------------------------------------------------------------------------------- /voices/Layla.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Layla.txt -------------------------------------------------------------------------------- /voices/Layla.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Layla.wav -------------------------------------------------------------------------------- /voices/Leonardo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Leonardo.txt -------------------------------------------------------------------------------- /voices/Leonardo.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Leonardo.wav -------------------------------------------------------------------------------- /voices/Leonardo_Olivia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Leonardo_Olivia.txt -------------------------------------------------------------------------------- /voices/Leonardo_Olivia.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Leonardo_Olivia.wav -------------------------------------------------------------------------------- /voices/Michael.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Michael.txt -------------------------------------------------------------------------------- /voices/Michael.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Michael.wav -------------------------------------------------------------------------------- /voices/Michael_Emily.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Michael_Emily.txt -------------------------------------------------------------------------------- /voices/Michael_Emily.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Michael_Emily.wav -------------------------------------------------------------------------------- /voices/Miles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Miles.txt -------------------------------------------------------------------------------- /voices/Miles.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Miles.wav -------------------------------------------------------------------------------- /voices/Oliver_Luna.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Oliver_Luna.txt -------------------------------------------------------------------------------- /voices/Oliver_Luna.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Oliver_Luna.wav -------------------------------------------------------------------------------- /voices/Olivia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Olivia.txt -------------------------------------------------------------------------------- /voices/Olivia.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Olivia.wav -------------------------------------------------------------------------------- /voices/Ryan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Ryan.txt -------------------------------------------------------------------------------- /voices/Ryan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Ryan.wav -------------------------------------------------------------------------------- /voices/Taylor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Taylor.txt -------------------------------------------------------------------------------- /voices/Taylor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Taylor.wav -------------------------------------------------------------------------------- /voices/Thomas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Thomas.txt -------------------------------------------------------------------------------- /voices/Thomas.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devnen/Dia-TTS-Server/HEAD/voices/Thomas.wav --------------------------------------------------------------------------------