frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Pocketlang

https://thakeenathees.github.io/pocketlang/
1•shakna•19s ago•0 comments

Garuda Indonesia> Layanan Pelanggan

1•Nhorm•1m ago•0 comments

Customer Service Garuda

1•Nhorm•3m ago•0 comments

LLM APIs Are a Synchronization Problem

https://lucumr.pocoo.org/2025/11/22/llm-apis/
1•ingve•3m ago•0 comments

Conference installed a literal antivirus monitoring system

https://www.wired.com/story/this-hacker-conference-installed-a-literal-anti-virus-monitoring-system/
1•ldoughty•5m ago•1 comments

Show HN: Lovable Clone with K8s based orchestration Demo of POC

https://github.com/adityadeshlahre/elbavol
1•adityadeshlahre•8m ago•0 comments

Minimal CLI web security scanner

https://github.com/0xdevrel/EasyScan
1•introvertmac•11m ago•0 comments

CS Batik Air

1•soldatabank2•12m ago•0 comments

Motorcycle Maintenance Tasks Riders Often Overlook (and How to Remember)

https://motormanage.app/blog/motorcycle-maintenance-tasks-riders-forget
1•l0rrenzz00•13m ago•0 comments

Kagi Hub Belgrade – coworking space for Kagi members

https://blog.kagi.com/kagi-hub
1•e-topy•16m ago•1 comments

Upcoming Dec. 23 DJI Drone Ban Will Affect ALL Product Lines–Not Just Drones

https://dronedj.com/2025/11/21/us-deadline-dji-drone-ban/
1•bookofjoe•18m ago•0 comments

Show HN: Call Scientists ICT Model Info–Consciousness–Time, Need Expert Feedback

https://www.academia.edu/s/8924eff666
1•DmitriiBaturo•19m ago•0 comments

Childhoods of Exceptional People

https://www.henrikkarlsson.xyz/p/childhoods
1•gmays•19m ago•0 comments

Cryptographers Held an Election. They Can't Decrypt the Results

https://www.nytimes.com/2025/11/21/world/cryptography-group-lost-election-results.html
2•wrayjustin•23m ago•1 comments

LinkedIn us loud, and corporate is hell

https://ramones.dev/posts/linkedin-is-loud/
1•ramon156•27m ago•0 comments

At the Boundary Between Waking Life and Sleep, What Happens in the Brain?

https://www.smithsonianmag.com/science-nature/at-the-mysterious-boundary-between-waking-life-and-...
1•mhb•31m ago•0 comments

Boston Public Library digital archive of M.C. Escher's works

https://www.digitalcommonwealth.org/search?f%5Bcollection_name_ssim%5D%5B%5D=M.%20C.%20Escher%20%...
2•mhb•32m ago•0 comments

Epstein emails show close connection with MIT's Noam Chomsky

https://www.wbur.org/news/2025/11/20/emails-epstein-mit-harvard-trump-chomsky
2•tredeske•32m ago•0 comments

Tamagotchi Sprites

https://www.spriters-resource.com/lcd_handhelds/tamagotchiconnectionversion2/
2•memalign•34m ago•0 comments

Show HN: Compare Word documents in the browser (client-side only)

https://compare2word.com/
1•nighwatch•35m ago•0 comments

Why it takes months to tell if new AI models are good

https://www.seangoedecke.com/are-new-models-good/
1•ingve•37m ago•0 comments

Why and How You Should Persist Your OpenWrt Logs?

https://blog.mohammad-abbasi.me/en/p/why-and-how-you-should-persist-your-openwrt-logs/
2•mohammadv184•38m ago•0 comments

There may be a link to ADHD and substance use among young sexual minority men

https://medicalxpress.com/news/2025-11-link-adhd-substance-young-sexual.html
2•PaulHoule•49m ago•0 comments

Arc Is a Vision Problem

https://arxiviq.substack.com/p/arc-is-a-vision-problem
1•che_shr_cat•53m ago•0 comments

You can see a working Quantum Computer in IBM's London office

https://www.ianvisits.co.uk/articles/you-can-see-a-working-quantum-computer-in-ibms-london-office...
1•thinkingemote•54m ago•0 comments

Show HN: Mamba2-Jax; Mamba2 implemented in pure Jax/Flax

https://github.com/CosmoNaught/mamba2-jax
2•cosmonaught1337•56m ago•0 comments

In What Universe Is Thinking Machines Lab Worth $50B

https://tickerfeed.net/articles/what-is-thinking-machines-lab-worth
4•sethops1•57m ago•1 comments

What you should know from a trove of ChatGPT conversations we analyzed

https://www.washingtonpost.com/technology/2025/11/18/chagpt-conversations-analysis-learnings/
1•1vuio0pswjnm7•57m ago•1 comments

Intel is listening, don't waste your shot

https://www.brendangregg.com/blog//2025-11-22/intel-is-listening.html
2•chmaynard•58m ago•0 comments

Building an AI generated animated kids yoga video for $5 in 48 hours

3•lucassmedley•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!