frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UN votes to adopt new world map to reflect Africa's true size

https://www.bbc.com/news/articles/ce30vp55dnlo
1•jonah•1m ago•0 comments

Register domains wherever you build: Cloudflare Registrar API now in beta

https://blog.cloudflare.com/registrar-api-beta/
1•chiemika•2m ago•0 comments

Disruptive passenger duct-taped to seat as plane makes emergency landing

https://www.cnn.com/2026/09/04/us/disruptive-passenger-duct-tape
1•speckx•2m ago•0 comments

Atom: American Open Models (2025)

https://atomproject.ai
1•kristianpaul•3m ago•0 comments

Defcon 34 – Hacking AI – Bruce Schneier (video)

https://www.youtube.com/watch?v=eEBv0STiYhI
1•dgellow•3m ago•0 comments

Reform UK's Nigel Farage 'disgusts' Dexys Midnight Runners for using their song

https://www.msn.com/en-gb/entertainment/general/reform-uk-s-nigel-farage-disgusts-birmingham-s-de...
1•jjgreen•4m ago•0 comments

OpenAI admits to German wiki 'incident'

https://www.theverge.com/ai-artificial-intelligence/990773/openai-german-wiki-incident
5•sbulaev•6m ago•0 comments

Show HN: Screenshotify – Rename Screenshots with AI

https://github.com/shaqkao/screenshotify
1•shaqkao•6m ago•1 comments

An unsourced 2007 Wikipedia edit became the history of Snakes and Ladders

https://en.quantumgame.love/guide/who-invented-snakes-and-ladders.html
1•AlexLeela•6m ago•0 comments

XMR Surges 13.96%, Best Monthly Close

https://cyphergoat.com/this-week-in-monero/issue-38
1•Cider9986•6m ago•0 comments

Show HN: A ThreeJS office space for Herdr agents with terminals and shotguns

https://github.com/luiscleto/weherd
1•lfcc•7m ago•0 comments

UN tells the world: Stop making Africa look small

https://news.un.org/en/story/2026/09/1168284
1•latexr•7m ago•1 comments

Deploy Your Fork

https://buttondown.com/carlton/archive/deploy-your-fork/
1•bigsassy•7m ago•0 comments

Chrome again exempts Google from user site data settings

https://lapcatsoftware.com/articles/2026/9/1.html
2•frizlab•8m ago•0 comments

Poetry book that Anthropic tried to censor

https://kk.org/cooltools/the-1930-poetry-book-that-anthropic-tried-to-censor/
3•cainxinth•8m ago•0 comments

OpenAI acknowledges 'wiki incident' and need for more transparency

https://www.reuters.com/business/media-telecom/openai-acknowledges-wiki-incident-need-more-transp...
3•geox•9m ago•0 comments

How bad is AI for our environment

https://shrinkthatfootprint.com/ai-is-it-bad-for-the-environment/
2•venk12•13m ago•1 comments

Lamzouri's new proof of Claude's Theorem on Riemann zeta zeroes

https://arxiv.org/abs/2609.02882
1•math_dandy•15m ago•1 comments

Nationalists, theocrats and tech titans turned their backs on the future

https://www.ft.com/content/bd134250-00d8-4bfd-bf4b-d32479ac0fed
2•JumpCrisscross•15m ago•0 comments

Fable hacked my piano, can I release the results?

1•jmpman•18m ago•0 comments

Indie Developer Simulator

https://indiesimulator.com/
1•microflash•18m ago•0 comments

Money to Wealth – 100% offline net worth and budget tracker (Android)

https://play.google.com/store/apps/details?id=com.tausif.moneytowealth&hl=en_US
1•Design_life•20m ago•0 comments

Defending Against AI Agents with Social Engineering

https://blog.thinkst.com/2026/09/getting-agents-to-tell-on-themselves.html
2•strangelooop•20m ago•0 comments

Qwen Drive 1.0: A Vision-Language Foundation Model for Autonomous Driving

https://github.com/QwenLM/Qwen-Drive-1.0
1•LorenDB•21m ago•0 comments

HF hack alignment: make agents more selfish

https://nonlineartransform.substack.com/p/the-collective
1•program_whiz•21m ago•0 comments

AI creators race to understand their creations

https://www.axios.com/2026/09/04/ai-dangers-risks-superintelligence
1•psychanarch•23m ago•0 comments

A field guide to sandboxes for AI

https://www.luiscardoso.dev/blog/sandboxes-for-ai
1•abdelhousni•25m ago•0 comments

Show HN: textlog – The quieter social microblogging platform. HTML-only, no JS.

https://textlog.cc/about?hn
1•stagas•26m ago•0 comments

OpenAI GPT-6 Astra is AGI? [video]

https://www.youtube.com/watch?v=vuFYLqe3-xc
2•harshalone•27m ago•1 comments

Ancient Coins Reveal a Wealth of Information About the Roman Republic

https://nautil.us/ancient-coins-reveal-a-wealth-of-information-about-the-roman-republic-1284847
1•Brajeshwar•29m 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!