frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: If I innovate using AI, will it share my innovation?

1•andrewstuart•13s ago•0 comments

Modern digital publishing house from Germany

https://adlerquell.de/
1•bergstreiser•1m ago•0 comments

Aviation Herald Was Sued

https://avherald.com/h?article=53c8958a
1•napsterbr•2m ago•0 comments

Finland: Google announces €13B AI, energy investment

https://www.msn.com/en-us/money/economy/finland-google-announces-13-billion-ai-energy-investment/
1•NishanStepak•3m ago•0 comments

Copernicus: August was the joint hottest month on record

https://climate.copernicus.eu/copernicus-august-was-worlds-joint-hottest-month-record-pushing-glo...
2•giuliomagnifico•4m ago•0 comments

What will our economic future look like? [pdf]

https://www-cdn.anthropic.com/files/4zrzovbb/website/cf58f84d46a4a76bf5a5b039ac695fba6b80041c.pdf
2•_____k•4m ago•0 comments

A "proof" of Fermat's Last Theorem that fits the margin

https://blog.trailofbits.com/2026/09/09/a-proof-of-fermats-last-theorem-that-fits-the-margin/
2•ColinWright•6m ago•0 comments

Line: Draw a pot profile, design a family of vessels

https://line.klet.app/about/
1•sebg•7m ago•0 comments

The Plato Mission (2025)

https://link.springer.com/article/10.1007/s10686-025-09985-9
1•joebig•7m ago•0 comments

Weekends, I Dread Them

1•midamurat•8m ago•0 comments

Show HN: Flappy Bird in Google Sheets Using Only Formulas

https://docs.google.com/spreadsheets/d/1mOuI3Jrwf08PWaYu6u-WTQlnvBNnGg73eAhePu_jxUU/edit
1•cskartikey•8m ago•0 comments

Royce on San Francisco

https://www.astralcodexten.com/p/royce-on-san-francisco
1•eatitraw•10m ago•0 comments

Show HN: Is this photo edited? Client-side image forensics

https://vajba.com/image-forensics/
1•trivsamt•14m ago•0 comments

AI can't mark its own homework

https://www.techradar.com/pro/ai-cant-mark-its-own-homework
1•ilreb•19m ago•2 comments

Rebuilding AUTOMATIC1111 with Gradio Workflow

https://huggingface.co/blog/gradio-workflow-1111
1•vertigoruntime•19m ago•0 comments

AI rent can save humanity

https://nonlineartransform.substack.com/p/how-ai-rent-can-save-humanity
2•program_whiz•20m ago•1 comments

Why and how you should run your own DNS resolver

https://www.immibis.com/blog/own-dns-resolver
2•immibis2•20m ago•0 comments

Mathematicians want proof OpenAI didn't use their work

https://www.theverge.com/ai-artificial-intelligence/993263/where-does-openai-get-mathematics-trai...
19•kevcampb•21m ago•4 comments

I Made a Real Fly Brain Play Pong. It Didn't Learn. That's the Interesting Part

https://jonatasperaza.medium.com/i-made-a-real-fly-brain-play-pong-it-didnt-learn-and-that-s-the-...
1•sebg•24m ago•0 comments

Show HN: Draw a wheel. See the road it rolls on

https://baselashraf.com/roadwright/
1•BaselAshraf81•24m ago•0 comments

A New Chess Benchmark for Language Models

https://chessbench.ai/timeline
2•soltanov•26m ago•0 comments

The iPhone Duo, the Intelligent Personal Hub, Apple Watch Audio Intelligence

https://stratechery.com/2026/the-iphone-duo-the-intelligent-personal-hub-apple-watch-audio-intell...
1•swolpers•26m ago•0 comments

A New Observable

https://observablehq.com/@observablehq/a-new-observable
1•bluemanshoe2•27m ago•0 comments

Practices I Abandoned with Agents: An Ode to Test-Driven Development

https://adamtornhill.substack.com/p/practices-i-abandoned-with-agents
2•nephrenka•29m ago•0 comments

God Help Us, Let's Try to Learn About Mechanistic Interpretability Techniques

https://www.astralcodexten.com/p/god-help-us-lets-try-to-learn-about
1•andyjohnson0•30m ago•0 comments

Arm Neoverse CSS N4 Launched for Next-Gen CPUs and DPUs – ServeTheHome

https://www.servethehome.com/arm-neoverse-css-n4-launched-for-next-gen-cpus-and-dpus/
1•rbanffy•32m ago•0 comments

What happens in practice if the P=NP problem is solved?

https://heather.cafe/posts/what-if-p-is-np-is-solved/
2•CJefferson•32m ago•0 comments

How Would AI Kill Us All? What to Know About the AI Doomsday Debate

https://www.wsj.com/tech/ai/how-would-ai-actually-kill-us-all-what-to-know-about-the-ai-doomsday-...
2•doener•32m ago•0 comments

The Dress

https://en.wikipedia.org/wiki/The_dress
4•thunderbong•33m ago•0 comments

Arista Networks Arbitrary RCE Vulnerability

https://www.arista.com/en/support/advisories-notices/security-advisory/24730-security-advisory-0174
3•joeblubaugh•34m 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!