# kittentts **Repository Path**: mirrors/kittentts ## Basic Information - **Project Name**: kittentts - **Description**: Kitten TTS 是一个开源的真实文本转语音模型,仅具有 1500 万个参数,专为轻量级部署和高质量语音合成而设计 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: https://www.oschina.net/p/kittentts - **GVP Project**: No ## Statistics - **Stars**: 4 - **Forks**: 1 - **Created**: 2025-08-06 - **Last Updated**: 2025-11-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Kitten TTS 😻 Kitten TTS is an open-source realistic text-to-speech model with just 15 million parameters, designed for lightweight deployment and high-quality voice synthesis. *Currently in developer preview* [Join our discord](https://discord.com/invite/VJ86W4SURW) [For custom support - fill this form ](https://docs.google.com/forms/d/e/1FAIpQLSc49erSr7jmh3H2yeqH4oZyRRuXm0ROuQdOgWguTzx6SMdUnQ/viewform?usp=preview) Email the creators with any questions : info@stellonlabs.com ## ✨ Features - **Ultra-lightweight**: Model size less than 25MB - **CPU-optimized**: Runs without GPU on any device - **High-quality voices**: Several premium voice options available - **Fast inference**: Optimized for real-time speech synthesis ## 🚀 Quick Start ### Installation ``` pip install https://github.com/KittenML/KittenTTS/releases/download/0.1/kittentts-0.1.0-py3-none-any.whl ``` ### Basic Usage ``` from kittentts import KittenTTS m = KittenTTS("KittenML/kitten-tts-nano-0.2") audio = m.generate("This high quality TTS model works without a GPU", voice='expr-voice-2-f' ) # available_voices : [ 'expr-voice-2-m', 'expr-voice-2-f', 'expr-voice-3-m', 'expr-voice-3-f', 'expr-voice-4-m', 'expr-voice-4-f', 'expr-voice-5-m', 'expr-voice-5-f' ] # Save the audio import soundfile as sf sf.write('output.wav', audio, 24000) ``` ## 💻 System Requirements Works literally everywhere ## Checklist - [x] Release a preview model - [ ] Release the fully trained model weights - [ ] Release mobile SDK - [ ] Release web version