Voice blending in Kokoro TTS
mainKokoro TTS allows you to blend multiple voices together using weights to create custom tones. You can specify a single voice or a mix using the --voice option.
Single voice:
--voice af_sarahBlended voices (with specific weights):
Use the format voice1:weight,voice2:weight.
# 60% af_sarah and 40% am_adam
kokoro-tts input.txt output.wav --voice "af_sarah:60,am_adam:40"Equal voice blend: If you provide multiple voices without weights, they are blended equally.
# 50-50 mix
kokoro-tts input.txt --stream --voice "am_adam,af_sarah"kokoro-tts input.txt output.wav --voice "af_sarah:60,am_adam:40"