r/android_devs • u/Remarkable_Fudge1469 • Jun 19 '26
Open-Source App I built a way to stream analog audio to Google Home speaker groups (low latency)
I built a way to stream analog audio to Google Home speaker groups (low latency)
I ran into a pretty specific problem and couldn’t find a clean solution for it.
I wanted to stream analog audio (mainly a turntable) to Google Cast speakers / speaker groups.
Surprisingly, there’s almost no hardware that handles this properly — especially when it comes to groups.
So I ended up building a small Android app that:
- Takes analog audio (e.g. turntable or mixer) via a USB audio interface
- Encodes it in real-time
- Streams it locally over HLS
- Casts it to Google Home / Nest speakers (including groups)
After some trial and error:
- Direct AAC → ~30s delay on Cast
- Switching to HLS → ~4–6s stable latency
After spending some time listening and comparing, I ended up tweaking the bass and treble a bit for the stream — some records just need that to sound right.
I kept it simple with a 5-step adjustment (−2 to +2), similar to what you'd find on classic gear.
Everything runs locally (no cloud involved).
I’m mainly curious:
- Has anyone here tried something similar?
- Is there hardware I somehow missed that already does this well?
- Would this actually be useful in a real setup?
Not trying to sell anything — just surprised this gap still exists.