frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

1010, Falling More Slowly

https://fallingmoreslowly.substack.com/
1•jiximus•45s ago•0 comments

Neo4j Acquires GraphAware for an Intelligence Analysis Alternative to Palantir

https://www.hpcwire.com/bigdatawire/this-just-in/neo4j-acquires-graphaware-to-launch-intelligence...
1•mikepapadim•59s ago•0 comments

Why I Left Corporate Media [video]

https://www.youtube.com/watch?v=RNnwrD44Wtc
2•scns•4m ago•0 comments

Blackstone Investors Ask to Pull $4.4B from Private-Credit Fund

https://www.wsj.com/finance/investing/investors-seek-to-pull-10-from-blackstones-giant-private-cr...
1•Willingham•5m ago•0 comments

What to read to become a better writer

https://www.economist.com/the-economist-reads/2022/09/09/what-to-read-to-become-a-better-writer
1•tzury•5m ago•0 comments

Communication on European Tech Sovereignty, and an EU Open-Source Strategy

https://digital-strategy.ec.europa.eu/en/library/communication-european-tech-sovereignty-accompan...
2•jrepinc•9m ago•0 comments

Ask HN: Is the web for machines (/llm.txt) the one we wished we had as humans?

6•sunshine-o•11m ago•2 comments

I built an AI code reviewer that reads the room before commenting

https://codemouse.ai
1•pro_methe5•12m ago•0 comments

Doom on ONNX

https://huggingface.co/anthonypjshaw/doom-onnx
2•mariuz•13m ago•0 comments

Mangrove forests are healing after decades of human destruction

https://www.bbc.com/news/articles/cn4pk07npvvo
1•geox•13m ago•0 comments

AI Graduation Speech

https://www.smbc-comics.com/comic/speech
1•limbicsystem•15m ago•0 comments

A Fleet of Ghost Ships Is Hiding in Plain Sight on the Potomac River

https://www.popularmechanics.com/science/archaeology/a71445180/ghost-ships-in-potomac/
3•bookofjoe•18m ago•1 comments

Maybe All You Need Is the Friends You Made Along the Way

https://oooooooo.my/ayn.html
2•hpwfranks•19m ago•1 comments

Grok Build 0.1 on API

https://x.ai/news/grok-build-0-1
1•alefalfa•20m ago•0 comments

Ask HN: Is Azure capacity this constraind or am I doing it wrong?

2•lanycrost•20m ago•1 comments

Show HN: OnePad: Stop losing your work in a sea of browser tabs

https://onepad.io
1•bsaylan•25m ago•3 comments

Anthropic Calls for Al Pause Button to Let Humans Take Stock

https://www.bloomberg.com/news/articles/2026-06-05/anthropic-calls-for-ai-pause-button-to-let-hum...
1•leonnatus•26m ago•0 comments

Anthropic calls for global freeze in AI development

https://www.telegraph.co.uk/business/2026/06/04/worlds-most-valuable-ai-start-up-calls-for-global...
3•truegoric•32m ago•3 comments

Arithmetic Without Numbers – How LLMs Do Math

https://alvaro-videla.com/llm-arithmetic-internals/article_interactive/article.html
2•old_sound•35m ago•1 comments

Short videos may hinder learning by fragmenting attention and memory, study

https://phys.org/news/2026-06-short-videos-hinder-fragmenting-attention.html
1•pseudolus•38m ago•0 comments

The Most Predictable Edit in History

https://medium.com/@jakeorlowitz/the-most-predictable-edit-in-history-967956076b11
2•JohnHammersley•38m ago•0 comments

Protecting against HTTP/2 Bomb vulnerability (CVE-2026-49975) with HAProxy

https://www.haproxy.com/blog/haproxy-cve-2026-49975-http2-bomb
3•owenthejumper•40m ago•0 comments

Ultra fast cross-platform multiple screenshots module in pure Python

https://python-mss.readthedocs.io/stable/index.html
1•ankitg12•43m ago•0 comments

Show HN: Gaussographs – Gaussian Splat Photography

https://bayardrandel.com/gaussographs/
1•squidsoup•43m ago•0 comments

Doctors file complaint against Philip Morris over 'misleading AI tool'

https://www.dutchnews.nl/2026/06/doctors-slam-misleading-philip-morris-tobacco-campaign/
1•molf•43m ago•0 comments

Introduction to Using Control Strings

https://apps.microsoft.com/detail/9p129dd8kdmw?hl=en-US&gl=US
1•GateLink•44m ago•1 comments

Reinforcement Learning and Optimal Control Book (RIP Dimitri Bertsekas)

https://web.mit.edu/dimitrib/www/RLbook.html
2•sebzuddas•49m ago•0 comments

Chrome, Opera and Vivaldi pen open letter to Microsoft saying "enough is enough"

https://www.neowin.net/news/browser-vendors-pen-open-letter-to-microsoft-saying-enough-is-enough/
3•bundie•50m ago•0 comments

Mac OLM to PST Outlook Converter Software

https://www.perfectdatasolutions.com/en/olm/olm-to-pst-converter.html
1•tieanderson•50m ago•0 comments

Oracle files foreign-worker requests amid layoff bloodbath

https://nypost.com/2026/04/02/us-news/outrage-over-oracles-thousands-of-h-1b-requests-amid-layoffs/
2•robtherobber•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!