frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Way of Code by Rick Rubin

https://www.thewayofcode.com/
1•momentmaker•2m ago•0 comments

Agents on Rails: Maximum Effort and DeepSeek 4.1 Flash

https://rubyonrails.org/2026/9/21/agents-on-rails-maximum-effort-and-deepseek-4-1-flash
1•doppp•5m ago•0 comments

Escaping the OpenAI Codex sandbox, twice

https://accomplish.ai/blog/escaping-the-openai-codex-sandbox-twice/
1•CoderLim110•5m ago•0 comments

Outages across API, Grok.com, and Grok Build – API (us-east-1.api.x.ai) Status

https://status.x.ai/api-us-east-1/INC578e0bc8
1•corvad•7m ago•0 comments

Bubble Rumble

https://bubblerumble.net
1•jkwn•9m ago•1 comments

Robin Williams' Daughter to Fans Creating AI Videos: 'Have Some Shame'

https://variety.com/2026/film/news/robin-williams-daughter-ai-videos-1236871568/
2•CharlesW•10m ago•0 comments

Datasets.store: Pre-scraped ecommerce datasets across 80 retail platforms

https://datasets.store/
1•Sharanxxxx•11m ago•0 comments

Why do we have rust in the kernel?

https://www.theregister.com/software/2025/02/05/mixing-rust-and-c-in-linux-likened-to-cancer-by-m...
1•homo__sapiens•11m ago•1 comments

NewKid Days in SF on Oct. 25 – show what you're building to families

https://newkid.ai/p/calling-startups-show-us-the-ai-products
1•k7vin•14m ago•0 comments

People Hooked on Vapes Try a New Way to Quit: Cigarettes

https://www.bloomberg.com/news/articles/2026-09-18/to-quit-vaping-some-are-starting-to-smoke
1•alephnerd•14m ago•0 comments

Sorority Row's GLP-1 Secret

https://www.thecut.com/article/sorority-rows-glp-1-secret.html
2•gmays•23m ago•0 comments

Making portable my unportable transputer C compiler

https://nanochess.org/transputer_c_compiler.html
3•nanochess•27m ago•0 comments

Show HN: Marklite: Lightweight Markdown Viewer/Editor

https://marklite.app
1•mchilson•29m ago•0 comments

The A.I. Party House Where Networking Has a Dark Side

https://www.nytimes.com/2026/09/21/technology/agi-house-ai-culture.html
3•berkeleyjunk•30m ago•1 comments

Claude Status – Elevated errors for multiple models

https://status.claude.com/incidents/7g1qpkyz5gxh
33•corvad•30m ago•16 comments

Tinycc-cygwin (tcc-cygwin) compiler

https://github.com/Muras69/tinycc-cygwin
1•Muras•31m ago•0 comments

Show HN: Shapefile viewer that asks which datum when the .prj is missing

https://9revolution9.com/tools/geo/shp-geojson
1•glassonion999•34m ago•0 comments

Show HN: EagleQR -QR scanner that checks domain age and unshorts URL before open

https://play.google.com/store/apps/details?id=com.safeqr.scancreate&hl=en_US
1•maazsofttech•35m ago•0 comments

Forging 1024-bit RSA signatures in nearly SNFS time

https://github.com/ucsd-hacc/NSNFSSSFSFN/
2•gslin•37m ago•0 comments

ECB will invest in tokenised securities, and settle trades on its own new rail

https://thenextweb.com/news/ecb-tokenised-securities-pontes-own-funds
2•rguiscard•37m ago•0 comments

RustyTux: Linux kernel n-day local privilege escalation

https://github.com/m0x41nos/RustyTux
6•Jiaqi060•39m ago•0 comments

Pyrowave: GPU-back video codec for high-bandwidth, low-latency streaming

https://github.com/Themaister/pyrowave
1•open-paren•40m ago•1 comments

I think it's time to hang up my Three.js hat

https://twitter.com/dangreenheck/status/2102137910921240807
5•fidotron•42m ago•1 comments

The first mRNA flu shot is now available. Here's who can get it

https://www.nbcnews.com/health/health-news/mrna-flu-vaccine-moderna-mflusiva-explained-rcna598524
2•elo2000•47m ago•2 comments

The Chern-Simons Function and the Quantum Hall Effect

https://arxiv.org/abs/2609.21182
1•tzury•47m ago•0 comments

Scaling Discovery Through Test-Time Communication

https://arxiv.org/abs/2609.21032
1•simonpure•48m ago•0 comments

BCBS Michigan posts $246M loss in 2025

https://www.beckerspayer.com/financial/bcbs-michigan-posts-246-million-loss-in-2025/
1•elo2000•49m ago•0 comments

ShinyHunters hijack rival Clop's leak site

https://www.theregister.com/cyber-crime/2026/09/21/clop-gets-a-taste-of-its-own-medicine-after-sh...
1•Gaishan•50m ago•0 comments

Raspberry Pi is intentionally blocking RAM capacity upgrades

https://www.notebookcheck.net/Raspberry-Pi-is-intentionally-blocking-RAM-capacity-upgrades.140497...
1•throwaway81523•52m ago•0 comments

REO Trucks teams up with frankstephenson design on its new Runabout lineup

https://reotrucks.com/newsroom/frankstephenson-design
1•b_mc2•54m 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!