diff --git a/public/text-to-speech.html b/public/text-to-speech.html index c415988..16eff80 100644 --- a/public/text-to-speech.html +++ b/public/text-to-speech.html @@ -175,20 +175,23 @@ client.audio.speech.create(
git clone https://git.unturf.com/engineering/unturf/uncloseai-speech.git
 cd uncloseai-speech
 
-# Deploy with GPU (voice cloning engine, default)
+# Deploy with GPU (Qwen3-TTS, default)
 make deploy
 
 # Or CPU-only (works anywhere, slower)
 make deploy-cpu
 
-# Test it (model downloads automatically on first use)
+# Download 42+ cloned voice samples from LibriSpeech
+make voices-qwen
+
+# Test it (Qwen3-TTS model ~3.4GB downloads automatically on first use)
 make test
 
 # Enable additional engines
-make voices-piper    # Fast Synthesis
-make voices-xtts     # HD Voice Cloning
-make voices-silero   # Multilingual CPU
-make voices-kokoro   # Lightweight
+make voices-piper # Piper TTS +make voices-xtts # XTTS v2 +make voices-silero # Silero TTS +make voices-kokoro # Kokoro TTS

For full documentation, see the uncloseai-speech repository.

diff --git a/public/tts/voice-cloning.html b/public/tts/voice-cloning.html index 21927f3..2aa6939 100644 --- a/public/tts/voice-cloning.html +++ b/public/tts/voice-cloning.html @@ -154,9 +154,10 @@ client.audio.speech.create(
git clone https://git.unturf.com/engineering/unturf/uncloseai-speech.git
 cd uncloseai-speech
 make deploy
+make voices-qwen   # Download 42+ cloned voice samples from LibriSpeech
 make test
-

The model downloads automatically on first use (~3.4 GB). Voice samples are included in the repo.

+

The Qwen3-TTS model (~3.4 GB) downloads automatically on first use. The make voices-qwen target runs scripts/download_diverse_voices.py, which pulls speaker samples from the LibriSpeech corpus and assigns them permanent human names via the voice registry.

← Back to Text-to-Speech overview