From e0630221e488e1008b47be318c49406695a55e93 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Wed, 28 Jan 2026 07:59:12 -0500 Subject: [PATCH] Add TTS play buttons for voice demos (aria, atlas) --- public/text-to-speech.html | 110 ++++++++++++++++++++++++++++++++++++- 1 file changed, 107 insertions(+), 3 deletions(-) diff --git a/public/text-to-speech.html b/public/text-to-speech.html index 16eff80..7ae2de0 100644 --- a/public/text-to-speech.html +++ b/public/text-to-speech.html @@ -33,6 +33,100 @@ + + + + @@ -110,21 +204,31 @@

Our public endpoint runs the Voice Cloning engine — 42+ distinct human voices cloned from the LibriSpeech public domain corpus, speaking 10 languages natively. First audio arrives in under 100 milliseconds.

-
# Female voice
+        
+
# Female voice
 curl https://speech.ai.unturf.com/v1/audio/speech \
   -H "Content-Type: application/json" \
   -d '{
     "input": "We rescue abandoned text-to-speech models and give them a new home. No API keys, no tracking, just open source voices for everyone.",
     "voice": "aria"
-  }' > aria.mp3
+  }' > aria.mp3
+ +
-# Male voice +
+
# Male voice
 curl https://speech.ai.unturf.com/v1/audio/speech \
   -H "Content-Type: application/json" \
   -d '{
     "input": "Like raccoons digging through digital dumpsters, we find the best open source TTS models that big companies left behind, and we make them accessible to everyone.",
     "voice": "atlas"
   }' > atlas.mp3
+ +
from openai import OpenAI