frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tim Cook says he uses an iMac G4 as a monitor

https://www.theverge.com/2024/10/22/24276142/tim-cook-wsj-interview-every-apple-product-every-day
1•uneven9434•3m ago•0 comments

I made a free AUD/USD economic announcements dashboard for FOREX trading

https://fxmacrodata.com/dashboard/AUD_USD
1•roberttidball•7m ago•0 comments

Wine 10.20 – Run Windows Applications on Linux, BSD, Solaris and macOS

https://gitlab.winehq.org/wine/wine/-/releases/wine-10.20
1•neustradamus•12m ago•0 comments

Why I'm Shutting Down Lorelight (and What It Taught Me About Geo)

https://growwithless.com/shutting-down-lorelight/
1•anshulbhide•13m ago•1 comments

New record: Over 350k students in Japan miss school

https://www3.nhk.or.jp/nhkworld/en/news/20251029_15/
1•rguiscard•18m ago•0 comments

Tobacco Imagery in Movies Surged in 2024

https://truthinitiative.org/press/press-release/tobacco-imagery-movies-surged-2024-exposing-milli...
2•cyrusradfar•19m ago•0 comments

Ask HN: How do you inspect Avro/Protobuf records during debugging?

1•conqueso•20m ago•0 comments

Uncertainty Quantification for Auto Formalization [NeurIPS 2025]

https://github.com/DebarghaG/grammars-formal-uncertainty
1•barthelomew•26m ago•0 comments

Tokyo Tower of Babel

https://simple.wikipedia.org/wiki/Tokyo_Tower_of_Babel
2•xqcgrek2•26m ago•0 comments

Show HN: Free Z-Image – A Fast, High-Quality AI Image Generator for Creators

https://aiocmaker.com/z-image
2•qianjin1979•27m ago•0 comments

Shrinking Elephants: Managing large projects with Gradle

https://engineering.block.xyz/blog/shrinking-elephants
1•rileymichael•30m ago•0 comments

LLMs write code without compilers, could they do philosophy without logic?

https://lywald.github.io/blog_by_claude/turtles.html
1•ycosynot•39m ago•0 comments

AniFlow – Yet another AI anime image generator

https://animify.app
1•ashing•40m ago•0 comments

Show HN: HitCommit – Pay Devs to Solve Your GitHub Issues

https://hitcommit.com
1•nerdzoid•46m ago•0 comments

Lecture Summarization by Extracting Content from Whiteboards (2018)

https://github.com/bhargavaurala/accessmath-icfhr2018
1•downboots•53m ago•0 comments

DPRKDetector – Find North Korea-Affiliated Followers on X

https://dprkdetector.app
1•michael-bey•53m ago•0 comments

Fixing a Radare2 Bug from the Windows Cmd

https://trufae.github.io/aiblog/WinCdbNull-en.html
1•ibobev•57m ago•0 comments

Show HN: Pgm-extra-rs – High-performance learned index structures for Rust

https://github.com/itsfoxstudio/pgm-extra-rs
1•rpunkfu•57m ago•0 comments

GameShell: A game to learn how to use standard commands in a Unix shell

https://github.com/phyver/GameShell
2•ibobev•58m ago•0 comments

System 7 natively boots on the Mac mini G4

https://macos9lives.com/smforum/index.php?topic=7711.0
39•ibobev•1h ago•2 comments

Neato vacuum robots to stop working

https://support.neatorobotics.com/support/solutions/articles/204000073686-announcement-6th-oct-2025
3•simonlondon•1h ago•3 comments

Amazon unveils Starlink rival capable of up to 1 Gbps satellite internet

https://www.tomshardware.com/networking/amazon-leo-ultra-enterprise-grade-terminal-targets-up-to-...
4•thelastgallon•1h ago•1 comments

Restoring Ability Through Engineering

https://www.patreon.com/posts/143860573
1•sloped•1h ago•0 comments

Why China's Ports Empire Has the US Worried [video]

https://www.youtube.com/watch?v=NfiIXoWyOLI
1•mgh2•1h ago•0 comments

Git-embigenner: Spam empty commits

https://github.com/veqqq/git-embigenner
2•todsacerdoti•1h ago•1 comments

Familial Alzheimer's mutation: Role of SORLA in release of neurotrophic exosomes

https://alz-journals.onlinelibrary.wiley.com/doi/10.1002/alz.70591
1•bookofjoe•1h ago•0 comments

Pirate Site Operator's Appeal Goes Bad, Court Extends Prison Term by 50%

https://torrentfreak.com/pirate-site-operators-appeal-goes-bad-court-extends-prison-term-by-50-25...
5•gslin•1h ago•0 comments

Kyoto and the Stories We Still Need to Tell About Fossil Fuel Obstruction

https://blog.ucs.org/delta-merner/kyoto-and-the-stories-we-still-need-to-tell-about-fossil-fuel-o...
1•cratermoon•1h ago•0 comments

When did cats become domesticated? New DNA evidence changes the story.

https://www.nationalgeographic.com/animals/article/when-did-cats-become-domesticated
4•donsupreme•1h ago•1 comments

SpecFive Strike: compact handheld Linux workstation

https://specfive.com/products/spec5-strike
3•nateb2022•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!