Last active
February 27, 2025 19:25
-
-
Save kristopherjohnson/9f7e3fe61e595ad7cedc to your computer and use it in GitHub Desktop.
Generate Brown Noise, White Noise, or Pink Noise using SoX (http://sox.sourceforge.net)
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
# Requires SoX | |
# | |
# On OS X, using Homebrew: brew install sox | |
alias brownnoise='play -c 2 -n synth brownnoise' | |
alias whitenoise='play -c 2 -n synth whitenoise' | |
alias pinknoise='play -c 2 -n synth pinknoise' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
🥇