#!/bin/sh
# Basic mp3 streaming - rx side
# Lex, 26-Aug-10

# On the tx side, do something like this:
# cat 05__Girl_VII.mp3 06__Spring.mp3 | nc attraction 15151

PORT=${PORT:-15151}
VOL=${VOL:-0.5}

echo "Press Ctrl-C to exit"
while true; do
date
echo "Listening on port ${PORT}"
nc -l -p ${PORT} | sox -v${VOL} -t mp3 - \
  -t ossdsp /dev/dsp
echo "Done"
sleep 1
done
