Mercurial > hg > aimc
view trunk/experiments/scripts/cnbh-syllables/feature_generation/pink_noise.sh @ 706:f8e90b5d85fd tip
Delete CARFAC code from this repository.
It has been moved to https://github.com/google/carfac
Please email me with your github username to get access.
I've also created a new mailing list to discuss CARFAC development:
https://groups.google.com/forum/#!forum/carfac-dev
author | ronw@google.com |
---|---|
date | Thu, 18 Jul 2013 20:56:51 +0000 |
parents | 839a370eb554 |
children |
line wrap: on
line source
#!/bin/bash # Copyright 2009-2010 Thomas Walters <tom@acousticscale.org> # # Add pink noise to the CNBH syllables database. The first argument is the # path to the clean .wav files. The second argument is a quoted list of the # desired SNRs in dB, separated by spaces. Directories are made for each SNR # in the directory above that given in the first argument. set -e set -u CLEAN_SYLLABLES_DATABASE_PATH=$1 SIGNAL_TO_NOISE_RATIOS=$2 # The syllables database is approximately at -9dB re. the max RMS level for a # .wav file. REFERENCE_SIGNAL_LEVEL="-9" SAMPLE_RATE=48000 PREV_DIR=`pwd` cd $CLEAN_SYLLABLES_DATABASE_PATH for SNR in ${SIGNAL_TO_NOISE_RATIOS}; do echo "Generating noisy data for SNR ${SNR}dB" if [ ! -e ../snr_${SNR}dB/.pink_noise_success ] then mkdir -p ../snr_${SNR}dB/ VOWELS="a e i o u" CONSONANTS="b d f g h k l m n p r s t v w x y z" for v in $VOWELS; do mkdir ../snr_${SNR}dB/$v$v for c in $CONSONANTS; do mkdir ../snr_${SNR}dB/$c$v mkdir ../snr_${SNR}dB/$v$c done done NOISE_LEVEL=$(( $REFERENCE_SIGNAL_LEVEL - $SNR )) for file in `find . -iname "*.wav"`; do # Note: the 0.684 below is the length of each syllable in the database # in seconds sox -r ${SAMPLE_RATE} -b 16 -n -t s2 - synth 0.684 pinknoise vol ${NOISE_LEVEL} dB | sox -m -v 0.25 $file -t s2 -r ${SAMPLE_RATE} -c 1 - ../snr_${SNR}dB/${file} done touch ../snr_${SNR}dB/.pink_noise_success fi done cd $PREV_DIR