frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How to Feed America

https://www.slowboring.com/p/how-to-actually-feed-america
1•Anon84•2m ago•0 comments

Show HN: Best Black Friday Deals [Mega List]

https://www.blackfridaydeals.directory
1•bfdd•6m ago•0 comments

The Open Dictionary Project(ODict

https://www.odict.org/
1•zipping1549•12m ago•0 comments

Tell HN: It's now impossible to disable all AI features in Firefox 145 (latest)

2•pera•15m ago•0 comments

Leaves cause major problems for Tesla autopilot

https://futurezone.at/produkte/laub-blaetter-tesla-autopilot-fsd-software-vollbremsung-probleme-e...
2•doener•17m ago•0 comments

Chinese parts supplier takes stake in leading Russian drone maker

https://www.ft.com/content/e907c2fa-2d3b-4269-bc6c-b2fee4d9f688
1•perihelions•20m ago•0 comments

Teaching AI to read Xcode builds

https://tuist.dev/blog/2025/11/27/teaching-ai-to-read-xcode-builds
1•pepibumur•21m ago•0 comments

Show HN: GoScopeAI – AI-powered web scanner with Llama3 vuln analysis

https://github.com/porgnope/GoScope-AI
1•porgnope•22m ago•0 comments

Man behind in-flight Evil Twin WiFi attacks gets 7 years in prison

https://www.bleepingcomputer.com/news/security/man-behind-in-flight-evil-twin-wifi-attacks-gets-7...
2•thunderbong•23m ago•0 comments

FLUX.2

https://bfl.ai/models/flux-2
1•doener•26m ago•0 comments

Z-Image: Powerful and highly efficient image generation model with 6B parameters

https://github.com/Tongyi-MAI/Z-Image
1•doener•27m ago•0 comments

NerdPoetry – Poetry after language. Presence as form

https://www.nerdpoetry.com/
1•DrNuke•33m ago•1 comments

Go port of A Fast 64–Bit Date Algorithm, based on benjoffe.com/fast-date-64

https://github.com/xnacly/go-fast-date
1•xnacly•33m ago•0 comments

Didoo AI – Paste a URL, Get Meta Ads That Print Money While You Sleep

https://didoo.ai
1•gaiaaguldina•34m ago•1 comments

How to share directories on the phone running Android via NFS as non-root user

https://xdaforums.com/t/guide-how-to-share-directories-on-the-phone-running-android-via-nfs-as-no...
1•sipofwater•35m ago•0 comments

Brainwashing and Influence: Human Will and the Future of Ethical Persuasion [video]

https://www.youtube.com/watch?v=37kzMlm44xA
1•keepamovin•35m ago•0 comments

I built a Ruby+Python tool for Shodan camera discovery and YOLO object detection

https://github.com/sigmatsotuff33-beep/Track-em-All-
1•yesimsigma•35m ago•2 comments

Rock mistaken for gold nugget for years turned out to be 4.6B-year-old meteorite

https://techoreon.com/australia-gold-prospector-maryborough-meteorite-discovery/
1•ashishgupta2209•40m ago•0 comments

Rapunzel Syndrome

https://en.wikipedia.org/wiki/Rapunzel_syndrome
1•saikatsg•41m ago•0 comments

Uplifting a dead Land Rover Freelander with a locked auto gear box [video]

https://www.youtube.com/watch?v=8ukpVWtQBNc
1•zeristor•42m ago•2 comments

Professional platform for psychological assessment and self-discovery

https://www.9types.org/
1•causalzap•48m ago•1 comments

Show HN: XShorts – 1-Click Tool to Turn Any Tweet into a Short Video

https://xshorts.net
1•bosschow•49m ago•0 comments

Show HN: Agent Identity Protocol – Open Standard for AI Agent Signatures

https://github.com/faalantir/mcp-agent-identity
1•faalantir•52m ago•1 comments

The Future of AI- Can AI and Robotics Replace Human Experimentation in Biotech?

1•AI-Ranger•53m ago•0 comments

Elon Musk's Anti-Woke Wikipedia Is Calling Hitler "The Führer"

https://theintercept.com/2025/11/26/grok-elon-musk-grokipedia-hitler/
7•stareatgoats•54m ago•4 comments

Did Goldman Sachs Overstep in Criminally Charging Its Ex-Programmer? (2013)

https://www.vanityfair.com/news/2013/09/michael-lewis-goldman-sachs-programmer
1•pabs3•1h ago•0 comments

Beej's Guide to Learning Computer Science

https://beej.us/guide/bglcs/
2•amruthreddi•1h ago•0 comments

Show HN: Champ – The AI agent that knows everything about your competitors

https://champsignal.com/
1•maximedupre•1h ago•0 comments

Why More Users Are Choosing Dedicated VPN Servers for Security

1•emmanol•1h ago•0 comments

Ephemeral Infrastructure: Why Short-Lived Is a Good Thing

https://lukasniessen.medium.com/ephemeral-infrastructure-why-short-lived-is-a-good-thing-2cf26afd...
1•birdculture•1h 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!