frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Dawn of Gestural Computing

https://asymco.com/2026/09/14/the-dawn-of-gestural-computing/
1•tosh•26s ago•0 comments

Running a personal website is not fun anymore

https://winnielim.org/journal/running-a-personal-website-is-not-fun-anymore/
1•jyhrow•2m ago•0 comments

Unicode 18.0.0 has been released

https://www.reddit.com/r/Unicode/comments/1wifz8m/unicode_1800_has_been_released/
1•madihaa•4m ago•1 comments

Nolan Bushnell (Atari, Co-Founder) Career Interview (2006) [video]

https://www.youtube.com/watch?v=wpR9JziuCsQ
1•anotherhue•5m ago•0 comments

The DeepMind Institute

https://institute.deepmind.com/essays/introducing-the-deepmind-institute/
1•cosmoharrigan•6m ago•0 comments

Deriving neural scaling laws from the statistics of natural language

https://arxiv.org/abs/2602.07488
1•sharma-arjun•8m ago•0 comments

The LLMs Yearn for the Spines

https://buttondown.com/hillelwayne/archive/the-llms-yearn-for-the-spines/
1•BerislavLopac•13m ago•0 comments

Lattice Prompt brings AI agents into the full FPGA design flow via MCP

https://www.businesswire.com/news/home/20260916317324/en/Lattice-Advances-FPGA-Design-with-New-Le...
2•fourfire•16m ago•0 comments

Semantics for 2D Rasterization

https://arxiv.org/abs/2603.23696
1•matt_d•18m ago•0 comments

Device Bound Session Credentials in Asp.net Core

https://blog.maartenballiauw.be/posts/2026-09-16-device-bound-session-credentials-in-aspnet-core/
1•GordonS•22m ago•0 comments

Embeddable Interactive Avatars

https://www.synthesia.io/features/avatars/interactive-avatars
1•rdougl•23m ago•0 comments

The paradox of AI automation at the workplace

1•chemtrail68•23m ago•0 comments

I didn't sign the Fields medallists' letter

https://gowers.wordpress.com/2026/09/17/why-i-didnt-sign-the-fields-medallists-letter/
4•simianwords•24m ago•1 comments

Artificial Analysis Capability Indices v1.1

https://artificialanalysis.ai/articles/artificial-analysis-capability-indices-v1-1
1•wertyk•24m ago•0 comments

Show HN: AskMe – answers repetitive support questions

https://ask-me.studio/en/
1•MicheleLacorte•30m ago•0 comments

Automattic execs signed reciprocal severance deals in Mullenweg absence

https://techcrunch.com/2026/09/16/automattics-interim-ceo-and-legal-chief-signed-reciprocal-sever...
7•docdeek•31m ago•0 comments

Ask HN: How do you use AWS AssumeRole?

1•yjs88zerg•33m ago•0 comments

Reckless Expansion Plans Blow Past European Airports Carbon Limits

https://cleantechnica.com/2026/09/16/reckless-expansion-plans-blow-past-european-airports-carbon-...
1•gumby•38m ago•0 comments

What Is a Docker Container?

https://freipaul.com/posts/what-actually-is-a-docker-container
2•PHr15•39m ago•0 comments

AI Safety Is Mostly a Sex Cult

https://skywriter.blue/@segyges.bsky.social/3mvom4b4dn22q
23•Tomte•39m ago•1 comments

Stress at work linked to erectile dysfunction, even in younger men

https://www.scimex.org/newsfeed/stress-at-work-linked-to-erectile-dysfunction-even-in-younger-men
2•giuliomagnifico•47m ago•1 comments

Show HN: Airy TTS – 2K characters/second, $2 per 1M characters

https://airy.so/home
2•login588•48m ago•0 comments

Epstein had cache of child sex pics; victims sue to find out who's in them

https://arstechnica.com/tech-policy/2026/09/lawsuit-trump-doj-notified-very-few-victims-in-epstei...
4•rbanffy•48m ago•0 comments

GLM Built Its Own Inference Infrastructure

https://z.ai/blog/glm-built-its-inference-infrastructure
3•whiteros_e•49m ago•0 comments

Nobody Encrypts Container Images

https://bschaatsbergen.com/posts/nobody-encrypts-container-images/
5•bschaatsbergen•50m ago•0 comments

Jev Is the Missing Piece in Production AI Systems

https://blog.nimendra.xyz/blog/jev-decision-layer-for-production-ai/
1•nmdra•55m ago•0 comments

Release of CmdStan 2.40

https://blog.mc-stan.org/2026/09/16/release-of-cmdstan-2-40/
1•Tomte•56m ago•0 comments

Backup Exec

https://en.wikipedia.org/wiki/Backup_Exec
1•vismit2000•58m ago•0 comments

(Go) Spelunk

https://github.com/detro/spelunk
1•detronizator•59m ago•1 comments

One Year of Sponsored Servo Development

https://servo.org/blog/2026/09/15/one-year-of-sponsorship/
37•AshleysBrain•1h ago•8 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!