From: Michal Bielicki Date: Tue, 18 Jan 2011 12:27:57 +0000 (+0300) Subject: this file is not needed anymore, included in spec file for sounds X-Git-Tag: v1.2-rc1~199^2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90e87a481145242bf661de4a96a7ccda1476034e;p=thirdparty%2Ffreeswitch.git this file is not needed anymore, included in spec file for sounds --- diff --git a/build/buildsounds-callie.sh b/build/buildsounds-callie.sh deleted file mode 100755 index 06099e6c5e..0000000000 --- a/build/buildsounds-callie.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -sounds_location=$1 -for rate in 32000 16000 8000 -do - for i in ascii base256 conference currency digits ivr misc phonetic-ascii time voicemail zrtp - do - mkdir -p $sounds_location/$i/$rate - for f in `find $sounds_location/$i/48000 -name \*.wav` - do - echo "generating" $sounds_location/$i/$rate/`basename $f` - sox $f -r $rate $sounds_location/$i/$rate/`basename $f` - done - done -done