Storytelling Formats
- Reddit stories (r/AskReddit, r/AITA, r/confessions)
- Creepy pasta and horror narration
- Interesting facts and "did you know" content
- Historical events storytelling
Multi-Character Script
from kittentts import KittenTTS
model = KittenTTS("KittenML/kitten-tts-mini-0.8")
# Narrator
model.generate_to_file("A Reddit user shared this unbelievable story.", "intro.wav", voice="Jasper")
# Character voices
model.generate_to_file("I never thought this would happen to me.", "op.wav", voice="Bella")
model.generate_to_file("You need to get out of there. Now.", "friend.wav", voice="Bruno")
model.generate_to_file("And that is when everything changed.", "climax.wav", voice="Luna")
# Outro
model.generate_to_file("What would you do? Comment below.", "outro.wav", voice="Rosie")
Storytelling Voices Guide
| Role | Voice | Effect |
| Narrator | Jasper / Bella | Clear, engaging storytelling |
| Characters | Bruno / Luna / Kiki | Distinct character voices |
| Suspense | Luna (speed=0.85) | Slow, atmospheric |