>>107349352
I tired anon
These don't work, at least like what I want it to?
>big TV with HTPC
>laptop with wired headset
>control HTPC from laptop with SSH
>start streaming audio only on need from HTPC to laptop
I tried using various ways and all have some latency.
The best way with 500 ms latency was using netcat to capture the audio sink and stream it as compressed format and receive it from my machine.
The problem there's no proper way to shut it down when the stream ends, and if I pause it get like extra 200 ms latency
This is what I use
nc -l -p 5000 | pw-cat --playback --rate=48000 --channels=2 - & ssh HTPC "pw-cat --record --rate=48000 --channels=2 - | nc <RECIVER-IP> 5000"