#! /bin/sh

# convert english text given as STDIN or command line argument
# to a pvf voice file.
#
# You will have to change this to match your setup, I use
# the `rsynth-0.9' package, with slight modifications.

AMP=2.5

say "$@" -r 9600 -L -l - | \
lintopvf | pvfcut -0.5 0 | pvfamp $AMP 
