1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/bin/sh
#
# This test script first runs the FreeTTS with our first utterance file,
# dumps the wave in text form, and compares (diff) it with our standard
# wave form file for our first utterance (first.wave.txt). This test will
# tell you how many lines differ from the standard wave form file.
#
# (Reminder: our 'first utterance file' is "Hello world. This is Duke
# coming to you from inside the java virtual machine. I'm happy to have
# a voice because I've been meaning to tell you how much I care.")
#
REF=reference.res
REF_TMP=utterance.ref.res
NEW=utterance.res
TIME=$1
# 06:51
if [ -f utteranceTest.res ]; then
rm utteranceTest.res
fi
if [ -f utteranceTest.diff ]; then
rm utteranceTest.diff
fi
java -cp ../lib/freetts.jar com.sun.speech.freetts.FreeTTSTime \
-dumpRelations -silent -time $TIME > $NEW.t
sed < $NEW.t > $NEW s/
//g
rm -f $REF
cp $2 $REF_TMP
sh testTimeUtt
|