Created
November 29, 2011 14:13
-
-
Save kopiro/1404921 to your computer and use it in GitHub Desktop.
Generate white noise @ UBS with SoX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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