#!/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.

BINDIR=/usr/bin

AMP=2.5

PATH=/bin:/usr/bin:/usr/local/bin:$BINDIR

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