diff -r 000000000000 -r d26705c3ba8a videos/procompromtts/00-runthis.sh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/videos/procompromtts/00-runthis.sh Sun Jan 19 20:39:54 2014 +0100 @@ -0,0 +1,17 @@ +# AIFF block +say -v Daniel -o dennydude-out.aiff -f dennydude-in.txt +say -v Tessa -o callycode-out.aiff -f callycode-in.txt +say -v Serena -o annaboss-out.aiff -f annaboss-in.txt +say -v Lee -o secretary-out.aiff -f secretary-in.txt + +# Other good voices: Lee, Tom + +# WAV block +for i in `ls -1 *dennydude*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Daniel -o ../outts/$i.wav -f $i; done +for i in `ls -1 *callycode*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Tessa -o ../outts/$i.wav -f $i; done +for i in `ls -1 *annaboss*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Serena -o ../outts/$i.wav -f $i; done +for i in `ls -1 *secretar*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Lee -o ../outts/$i.wav -f $i; done +#for i in *.wav; do mv $i `echo $i | cut -d- -f1,2`-out.wav; done +#/Applications/QuickTime\ Player.app/Contents/MacOS/QuickTime\ Player *.aiff + +#for i in `ls -1 *dennydude*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Daniel -o ../outts/$i.wav -f $i; done; for i in `ls -1 *callycode*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Tessa -o ../outts/$i.wav -f $i; done; for i in `ls -1 *annaboss*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Serena -o ../outts/$i.wav -f $i; done; for i in `ls -1 *secretar*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Lee -o ../outts/$i.wav -f $i; done; (cd ../outts && for i in *.wav; do mv $i `echo $i | cut -d- -f1,2`-out.wav; done )