frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Managedagents.sh

https://www.managedagents.sh/
2•iacguy•1m ago•0 comments

Waymo traps teens firing toy gun in driverless car, raising privacy concerns

https://www.nbcbayarea.com/news/local/waymo-teens-drinking-shooting-objects-san-mateo/4110140/
1•text0404•1m ago•0 comments

Satellite Surge in the Night Sky: An interactive look at orbit density

https://naturnacht-fulda-rhoen.de/wp-content/uploads/2026/07/satelliten-himmel-i18n.html
1•ptrsrtp•5m ago•0 comments

Why Toolmaking Is the Most Effective Way of Learning

https://medium.com/@subairui/coding-on-principle-toolmaking-is-the-most-effective-way-of-learning...
2•subairui•5m ago•1 comments

Show HN: Leafwright – Generate PDFs without running headless Chrome

https://leafwright.co
1•alejoestela•6m ago•0 comments

Which Bazel tests are affected? Ask the remote cache, run nothing

https://aspect.build/blog/selective-testing-with-cache-diff
1•shelbyte•8m ago•0 comments

LiberSystem – A capability-based microkernel OS written in Rust

https://libersystem.com/
1•klez•8m ago•0 comments

Loop Engineering's Missing Half

https://x.com/nsankar/article/207382099687713997
1•sankarn_ai•8m ago•0 comments

And Then the Billionaire Paid Off $550 Million of Our Debts

https://idiallo.com/blog/billionaire-paid-off-550-million-dollars-of-our-debts
2•Brajeshwar•9m ago•0 comments

What is wrong with AI services businesses

1•rcarrol6•11m ago•0 comments

Fable Built Thomas Jefferson's Rotating Bookstand

https://jefferson-bookstand.vercel.app
1•mikemangialardi•12m ago•0 comments

Can geoengineering blunt El Niño's fury?

https://www.sciencenews.org/article/geoengineering-el-nino-extremes
1•littlexsparkee•14m ago•0 comments

Miles: A PyTorch-Native Stack for Large-Scale LLM RL Post-Training

https://pytorch.org/blog/miles-a-pytorch-native-stack-for-large-scale-llm-rl-post-training/
1•gmays•15m ago•0 comments

Solomon's Paradox

https://en.wikipedia.org/wiki/Solomon%27s_paradox
1•ike_usawa•15m ago•0 comments

An Inside Look at the UK's Largest Illegal Rave – UK TEK 2026 [video]

https://www.youtube.com/watch?v=FNnTaIHXqDs
1•mxmilkiib•17m ago•0 comments

Show HN: Axiom-02 – Deterministic engine modeling cognitive dissonance

https://github.com/Zierax/Axiom-02
1•Zierax•19m ago•0 comments

Meta tests always-on 'super sensing' mode for next Ray-Bans

https://aiweekly.co/alerts/meta-tests-always-on-super-sensing-mode-for-next-ray-bans
1•ortusdux•20m ago•0 comments

In Linux, things are often upside down

https://www.dedoimedo.com/computers/linux-upside-down.html
1•speckx•20m ago•0 comments

Ukrainian Navy Reveals Unknown Underwater Drone (UUV)

https://www.hisutton.com/Ukrainian-Navy-Underwater-Drone.html
2•EA-3167•20m ago•1 comments

Meta tests 'super sensing' AI glasses that can capture every moment

https://www.ft.com/content/ac282450-91a8-4597-8f60-9e6ef416865a
1•ortusdux•20m ago•0 comments

Show HN: MacPad – a tiny macOS Notepad.exe-style editor

https://github.com/anvilfilbert/MacPad
1•anvilfilbert•20m ago•1 comments

Dreams and Nightmares: John Berryman's fresh idiom

https://harpers.org/archive/2026/07/dreams-and-nightmares-rosanna-warren-berryman/
1•Caeiro•23m ago•0 comments

AI-Enhanced Writing

https://enocc.com/blog/2026-04-09-on-ai-enhanced-writing.html
1•nyoki•24m ago•0 comments

Cursorbench: Grok 4.5 better than GPT-5.5, at ~half the cost

https://cursor.com/cursorbench
1•j-bu•24m ago•0 comments

The Agent Operating System

https://librefang.ai/
2•chris_st•24m ago•0 comments

Flock Cameras Wrongly Tracked Me for Days over 'Stolen' Plates

https://www.thedrive.com/news/how-flock-cameras-wrongly-tracked-me-for-days-over-stolen-plates-an...
3•xup•25m ago•0 comments

Show HN: Moo, Git versions code, moo versions machines

https://github.com/heyito/moo
3•dumbfoundded•25m ago•0 comments

OpenMandriva: Statement regarding attempted distribution sabotage

https://forum.openmandriva.org/t/statement-regarding-attempted-distribution-sabotage/8997
2•workethics•26m ago•0 comments

Show HN: A YC/PG Essays Directory Roadmap

1•hamzabinmubeen•27m ago•0 comments

Show HN: Open-source GUI for editing 3D molecular structures with diffusion

https://github.com/DeepFoldProtein/patchr
2•delibae•27m 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!