Skip to content

Instantly share code, notes, and snippets.

View justinatcamfil's full-sized avatar

Justin Parker justinatcamfil

View GitHub Profile
@justinatcamfil
justinatcamfil / play_stream
Last active May 5, 2023 08:17
stream linux audio from sound card through netcat
#!/bin/bash
# run on mac in terminal
while TRUE; do
nc <server_address> 15000 | play -q -t mp3 - || echo Attempting to connect...
sleep 1;
done