vscripts/noisegen

11 lines
231 B
Text
Raw Normal View History

2017-04-29 20:45:09 +03:00
#!/usr/bin/env zsh
case $1 in
w) noise_type='whitenoise' ;;
b) noise_type='brownnoise' ;;
p) noise_type='pinknoise' ;;
*) printf "%s is a wrong noise type\n" $1 >&2 ; exit 1 ;;
esac
2020-02-11 14:10:03 +02:00
exec play -n synth $noise_type