TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Free Local Text to Speech?

3 pointsby daly9 months ago
It seems very odd that so many complex LLM features like image generation are available and run locally but I can&#x27;t find one that will do text-to-speech.<p>I need local because the end-user does not have regular web connectivity.<p>The idea case is reading PDFs during plane flights.<p>Even Dragon Systems (anyone remember &quot;Barnburner One...&quot;?) now is cloud connected.

4 comments

ssmaameri8 months ago
OpenAI Whisper model is open source and can be run locally. There is a &quot;light&quot; version also to help it run on lower resourced machines, e.g local machine perhaps
solardev9 months ago
Windows and Mac systems have this built in now, with a variety of voices. It&#x27;s usually grouped under accessibility settings. Would that work?
dv35z9 months ago
Check out Piper TTS: <a href="https:&#x2F;&#x2F;github.com&#x2F;rhasspy&#x2F;piper">https:&#x2F;&#x2F;github.com&#x2F;rhasspy&#x2F;piper</a><p>Note: I tried to run it on MacOS and had an issue with Python compatibility - ended up running it in a Docker container, got it working fine. If you experience the same issue, let me know - happy to share the code.
daly9 months ago
I&#x27;ll check that out. Thanks.