Skip to content

Instantly share code, notes, and snippets.

@markjenkins
Created May 13, 2015 17:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markjenkins/dc925b07af507f66614a to your computer and use it in GitHub Desktop.
Save markjenkins/dc925b07af507f66614a to your computer and use it in GitHub Desktop.
Record an mp3 stream into 2 hour blocks
#/bin/sh
while true; do \
wget -q -O - http://livehq.umfm.com/ | \
cronolog -H /home/mark/archives/current.mp3 \
-p "2 hours" '/home/mark/archives/%Y-%m-%d/%s.mp3'
sleep 1s
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment