frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Improving our alignment and security efforts

https://www.anthropic.com/news/improving-alignment-security-efforts
1•reasonableklout•2m ago•0 comments

Show HN: Secure agentic email infrastructure with beta desktop client

https://github.com/adecubed/gigamail
1•Adecubed•7m ago•0 comments

OpenAI delayed its new model's development after the Hugging Face hack

https://www.theverge.com/ai-artificial-intelligence/987695/openai-astra-unreleased-model-cybersec...
3•sbulaev•8m ago•0 comments

Rust Function Overloading – Call for Experimentation

https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/
1•birdculture•14m ago•0 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
1•sohkamyung•20m ago•0 comments

Open Source Access Control Management Application

https://github.com/Simkura-tech/loudin
1•jackmerrifield2•21m ago•1 comments

World's biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
2•zzzeek•21m ago•0 comments

Claude Preserved thinking – Modifying a conversation now results in an error

https://platform.claude.com/docs/en/build-with-claude/preserved-thinking
2•sippeangelo•25m ago•0 comments

Don't allow Gemini AI access to your Gmail

https://tuta.com/blog/google-gemini-ai-email
4•bwidlar•26m ago•0 comments

AI Coding Agent Skills for Real Engineers

https://github.com/mattpocock/skills
2•gurjeet•26m ago•0 comments

Copilot code review can now approve pull requests

https://github.blog/changelog/2026-09-01-copilot-code-review-can-now-approve-pull-requests/
1•fourfire•26m ago•0 comments

The Future Is Not Tech-Forward

https://www.thetechbubble.info/p/the-future-is-not-tech-forward
1•doener•28m ago•0 comments

What's within a 10-minute walk in 50 European cities

https://strado.info/
3•bookofjoe•29m ago•0 comments

Library of ODE Solvers

https://solvers.milanrother.com/
1•skywalqer•29m ago•0 comments

How to Build a Notion AI Chatbot for Your Help Center

https://quickchat.ai/post/notion-ai-chatbot-help-center
1•piotrgrudzien•30m ago•0 comments

TikTok CEO says over two dozen Jewish organizations are telling them who to ban

https://twitter.com/MaryBowdenMD/status/2094500265206407223
12•slowin•32m ago•3 comments

Dyson Made a Camera-Equipped Toothbrush That Flosses for You

https://www.theverge.com/tech/986737/dyson-camerajet-smart-toothbrush-live-camera-flosser-pricing...
2•airhangerf15•35m ago•0 comments

Inception: Mercury 2.5 Preview on OpenRouter

https://openrouter.ai/inception/mercury-2.5-preview
1•Topfi•37m ago•1 comments

Moe expert offloading on a 2-core Celeron with 2.7GB RAM

https://github.com/dhishwasher/moe-offload-bench
2•fukoffandie•37m ago•0 comments

ChatBlackGPT

https://chatblackgpt.com/
1•rmason•38m ago•1 comments

I Want a Wife (1971) [pdf]

https://www.sevanoland.com/uploads/1/1/8/0/118081022/_brady_i_want_a_wife.pdf
2•NaOH•40m ago•0 comments

Decompiler Explorer

https://dogbolt.org
3•tripdout•41m ago•0 comments

Beneath the Bottleneck: An R&D and Technology Review of Lithium and Rare Earths

https://dukespace.lib.duke.edu/bitstreams/909c3952-6af4-48dd-a4d0-9baf0b16880c/download
3•Eridanus2•42m ago•0 comments

Rootkit Evading Elastic Defend Module Load Detection

https://matheuzsecurity.github.io/hacking/elastic-trusted-pid-bypass/
1•matheuzsec_•43m ago•0 comments

My local model setup on an M4 Pro Mac Mini

https://lws.io/blog/my-local-model-setup/
4•raybb•44m ago•0 comments

MapQuest is No. 1 on the App Store after refusing to change Lake Ontario's name

https://www.cnn.com/2026/09/01/business/mapquest-number-one-app-refusal-lake-america
5•dnemmers•44m ago•0 comments

Welcome to the Old Internet Again

https://theoldnet.com/
4•jruohonen•47m ago•0 comments

GitHub Down Again?

1•yodon•49m ago•1 comments

Show HN: TinyJS – small apps on Win/Mac/Linux

https://tinyjs.app
2•tarwin•50m ago•1 comments

Dropbox Security Breach: Hackers Access Accounts Through Authentication Flaw

https://decrypt.co/377099/dropbox-security-breach
3•rkagerer•52m ago•2 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!