48 comments

  • sudobash115 hours ago
    I have used Kokoro fairly extensively for an accessibility product. I have loved working with it (especially because I don&#x27;t have an NVidia GPU like many TTS of similar quality require).<p>I particularly appreciate the fact that it lets you manually add IPA pronunciation guides. There have been some cases where an important word is a homograph and Kokoro assumed the wrong pronunciation.<p>The place where it falls a little short is in saying just a single word or two. Try having it say simply &quot;six&quot; and it almost always says something like &quot;ah-six-ah&quot;. I found a way around that though. If you give it a longer sentence to say (eg &quot;The word is: six&quot;) it will say it fine. The trick is that the Kokoro API gives you the timestamp of each word in the sentence. So you can have a Python script crop out just the word you care about. The intonation is a little flat this way, but is very reliable.<p>I asked about this on the discord, and was told that it is a limitation of the small parameter size. But in fairness to Kokoro, even eleven-labs&#x27; voices suffer from this occasionally.
    • QuantumGood13 hours ago
      Same trick with many others. I say &quot;Knight&quot; to Wispr or Google and see &quot;night&quot;. I say &quot;Knight to f3&quot;, and just backspace out &quot;to f3&quot;.
    • cdr10 hours ago
      It is indeed a common weakness of TTS models.<p>Unfortunately it makes it unsuited for my use case, which is almost entirely single words, as I don&#x27;t particularly want to deal with stitching&#x2F;segmenting input&#x2F;output.
    • dr_dshiv13 hours ago
      Great technique, thanks for sharing
  • mackross18 minutes ago
    Supertonic 3 is pretty amazing too. I’ve got time to first sound down to well under a second by streaming chunks and stitching together from CPU with goonx (non c-go onnx) - happy to upload model if any go devs interested.
  • dmayle16 hours ago
    Fun... This is something I actually care about...<p>I used to keep a version of whisperx around, because I think it&#x27;s important to have not just transcription, but also timing and speaker identification (e.g. for subtitles)... It depends on pyannote, though, which has some wierd licensing (and is tougher to script the installs because of it), so I wanted to look at something that both had better transcription, and supported diarization (the speaker and timing). I decided on parakeet for the transcription with softformer (the diarization), but most of the available engines for it don&#x27;t include softformer.<p>I coded up an OpenAI compatible server for parakeet-rs ( <a href="https:&#x2F;&#x2F;github.com&#x2F;altunenes&#x2F;parakeet-rs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;altunenes&#x2F;parakeet-rs</a> ) (which does support softformer) and I&#x27;ve been using it with OpenWhispr (a desktop app for transcription that handles all sorts of neat thing).<p>I&#x27;m doing CPU-only transcription (because I use my GPUs for other stuff and haven&#x27;t gotten around to adding in the GPU-path), but it&#x27;s incredibly empowering to be able to have local transcriptions at will.
    • dghlsakjg16 hours ago
      This is TTS. Not STT.<p>For what you are doing, Senko works really well for diarization along with parakeet.<p>Faster and more accurate than Pyannote and whisper on my MacBook anyway.
      • dmayle16 hours ago
        You&#x27;re right... I read the title too quickly... I&#x27;ll have to look at Senko vs Softformer later...
    • arikrahman8 hours ago
      Likewise with simple whisper.cpp
  • bronco2101614 hours ago
    Love this model. I’m GPU poor and have had FOMO that I haven’t played with local models at all. About a month ago I setup Kokoro on my GTX1650 to do TTS for an article reader. A simple WebUI lets me paste a URL or a chunk of copy pasted text. Python cleans it up and sends to Kokoro for TTS and it’s then served via RSS for Apple Podcasts. Then for my morning drive I’ll catch up on articles or blog posts I’ve gathered.<p>At some point I’d like to play with separate voices and see if I could build something like NotebookLM for kind of like a radio morning show of news items I’ve gathered.
    • mstkllah12 hours ago
      Check Open Notebook:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;lfnovo&#x2F;open-notebook" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;lfnovo&#x2F;open-notebook</a>
    • nullsanity10 hours ago
      [dead]
  • SambhavGupta14 hours ago
    A couple months back I wrote a chrome extension that does this on any webpage, with simultaneous highlighting of the sentence being read. Skips both the container launching step and the copy pasting website contents step. Might be useful to anyone trying to use kokoro ergonomically.<p><a href="https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;local-reader-ai-on-device&#x2F;fojpmmgbjcffadgoppmojnggkjhggimc" rel="nofollow">https:&#x2F;&#x2F;chromewebstore.google.com&#x2F;detail&#x2F;local-reader-ai-on-...</a>
  • karimf13 hours ago
    This repo is a good starting point for comparing TTS models <a href="https:&#x2F;&#x2F;github.com&#x2F;5uck1ess&#x2F;tts-bench" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;5uck1ess&#x2F;tts-bench</a><p>Kokoro is a really good model, considered it’s released 1.5 years ago. It’s punching above its weight <a href="https:&#x2F;&#x2F;5uck1ess.github.io&#x2F;tts-bench&#x2F;scores.html" rel="nofollow">https:&#x2F;&#x2F;5uck1ess.github.io&#x2F;tts-bench&#x2F;scores.html</a>
  • monkeydust1 hour ago
    I recently created a video and didn&#x27;t want to use my voice on it.<p>Rather than TTS I did STS (speech to speech) through Eleven Labs (you upload the video it alters the audio track to voice of choosing with some parameters you can control).<p>I showed it to a bunch of people and they could not believe it was non-human. The bit that got most was all the pausing, broken sentences ...essentially elements you don&#x27;t put into text if your doing T2S.<p>An LLM over the original text could perhaps inject these elements though if prompted correctly.
  • montenegrohugo13 hours ago
    Super cool!!<p>I&#x27;ve been using my own solution since January. I&#x27;m on Linux, and can&#x27;t use Aqua, Whipsrflow etc... So i made my own.<p>Recently cleaned it up and made it install friendly.<p>If anyone is interested, you can check it out here: <a href="https:&#x2F;&#x2F;github.com&#x2F;Hugo0&#x2F;voiceio" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Hugo0&#x2F;voiceio</a><p>It&#x27;s self-improving over time, runs on your local machine, and is generally decent software. 60% of my interaction with my PC nowadays is pure voice input.
    • yjftsjthsd-h13 hours ago
      This is text to speech, yours is speech to text. (But also thanks, your STT looks interesting)
      • montenegrohugo12 hours ago
        Technically Voiceio also does TTS, but it&#x27;s really crappy and just meant to read stuff loud &#x2F; select a lot of text and listen to it podcast style whilst I&#x27;m e.g. washing the dishes.<p>However you&#x27;re totally right that it&#x27;s focused on STT. I probably use it 95% for STT and only occasionally for TTS (which also reflects itself in the amount of polish I put into each)<p>and thanks!
  • armcat2 hours ago
    TTS has come incredible long way, there are so many options. There is Kokoro of course, then there is Pocket TTS which is also a tiny 100M model that allows voice cloning. There is also Chatterbox Turbo, which is bit bigger but also allows for more emotional control of the voice. And then finally there is the Fish Audio S2, which is even bigger but allows even larger and essentially unbounded finegrained control of tone and emotion. And all of these can easily run on your Macbook.
    • olq_plo53 minutes ago
      Dunno why people still write about Kokoro, there are better alternatives. Pocket TTS has more natural intonation and voice cloning. Supertonic 3 is another great model in the same weight class, which is the only one that can autodetect language and make a mix of different languages sound good.
  • deivid15 hours ago
    I spent a day fiddling with AI and dropping the expensive layers in kokoro, on phones, on CPU, on MNN, it runs 3x faster.<p>Quality is very close.<p>Will vary in your setup, but here is my script: <a href="https:&#x2F;&#x2F;github.com&#x2F;DavidVentura&#x2F;translator-rs&#x2F;blob&#x2F;master&#x2F;scripts&#x2F;kokoro_mnn&#x2F;rebuild_best_mnn.sh#L53" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;DavidVentura&#x2F;translator-rs&#x2F;blob&#x2F;master&#x2F;sc...</a>
  • dvt16 hours ago
    I&#x27;m using Kokoro for a fun little side-project browser-based game I&#x27;m working on. It&#x27;s legitimately super good for being only 85mb (for the wasm version) or 300mb (for the webgpu version).
  • lucumo3 hours ago
    I love Kokoro. I use it to read ebooks that don&#x27;t have audiobooks and it works pretty good for that. I have a Python script that reads epub&#x2F;html, runs the model and writes mp3s.<p>Kokoro supports a limited number of languages. I&#x27;ve had to resort to other models to support Dutch, and they just aren&#x27;t as good. And usually a lot slower and bigger (too big for my 8GB VRAM). I&#x27;ve had to resort to the Windows built-in TTS. It doesn&#x27;t sound natural at all, but at least it can pronounce most words and is very fast.
  • mowmiatlas15 hours ago
    Cool I actually got it ported to iPhone’s ANE finally yesterday! So we can get both rt natural local TTS and 4x less battery drainage and thermals
    • tigerquoll13 hours ago
      lol, I just finished a port to the iPhone ANE as well. I would love to compare notes
  • kn10017 hours ago
    I&#x27;m using exactly this TTS engine for my intercom door system I built. The quality of the TTS is very good.
  • ilteris11 hours ago
    I built a pipeline through hermes using edge-tts to automate and listen to links that I provide to it just this morning, google notebooklm style. I replaced the TTS model with Kokoro after seeing this post, thank you. Here&#x27;s the pipeline if anyone is interested. <a href="https:&#x2F;&#x2F;www.klaweht.com&#x2F;2026-07-07-link-to-podcast-rss-pipeline&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.klaweht.com&#x2F;2026-07-07-link-to-podcast-rss-pipel...</a> By the way, it took hermes just around 10-15 minutes to build first iteration. I am impressed.
    • ra11 hours ago
      I get the sense you&#x27;re not referring to the French fashion brand, what is Hermes?
      • nickdichev11 hours ago
        hermes agent <a href="https:&#x2F;&#x2F;hermes-agent.nousresearch.com" rel="nofollow">https:&#x2F;&#x2F;hermes-agent.nousresearch.com</a><p>similar to openclaw
        • ra5 hours ago
          thank you
    • nickdichev11 hours ago
      you should include an example of the output of your own blog post :)
      • ilteris10 hours ago
        I didn&#x27;t since feed address was already mentioned in the blog post. Here you go. The first one is edge-tts and the second one is kokoro. you&#x27;d be the judge :) <a href="https:&#x2F;&#x2F;ilteris.github.io&#x2F;hermes-audio-feed&#x2F;episodes&#x2F;2026-07-07-carmack-hbm-flash.mp3" rel="nofollow">https:&#x2F;&#x2F;ilteris.github.io&#x2F;hermes-audio-feed&#x2F;episodes&#x2F;2026-07...</a> <a href="https:&#x2F;&#x2F;ilteris.github.io&#x2F;hermes-audio-feed&#x2F;episodes&#x2F;2026-07-07-omnigent-contextual-policies.mp3" rel="nofollow">https:&#x2F;&#x2F;ilteris.github.io&#x2F;hermes-audio-feed&#x2F;episodes&#x2F;2026-07...</a>
  • jsemrau13 hours ago
    I am entirely sold on Qwen3-TTS&#x27;s voice cloning. It runs locally and I can run it as many times as I want.
  • teravor17 hours ago
    kokoro is decent but pocket-tts is much better especially when you rip a good voice. <a href="https:&#x2F;&#x2F;github.com&#x2F;kyutai-labs&#x2F;pocket-tts" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;kyutai-labs&#x2F;pocket-tts</a><p>the onnx version of pocket-tts does perform better. <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;KevinAHM&#x2F;pocket-tts-onnx" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;KevinAHM&#x2F;pocket-tts-onnx</a>
    • psanford13 hours ago
      I agree, pocket-tts is quite good. It is also very easy to make new voices from small sample files with pocket-tts.
    • mscdex17 hours ago
      I&#x27;ve found that for CPU inference the PyTorch-based (non-quantized) version of Pocket TTS actually performs (both speed and quality-wise) better than the ONNX version, even after fiddling with all of the knobs that ONNX provides.
      • teravor17 hours ago
        i found the exact opposite, the pytorch version on the cpu barely does over 2 times realtime while i can get the onnx int8 version to reach 5x.
    • slipperybeluga8 hours ago
      [dead]
  • ibic11 hours ago
    Saw it first on reddit, and later I created a small project to generate audio books from epub. So far I&#x27;ve listened to couple of books generated this way and am quite satisfied with the quality. There is just one particular word I remember that it pronounced wrongly - &quot;Malay&quot;.
  • Judson15 hours ago
    Love Kokoro tts. I wrote <a href="https:&#x2F;&#x2F;github.com&#x2F;Jud&#x2F;kokoro-coreml" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Jud&#x2F;kokoro-coreml</a> to try pushing the limits a bit on speed &amp; size. Such great quality at a given size. As others have mentioned short utterances are problematic, but solvable.
  • mberg13 hours ago
    Kokoro is great. I built an mcp for it a while back that has gotten decent traction - <a href="https:&#x2F;&#x2F;github.com&#x2F;mberg&#x2F;kokoro-tts-mcp" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mberg&#x2F;kokoro-tts-mcp</a> if anyone wants to go that route
  • elevation16 hours ago
    Any good debian-ish distros that integrate TTS and STT in a usable shell?
  • janpmz14 hours ago
    Both Text-to-Speech and Speech-to-Text now have local models that are good enough to get the job done. Kokoro for TTS, Parakeet for STT and Fluid-1 for text formatting (I use it with FluidVoice). I hope this is a trend that continues for other applications.
  • david_draco14 hours ago
    It&#x27;s interesting that the male voices are all so much worse than the female voices (several are quite good). There is bias in machine learning, but I wonder whether there is also systematically more training data of female speech?
  • miscandlanneous13 hours ago
    Naive question, but I once downloaded a particular voice file that I wanted to use with some other RVC TTS project, but ended up not being able to run it CPU only, so I only kept the voice I wanted. Thing is, the voice is in .pth format, and on Kokoro&#x27;s huggingface page, their voices are all .pt.<p>Would I be able to use this voice I already have with Kokoro? If not, is there any way to convert it? I could always go looking if someone made this specific voice but in .pt format, but I barely mess with AI and don&#x27;t know how I could search for this.
    • janalsncm12 hours ago
      Not super familiar but it seems to be technically possible.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;Ashish-Patnaik&#x2F;kokoclone" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;Ashish-Patnaik&#x2F;kokoclone</a><p>Generate audio with the voice and your first tool and use this to clone it into kokoro.<p>The pth&#x2F;pt extension bit isn’t the problem. Those are PyTorch extensions and they’re synonymous like jpeg&#x2F;jpg.
      • miscandlanneous11 hours ago
        That&#x27;s great, thank you :-)<p>With something like this I can even try to make a more accurate voice than the one I already have, and tailor it to my liking!
  • cwmoore12 hours ago
    Off-topic, re: “kokoro”<p>Article refers to: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;hexgrad&#x2F;Kokoro-82M" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;hexgrad&#x2F;Kokoro-82M</a><p>Caught my eye for the related name to my book of Kakuro puzzles for sale at <a href="https:&#x2F;&#x2F;www.kakurokokoro.com" rel="nofollow">https:&#x2F;&#x2F;www.kakurokokoro.com</a><p>Kokoro comes from the Japanese word meaning something like heart or spirit, and not the literal ones.
    • Ono-Sendai5 hours ago
      Also from this: <a href="https:&#x2F;&#x2F;terminator.fandom.com&#x2F;wiki&#x2F;Kokoro" rel="nofollow">https:&#x2F;&#x2F;terminator.fandom.com&#x2F;wiki&#x2F;Kokoro</a>
  • est6 hours ago
    <a href="https:&#x2F;&#x2F;wlejon.github.io&#x2F;kokoro-lab-web&#x2F;" rel="nofollow">https:&#x2F;&#x2F;wlejon.github.io&#x2F;kokoro-lab-web&#x2F;</a><p>You can tweak the pitch as well.
  • icevl2 hours ago
    I&#x27;ve used Piper for local TTS before, and Kokoro looks like an interesting
  • zackify14 hours ago
    I use kokoro with home assistant and its great. I find its the most natural sounding and small too.<p>I speak over sonos speakers when certain events happen. And use it as my voice assistant.
    • ethersteeds12 hours ago
      Did you use a Wyoming protocol wrapper to integrate with home assistant? Is it publicly available?<p><a href="https:&#x2F;&#x2F;www.home-assistant.io&#x2F;integrations&#x2F;wyoming&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.home-assistant.io&#x2F;integrations&#x2F;wyoming&#x2F;</a>
      • zackify10 hours ago
        Yeah wyoming protocol I think someone even made kokoro Wyoming. I forgot exactly what I did it&#x27;d been a little while
  • namegulf12 hours ago
    This is Amazing and a game changer. Millions were spent during NLP era to achieve even &lt;50% what this model offers.<p>Now this on a CPU is next level. When algorithms perform well on commodity hardware, the scale tips.<p>This gives hope that CPULLM&#x27;s are not far off that&#x27;ll be just fine for majority of use cases.
    • namegulf12 hours ago
      Just ran on Podman on a older hardware with intel CPU processor and ubuntu linux.<p>When given a large text, it nicely chunked them up (debug statements showed), generated the audio and played back nicely.<p>Well done!
  • hdz13 hours ago
    Who is going to hack together a mac widget that allows us to select text anywhere, press a shortcut key and finally get a non robotic voice outputted in a reasonable amount of time?<p>I am aware of the Option + Esc shortcut on osx for the onboard TTS but wow is it hard to listen to in 2026.
    • asteroidburger13 hours ago
      Have you tried &#x2F;usr&#x2F;bin&#x2F;say ? Might already have something sufficient for you - there’s quite a few voices there.
    • Cyberdog13 hours ago
      In System Settings, if you go to Accessibility and click &quot;Read &amp; Speak&quot; in the &quot;Vision&quot; section, you can select a different voice using the &quot;System voice&quot; section. Click the &quot;(i)&quot; to preview your various options and even download more. Some, like &quot;Allison (Enhanced),&quot; sound leagues better than the default voice.
      • hdz13 hours ago
        Great point! these are better than Samantha and they&#x27;re free. But still, if I could wait a few seconds to get a much richer TTS experience I&#x27;d pay for that.
        • Barbing12 hours ago
          Easy to send one’s clipboard to Microsoft Azure and have their DragonHD voices read the text, say with Keyboard Maestro (or presumably Alfred, Raycast, etc.). Should work with selected text too.<p>You’d definitely get to pay for it, not what I consider cheap. (“$15 per 1M characters”) But IMO just about best-in-class (maybe ElevenLabs has a voice I’d like even better).
  • infiniteregrets9 hours ago
    this is very cool! i also made a kokoro based tts tool which runs on a jetson orin kit. it serves tts generations over durable streams, try it out here: <a href="https:&#x2F;&#x2F;streamtts.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;streamtts.dev&#x2F;</a> , i also wrote about it: <a href="https:&#x2F;&#x2F;s2.dev&#x2F;blog&#x2F;local-ai">https:&#x2F;&#x2F;s2.dev&#x2F;blog&#x2F;local-ai</a>
  • TurdF3rguson14 hours ago
    When I hear the male voice I think: &quot;Ok, it&#x27;s the Youtube guy&quot;.
  • 0gs16 hours ago
    kokoro is surprisingly great at nuance but it&#x27;s tough to improve that last ~2% or so. kokoro + rvc is really great too; i use that for ELEMENT47, the LLM-centric comedy podcast i do that i wish more people would listen to. (e47.net , feel free to subscribe!)
  • raymond_goo14 hours ago
    <a href="https:&#x2F;&#x2F;github.com&#x2F;rhulha&#x2F;StreamingKokoroJS" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;rhulha&#x2F;StreamingKokoroJS</a> all in browser, 100% private, nothing tracked
    • djmips14 hours ago
      I tried it but it did not function.
      • raymond_goo4 hours ago
        Try it with Chrome, Firefox still has issues
  • fady015 hours ago
    Anyone know which local TTS is best, close to Eleven Labs quality?
  • rnxrx13 hours ago
    Another endorsement - I used Kokoro pretty extensively with an app I was developing over the last year and it&#x27;s been excellent, both on- and off- GPU. Even with Elevenlabs (long time subscriber) the comparative quality of Kokoro keeps up really well until you get to their larger models with their professional voices.<p>I do wish there were better support for SSML, as well as deeper documentation of how to influence inflection in-line, but the default does well with standard emphasis (e.g. putting asterisks around text elements). Both asks are getting outside the zone of reasonable asks for this sort of distribution, though, and I remain incredibly grateful for the quality of what hexgrad and nazdridoy have put out in the world.
  • cat_plus_plus13 hours ago
    I just hooked it up to my personal AI Japanese Teacher app, pretty good quality &#x2F; natural sounding speech in mixed English &#x2F; Japanese while running fast on CPU so I don&#x27;t waste VRAM.
    • JoeDaDude11 hours ago
      Was just thinking of making exactly that. I have made Kokoro the voice of my local LLM (qwen 3.6). What do you use for a Japanese tutor app?
  • thegarliccheese6 hours ago
    I don&#x27;t want to just spew AI-hate, but is an LLM actually necessary for this? I haven&#x27;t worked with, but came across loads of non-AI TTS tools. Are these now exceptionally better to justify the overhead? Genuinely asking.
  • SubiculumCode16 hours ago
    kokoro is very nice, but I am disappointed that this wasn&#x27;t an announcement of a new kokoro version.
  • stogot13 hours ago
    Has anyone tested&#x2F;ported Kokoro To mobile?
  • dmezzetti13 hours ago
    I agree that Kokoro is a good TTS model.<p>If you&#x27;re interested in an ONNX version and a permissively licensed TTS Tokenizer, I built a pipeline for that a while back: <a href="https:&#x2F;&#x2F;huggingface.co&#x2F;NeuML&#x2F;kokoro-base-onnx" rel="nofollow">https:&#x2F;&#x2F;huggingface.co&#x2F;NeuML&#x2F;kokoro-base-onnx</a>
  • behnamoh14 hours ago
    On macOS I&#x27;ve been using piper (<a href="https:&#x2F;&#x2F;github.com&#x2F;OHF-Voice&#x2F;piper1-gpl" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;OHF-Voice&#x2F;piper1-gpl</a>) to announce claude code notifications and it works perfectly!
  • lostmsu17 hours ago
    &gt; Apple M2 Pro: 4.5 seconds<p>&gt; AMD Ryzen 7 8745HS: 1.5 seconds<p>These two can probably do it much faster on their iGPUs.
    • dygd15 hours ago
      Yep, and Kokoro-FastAPI (which he already uses) makes it super easy with start-gpu_mac.sh
  • thenextan14 hours ago
    curious to know if it comes with audio tags?
  • keyle11 hours ago
    It crashes as soon as you put a little paragraph of text on Apple M2 Pro.<p>Hard pass.<p>Why do these half baked projects get all the attention and thousands of clicks when it just takes a simple thing to bring the whole castle down?
  • tempaccountabgd15 hours ago
    [dead]
  • othmanosx16 hours ago
    Yeah, we need to keep up with how quickly AI types back to us, typing on the keyboards is no longer quick enough, gotta dictate everything now.
    • victorbjorklund16 hours ago
      This is the opposite way
    • croes15 hours ago
      Great way to enter your passwords