frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Pascal Prediction Market

https://blog.usv.com/pascal
1•wslh•1m ago•0 comments

AI Bubble vs. Dot Com Crash. History Is Repeating

https://www.youtube.com/watch?v=zWJ-g5u9Rqs
2•cable2600•4m ago•0 comments

DanFootball

https://danfootball.com
1•declaj•4m ago•1 comments

They Call Her 'The Assassin' on Wall Street–and She Has a New Target

https://www.wsj.com/finance/fahmi-quadir-industry-assassin-3d6ccd82
1•tortilla•4m ago•1 comments

Anthropic's newest ad is creeping people out

https://techcrunch.com/2026/07/14/anthropics-newest-ad-is-creeping-people-out/
1•gnabgib•7m ago•0 comments

Show HN: Tailguard – A tested CVaR-based optimizer for stochastic reshoring

https://github.com/dismissed8582/tailguard
1•dismissed181•15m ago•0 comments

Microsoft's "Digital Escorts" Left DoD Vulnerable to Chinese Hackers

https://www.propublica.org/podcast/microsoft-digital-escorts-china-defense-department
5•jnord•20m ago•0 comments

Popular sugar substitutes linked to faster brain aging

https://www.sciencedaily.com/releases/2026/07/260717033213.htm
4•toomuchtodo•30m ago•1 comments

Harness Engineering

https://github.com/lopopolo/harness-engineering
3•handfuloflight•30m ago•0 comments

Open-Source Communism

https://continuouswritting.substack.com/p/open-source-communism
1•operator_nil•32m ago•0 comments

Codex Resets

https://codex-resets.com/
27•denysvitali•33m ago•20 comments

Why 'admin nights' are the new book club for busy adults

https://www.cnn.com/2026/01/26/health/admin-night-adults-productivity-trend-wellness
2•akman•42m ago•0 comments

European Court Confirms Ethical Veganism Is a Protected Philosophical Belief

https://veganfta.com/articles/2026/07/17/european-court-confirms-ethical-veganism-is-a-protected-...
3•salutis•42m ago•1 comments

Godecompose: Go decompiler that uses pattern matchers

https://github.com/cookiengineer/godecompose
2•cookiengineer•47m ago•1 comments

Prepaid Cellphone Plans – Comparison Site

https://prepaidcompare.net
2•WarOnPrivacy•1h ago•1 comments

CannonSmash Web

https://github.com/jgbrwn/cannonsmash-web
1•indigodaddy•1h ago•0 comments

Show HN: Ilya Sutskever's AI reading list into a learning RPG – using kimi k3

https://ilya-papers-quest.naigap.com/#/
2•praveer13•1h ago•0 comments

A free PTE Core practice platform with instant AI scoring

https://ptecorepractice.com
1•justinzhou01•1h ago•1 comments

Retrotvs – Channel-surf the past now by choosing any of the TV sets

https://70s.myretrotvs.com/
1•modinfo•1h ago•0 comments

On Ethics and Usefulness

https://manuelmoreale.com/thoughts/on-ethics-and-usefulness
2•HotGarbage•1h ago•0 comments

New hybrid positioning system promises reliable tracking where GPS fails

https://www.qmul.ac.uk/news/latest-news/2026/science-and-engineering/se/new-hybrid-positioning-sy...
2•hhs•1h ago•0 comments

Multi-Agent LLMs Fail to Explore Each Other

https://arxiv.org/abs/2607.11250
1•Anon84•1h ago•1 comments

Statistical test helps judge the value of personalization

https://news.stanford.edu/stories/2026/07/statistical-test-personalization-k-fold
2•hhs•1h ago•0 comments

Java was a three-day hotfix away from dying horribly on stage

https://www.theregister.com/devops/2026/07/18/java-was-a-three-day-hotfix-away-from-dying-horribl...
1•jnord•1h ago•0 comments

The headache of hospital pricing

https://lawliberty.org/the-headache-of-hospital-pricing/
2•hhs•1h ago•0 comments

The 3:47 Am Wake‑Up Call That Changed Everything

https://hackenewhome.blogspot.com/p/code-optimise-pour-blogger-suppression.html
1•AllForAll•1h ago•0 comments

Juggling for Blind People

https://www.jugglingforblindpeople.com/
3•pipnonsense•1h ago•0 comments

Even Microsoft couldn't make Windows 11 work well on 8GB of RAM

https://www.theverge.com/tech/966937/microsoft-surface-laptop-13-inch-8gb-ram-2026-review
6•GeekyBear•1h ago•3 comments

Welcome to Toronto, World Capital of the Urban Raccoon

https://lithub.com/welcome-to-toronto-world-capital-of-the-urban-raccoon/
3•herbertl•1h ago•1 comments

HN: Save Replay – Trim a video before uploading it

https://savereplay.com
2•IGOLz•1h ago•0 comments
Open in hackernews

Show HN: I built a GUI/API wrapper for Piper TTS to handle large files

https://github.com/MaximosMK/piper-tts-api-demo
1•MaximosMK•1y ago

Comments

MaximosMK•1y ago
Hi HN,

I often found myself wanting to convert large text files (like book chapters or long articles) into audio using the excellent open-source Piper TTS engine. Handling very large inputs directly can be a bit tricky, and I wanted a smoother workflow.

So, I built this project: 1. A simple Flask/Gunicorn API server (`server/piper_api.py`) that wraps the Piper executable. 2. A PySide6 GUI client (`client/piper_api_gui.py`) that interacts with the server.

The key feature is that the client automatically splits large text files into smaller chunks (sentence-like segments), sends these chunks to the API server to be processed in parallel (using Python's `ThreadPoolExecutor`), and then combines the resulting WAV audio snippets back into a single file. This makes synthesizing long texts much more manageable and faster than doing it sequentially.

The tech stack is Python, Flask, Gunicorn, PySide6, and Requests. It's all open source on GitHub.

Happy to answer any questions or hear feedback!