Last active
February 12, 2025 15:07
-
-
Save simonw/77cf3e3b84b68cebef3ff0d50918dc45 to your computer and use it in GitHub Desktop.
Simple script to try out https://github.com/hexgrad/kokoro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# /// script | |
# requires-python = ">=3.10" | |
# dependencies = [ | |
# "click", | |
# "kokoro", | |
# "misaki[en]", | |
# "soundfile", | |
# ] | |
# /// | |
import click | |
from kokoro import KPipeline | |
import soundfile as sf | |
def speak(text): | |
pipeline = KPipeline(lang_code="a") | |
generator = pipeline(text, voice="af_heart", speed=1, split_pattern=r"\n+") | |
for i, (gs, ps, audio) in enumerate(generator): | |
sf.write(f"{i}.wav", audio, 24000) # save each audio file | |
print(f"{i}.wav") | |
@click.command() | |
@click.argument("text") | |
def main(text: str) -> None: | |
"""Speak the given text.""" | |
speak(text) | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment