Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 449 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 449 Bytes

Network radio application written in C++ to learn low level networking programming.

Compile:

make

Start sender:

sox -S "music.flac" -r 44100 -b 16 -e signed-integer -c 2 -t raw - | pv -q -L $((44100*4)) | ./radio-sender -a 239.10.11.12 -n "My radio"

Start receiver:

./radio-receiver | play -t raw -c 2 -r 44100 -b 16 -e signed-integer --buffer 16384 -

Connect to receiver ui interface:

telnet localhost 10000