Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil.
-
No spam.
-
Posts are to be related to self-hosting.
-
Don't duplicate the full text of your blog or readme if you're providing a link.
-
Submission headline should match the article title.
-
No trolling.
-
Promotion posts require active participation, with an account that is at least 30 days old. F/LOSS without a paywall has exceptions, with requirements. See the rules link for details. Tags [CBH] or [AIP] are required, see the links in Rule 8 for details.
-
AI-related discussions and AI-involved promotional posts have additional requirements for tagging, as noted in Rule 7 and the AI & Promotional Post Expanded Rules post, and find example disclosures here.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
None of this may be relevant, but I'm curious what your use case is. I use TTS very extensively to consume media and have my preferences. None of them are open source, but as far as I know all operate locally, though they're baked into other programs like screen readers and ebook readers.
I prefer older more robotic voices because they remain intelligible at high speed. Eloquence is a favorite, as are the older Apple voices like Fred and Ralph. I think it has gone by other names but TruVoice (spacing and capitalization may vary) is also up there. It was semi popular during the surreal meme era. Another memetic synth that's a little before my time but I quite enjoy is DECTalk (AKA the Moonbase Alpha voice). I believe Vocalizer was responsible for the OG Siri voice Samantha and that one's a more human voice that's still serviceable at high speeds.
my use case is that n8n sshs into a remote machine with low specs and a connected speaker to read out information sent from n8n so i can do stuff like:
pico2wave -l de-DE -w /tmp/warn.wav "Es ist {{ $json.Hour }} Uhr." && aplay /tmp/warn.wavAnd as you might have guess by now german language would be appreciated. I'm not going to run any additional docker containers for voice generation or invoke remote services. also the speaker is as dirt cheap as the rest of the setup so any output from espeak was basically killing my eardrums.I'm fairly confident espeak is all you're going to get that's FOSS, local, and with any non English support. Yes every espeak language sounds like a Brittish guy badly pronouncing that language, and this includes the American English voice as well.
@ikidd@lemmy.world pointed me to piperTTS and i ended up with a python virtual enviroment, pip install piper-tts and de_DE-thorsten-high.onnx+json to be able to run
echo "{{ $json.state}}" | piper -m ./de_DE-thorsten-high.onnx -f voice.wav && aplay voice.wavand indeed that sounds much better than pico and espeak