From b8cba252fa4f98048c37a1f525b042829e7c85bb Mon Sep 17 00:00:00 2001 From: Nitin Bansal Date: Fri, 8 Aug 2025 09:31:53 +0530 Subject: [PATCH] Adding speed param in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81536da..fcfcf5e 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ pip install https://github.com/KittenML/KittenTTS/releases/download/0.1/kittentt from kittentts import KittenTTS m = KittenTTS("KittenML/kitten-tts-nano-0.1") -audio = m.generate("This high quality TTS model works without a GPU", voice='expr-voice-2-f' ) +audio = m.generate("This high quality TTS model works without a GPU", voice='expr-voice-2-f', speed=1.0 ) # Adjust the speed to 1.2 if the generated audio is too slow. # 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' ]