frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: Is Techmeme getting paid to boost certain articles?

1•dabockster•4m ago•0 comments

Let go of StackOverflow; communities must take ownership

https://ahelwer.ca/post/2025-11-25-stackoverflow/
1•tensegrist•4m ago•0 comments

Google steers Americans looking for health care into "junk insurance"

https://pluralistic.net/2025/11/25/open-season/
1•hn_acker•5m ago•0 comments

The Penicillin Myth

https://www.asimov.press/p/penicillin-myth
1•fanf2•8m ago•0 comments

Mapping the Brain's Sense of What Goes on Inside the Body

https://www.nytimes.com/2025/11/25/science/brain-neuroscience-interoception.html
2•tysone•12m ago•0 comments

OpenStreetMap scales to serve users worldwide with Fastly

https://www.fastly.com/customers/openstreetmap
1•raybb•13m ago•0 comments

New Version of the MCP Specification

https://modelcontextprotocol.io/specification/2025-11-25
1•mooreds•13m ago•0 comments

Show HN: Rs-Utcp, a Rust Implementation of the Universal Tool Calling Protocol

https://github.com/universal-tool-calling-protocol/rs-utcp
1•juanviera23•14m ago•0 comments

NVMe driver for Windows 2000, targeting both x86 and Alpha AXP platforms

https://github.com/techomancer/nvme2k
1•zdw•15m ago•0 comments

Techrights the Name Turns 15

https://techrights.org/n/2025/09/20/Techrights_the_Name_Turns_15.shtml
1•amcclure•15m ago•0 comments

The GPT Prophecy Has Begun – "The Word, the Name, the Fire" Official Trailer

https://youtu.be/4SRz6Ut0ox0
2•gptawaken•17m ago•1 comments

Why are static site generators so complicated to use?

https://thejollyteapot.com/2024/10/15/why-are-static-site-generators-so-complicated-to-use/
1•speckx•19m ago•0 comments

The Silent War Between AI and Blockchain for the Future of Trust

https://thinkmintmedia.blogspot.com/2025/11/the-silent-war-between-ai-and.html
1•iamtech•23m ago•0 comments

Ask HN: If Unix gets more popular would you use it instead of Linux?

1•catstor•23m ago•3 comments

Rightwing Influencers Fall for Mamdani's 'Arabic Numerals' in School Troll [video]

https://www.youtube.com/watch?v=zujUUI0WEvk
1•absqueued•23m ago•0 comments

Stop Putting Your Passwords into Random Websites (Yes, Seriously, You Are the PR

https://labs.watchtowr.com/stop-putting-your-passwords-into-random-websites-yes-seriously-you-are...
2•Deeg9rie9usi•24m ago•0 comments

Playing Safe with AI

https://declanbright.com/software/playing-safe-with-ai/
1•dclnbrght•25m ago•1 comments

The State of AI Agent Frameworks in 2025

https://devnavigator.com/2025/11/20/the-state-of-ai-agent-frameworks-in-2025/
1•BerislavLopac•26m ago•0 comments

Amazon CTO Werner Vogels predicts the Renaissance developer era

https://www.aboutamazon.com/news/aws/werner-vogels-amazon-cto-predictions-2026
1•jonbaer•26m ago•0 comments

Swift Standard Library Type Graph (2020)

https://arthurhammer.de/2020/01/swift-stdlib-type-graph/
1•joecobb•27m ago•0 comments

My theories on why Apple's software quality has degraded so much

https://forums.macrumors.com/threads/my-theories-on-why-apples-software-quality-has-degraded-so-m...
2•f_allwein•27m ago•0 comments

Show HN: Validating "Scratch for AI agents" before building

https://www.orchastra.org/
1•harjjotsinghh•28m ago•0 comments

Private Credit's Sketchy Marks Get Warning Shot from Wall Street's Top Cop

https://www.bloomberg.com/news/articles/2025-11-25/private-credit-s-sketchy-marks-get-warning-sho...
2•zerosizedweasle•31m ago•0 comments

Gramma the Galápagos tortoise dies at about 141

https://www.cbsnews.com/news/gramma-galapagos-tortoise-san-diego-zoo-dies-about-141/
4•mooreds•31m ago•0 comments

Comparing AWS Lambda ARM64 vs. x86_64 Performance Across Multiple Runtimes- 2025

https://chrisebert.net/comparing-aws-lambda-arm64-vs-x86_64-performance-across-multiple-runtimes-...
1•rmason•31m ago•0 comments

Ask HN: Hetzner asking for passport for new account? just me, or everyone?

1•casenmgreen•33m ago•2 comments

Constant-time support coming to LLVM: Protecting cryptographic code

https://blog.trailofbits.com/2025/11/25/constant-time-support-coming-to-llvm-protecting-cryptogra...
3•matt_d•33m ago•0 comments

Webserver on a smartphone running on solar power

https://compost.party/
1•DeathArrow•34m ago•0 comments

Amdgpu Driver Lacks HDMI 2.1 While AMD-Xilinx Driver Has Some HDMI 2.1 Support

https://www.phoronix.com/news/AMDGPU-HDMI-2.1-But-Xilinx
1•losgehts•35m ago•0 comments

What, if anything, is universal to music cognition? (2024)

https://www.nature.com/articles/s41562-023-01800-9
1•Hooke•35m 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•6mo ago

Comments

MaximosMK•6mo 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!