]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
this file is not needed anymore, included in spec file for sounds
authorMichal Bielicki <michal.bielicki@seventhsignal.de>
Tue, 18 Jan 2011 12:27:57 +0000 (15:27 +0300)
committerMichal Bielicki <michal.bielicki@seventhsignal.de>
Tue, 18 Jan 2011 12:27:57 +0000 (15:27 +0300)
build/buildsounds-callie.sh [deleted file]

diff --git a/build/buildsounds-callie.sh b/build/buildsounds-callie.sh
deleted file mode 100755 (executable)
index 06099e6..0000000
+++ /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