What is the best open model / tool for text to speech running locally?
I've got the best results with BreezeTTS, Higgs Audio v3, and Fish Audio S2 Pro. audio.cpp (https://github.com/0xShug0/audio.cpp) is an easy way to run a lot of different models.
Different models have different strengths. If you throw an entire ebook at a model you're going to get a different result than if you craft a perfect 10 second sentence with a model that supports voice direction and emotion tags, so you should try a bunch depending on your use case.
I've been making audiobooks out of text files that I have lying around, and kokoro TTS has been phenomenal
I love PocketTTS. It's stupid fast and the voice quality is decent. But it's not the highest quality.
It depends on what you are after (quality, legibility, performance, etc.).
If you're after quality then Qwen3 TTS is a very good model esp. if you take some effort to craft a voice file. It is slow, so isn't practical for real-time voices (like assistants). It can also occasionally switch to a different voice to the one provided, so you may want to break up the text being processed.
I've not yet tried other recent/recentish models.
If you are after performance then two options from older models are:
1. flite with a HTS (Hidden Markov Model) voice like cmu_us_rms (male) or cmu_us_slt (female);
2. espeak/espeak-ng with an MBROLA (an Overlapped Add model) voice (mb-us1, mb-de5-en, etc.).
Alternatively, you could try using Qwen3 TTS or over voice changing model with the CMU Arctic (http://www.festvox.org/cmu_arctic/) voice data which includes audio for the rms and slt voices among others.
If you're feeling adventurous you could also try fine tuning one of the TTS models on that data to create a custom voice, though the data is likely to be in the training data for the voices, so using an audio sample may be sufficient depending on the TTS model.