From: Kinsey Moore Date: Tue, 5 Jul 2011 20:25:23 +0000 (+0000) Subject: Prompt conversion script X-Git-Tag: 11.0.0-beta1~1404 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84686384fcabb14775d7650472c0297b9b071e3d;p=thirdparty%2Fasterisk.git Prompt conversion script Several variables in the script control which files are converted and the source and destination formats. Patch-by: Trey Blancher (closes AST-560) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@326368 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/contrib/scripts/file.convert.sh b/contrib/scripts/file.convert.sh new file mode 100755 index 0000000000..9fc2e66eb5 --- /dev/null +++ b/contrib/scripts/file.convert.sh @@ -0,0 +1,20 @@ +#/bin/bash + +# Script written by Trey Blancher (support@digium.com) + +# This script is designed to convert all files of type $SRC to +# the $DST format, for the given $LANGUAGE. It traverses the given +# language directory (by default in /var/lib/asterisk/sounds/), and +# converts each file with filename extension $SRC, and converts them +# using Asterisk to files with type and extension $DST. + +LANGUAGE=en # change accordingly, if converting custom sounds you may want to omit this variable +SRC=gsm # change accordingly (e.g. to wav, etc.) +DST=g729 # change accordingly (e.g. to wav, etc.) +SOUNDS=/var/lib/asterisk/sounds # for custom sounds change this directory to your custom sound directory + +for file in $(find ${SOUNDS}/${LANGUAGE}/ -depth -type f -name *.${SRC}); +do + #echo $file + asterisk -rx "file convert $file $(dirname $file)/$(basename $file $SRC)$DST" +done