#!/bin/bash
DIR="/home/gtoal/src/IPA"
pushd $DIR > /dev/null 2>&1
cd /tmp
rm -f fest-input.txt
touch fest-input.txt
while [ "X$1" != "X" ]; do
    echo \"$1\" >> fest-input.txt
    shift
done
festival -b ${DIR}/phonemize.scm|${DIR}/plisp|${DIR}/lexconvert.py --phones2phones  festival-cmu unicode-ipa
rm -f fest-input.txt
popd > /dev/null 2>&1
