Skip to content

Instantly share code, notes, and snippets.

@kopiro
Created November 29, 2011 14:13
Show Gist options
  • Save kopiro/1404921 to your computer and use it in GitHub Desktop.
Save kopiro/1404921 to your computer and use it in GitHub Desktop.
Generate white noise @ UBS with SoX
## For Mac Users
cd /tmp;
curl http://garr.dl.sourceforge.net/project/sox/sox/14.3.2/sox-14.3.2-macosx.zip -o sox-14.3.2.zip;
unzip sox-14.3.2.zip;
cd sox-14.3.2;
sudo cp sox /usr/bin/sox;
sudo cp play /usr/bin/play;
## For Linux Users
sudo apt-get install sox;
## To generate the white noise
play -n synth 60:00 whitenoise;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment