frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Snow Crystal Habits

https://www.eoas.ubc.ca/courses/atsc113/snow/met_concepts/07-met_concepts/07kl-snow-crystal-habits/
1•gsf_emergency_6•9m ago•0 comments

Developing a Giga pixel linear scanning format camera [video]

https://youtu.be/KSvjJGbFCws?si=Q1ejGM7twdU1gzUY
1•kposehn•12m ago•0 comments

Show HN: ShapeBridge – AI-Based 3D Model Processing and Analysis Framework

https://github.com/rajgandhi1/ShapeBridge
1•rajgandhi95•17m ago•0 comments

Long lost Moon-forming planet formed in the inner Solar System

https://www.euronews.com/next/2025/11/23/long-lost-moon-forming-planet-formed-in-the-inner-solar-...
2•jnord•26m ago•0 comments

Build desktop applications using Go and Web Technologies

https://github.com/wailsapp/wails
1•selvan•32m ago•0 comments

Why concerns about an AI bubble are bigger

https://www.npr.org/2025/11/23/nx-s1-5615410/ai-bubble-nvidia-openai-revenue-bust-data-centers
5•zerosizedweasle•35m ago•1 comments

Show HN: I wrote a site to aggregate Anthropic related news

https://anthropicnews.com/
3•cebert•39m ago•5 comments

Ask HN: Anyone Know Anyone at Expedia?

2•OhMeadhbh•42m ago•2 comments

Insurers retreat from AI cover as risk of multibillion-dollar claims mounts

https://www.ft.com/content/abfe9741-f438-4ed6-a673-075ec177dc62
6•gwintrob•43m ago•1 comments

Efficient solar cooking that stores heat in sand

https://www.sciencedirect.com/science/article/pii/S266711312500035X
1•gsf_emergency_6•48m ago•0 comments

Show HN: SitStand – Control your standing desk from the command line

https://gregraiz.com/blog/sitstand-bluetooth-desk-controller/
5•graiz•48m ago•0 comments

How Does Microwaving Grapes Create Plumes of Plasma?

https://www.pbs.org/wgbh/nova/article/how-does-microwaving-grapes-create-plumes-plasma/
1•wredcoll•50m ago•0 comments

Show HN: WishDrop – AI-built gift coordination app (Claude Code, Nano Banana)

https://wishdrop.io/en
1•vicdup•52m ago•0 comments

With Love to KDE: Take a Moment

https://korcenji.neocities.org/Writings/KDE-Take-A-Moment
3•todsacerdoti•53m ago•1 comments

Tired of checking AWS costs daily. Is this SaaS idea valid?

https://www.billping.com/
1•bval•1h ago•2 comments

The Hidden Job Market: How to Access the Roles No One Posts

https://medium.com/@sangram_navale/the-hidden-job-market-how-to-access-the-roles-no-one-posts-7a3...
4•sangramnavale•1h ago•0 comments

Ant Design 6.0 is released

https://github.com/ant-design/ant-design/issues/55804
1•zombiej•1h ago•0 comments

The Strange and Totally Real Plan to Blot Out the Sun and Reverse Global Warming

https://www.politico.com/news/magazine/2025/11/21/stardust-geoengineering-janos-pasztor-regulatio...
2•dsr12•1h ago•0 comments

Leading in Low-Trust Times

https://www.subbu.org/articles/2025/leading-in-low-trust-times/
4•gpi•1h ago•1 comments

Windows 95 and 98 emulator with games

https://emupedia.net/beta/emuos/
1•ericzawo•1h ago•0 comments

Overview of the Spin-Polarized-Fusion Landscape [pdf]

https://arpa-e.energy.gov/sites/default/files/2025-05/03_Sandorfi%20-%20SPF%20Overview-final.pdf
1•teleforce•1h ago•0 comments

ACLU and EFF Sue San Jose for Blanketing with Flock Surveillance Cameras

https://www.404media.co/aclu-and-eff-sue-a-city-blanketed-with-flock-surveillance-cameras/
1•JumpCrisscross•1h ago•0 comments

Spinning Fusion Fuel for Efficiency

https://www.pppl.gov/news/2024/spinning-fusion-fuel-efficiency
1•teleforce•1h ago•0 comments

The Probability Paradox: Why Actuaries Can't Price AI

https://jonathancc.substack.com/p/the-probability-paradox-why-actuaries
2•felixnga•1h ago•1 comments

Show HN: KNothing – A privacy-first, client-side developer tool station (Nuxt 3)

https://knothing.com
1•bgkkdev•1h ago•1 comments

No Longer an Amazon.com Customer

https://dan.bulwinkle.net/blog/no-longer-an-amazon-customer/
4•pilingual•1h ago•2 comments

Source of Widespread 'Forever Chemical' Contamination in N Carolina

https://pratt.duke.edu/news/uncovering-the-source-of-widespread-forever-chemical-contamination-in...
4•thunderbong•1h ago•0 comments

Marriott's Disastrous Bet on Short-Term Rental Company Sonder

https://www.wsj.com/business/hospitality/sonder-bankruptcy-marriott-partnership-d0ced515
2•JumpCrisscross•1h ago•0 comments

Micromort

https://en.wikipedia.org/wiki/Micromort
1•supermdguy•1h ago•0 comments

How many valid JSON byte sequences are there?

https://qntm.org/jsonutf
2•zdw•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!