michael@0: # AIFF block michael@0: say -v Daniel -o dennydude-out.aiff -f dennydude-in.txt michael@0: say -v Tessa -o callycode-out.aiff -f callycode-in.txt michael@0: say -v Serena -o annaboss-out.aiff -f annaboss-in.txt michael@0: say -v Lee -o secretary-out.aiff -f secretary-in.txt michael@0: michael@0: # Other good voices: Lee, Tom michael@0: michael@0: # WAV block michael@0: for i in `ls -1 *dennydude*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Daniel -o ../outts/$i.wav -f $i; done michael@0: for i in `ls -1 *callycode*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Tessa -o ../outts/$i.wav -f $i; done michael@0: for i in `ls -1 *annaboss*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Serena -o ../outts/$i.wav -f $i; done michael@0: for i in `ls -1 *secretar*`; do say --file-format=WAVE --data-format=LEI32@48000 -v Lee -o ../outts/$i.wav -f $i; done michael@0: #for i in *.wav; do mv $i `echo $i | cut -d- -f1,2`-out.wav; done michael@0: #/Applications/QuickTime\ Player.app/Contents/MacOS/QuickTime\ Player *.aiff michael@0: michael@0: #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 )