Displaying 1 result from an estimated 1 matches for "astdir".
Did you mean:
as_dir
2006 May 16
0
Re: [Astlinux-users] British English Female files ready for download
...e Alison Keenan Asterisk
# files supplied in 44100 samples/second to 8000 samples
# second so they work with Asterisk
#
# Put this script where you unpacked the tarball and
# execute it - the converted files will be in a subdirectory
# as specified by OUTDIR (below)
#
OUTDIR="./converted"
ASTDIR="/var/lib/sounds"
# make the directories
mkdir -p $OUTDIR/digits $OUTDIR/letters $OUTDIR/phonetic $OUTDIR/dictate
# locate the files and push them through 'sox'
find . -name "*.wav" -exec sox {} -r 8000 $OUTDIR/{} \;
# copy them into asterisk
#cp -arv $OUTDIR $ASTDIR...