Training Video Types
- Software Onboarding: Screen recording + AI narration
- Compliance Training: Standardized voice across all modules
- Product Demos: Clear walkthrough with professional voice
- Safety Training: Authoritative, clear instruction
Example: Software Training
from kittentts import KittenTTS
model = KittenTTS("KittenML/kitten-tts-mini-0.8")
steps = [
"Open your browser and navigate to the dashboard at app.example.com.",
"Click the settings icon in the top right corner of your screen.",
"Select account preferences from the dropdown menu that appears.",
"Toggle the two-factor authentication switch to the on position.",
"Follow the prompts to complete your security setup.",
"You have successfully enabled two-factor authentication.",
]
for i, step in enumerate(steps):
model.generate_to_file(step, "step_%d.wav" % (i+1), voice="Bruno", speed=0.95)
print("Step %d done" % (i+1))
Recommended Voices for Training
| Training Type | Voice | Speed |
| Software Tutorials | Jasper / Bella | 0.95 |
| Compliance / Legal | Bruno | 0.9 |
| Sales Training | Rosie / Hugo | 1.0 |
| Safety / Technical | Bruno / Jasper | 0.9 |