#! /bin/sh rmdfile=${1:?[no_rmdfile]} [ -f $rmdfile ] || ( echo File $rmdfile not found; exit 1 ) filedate=`stat $rmdfile | grep -e '^Modify:' | cut -c9-27,38-` date=${2:-$filedate} caller=${3:-caller_not_specified} OUT=~/message.ogg rmdtopvf $rmdfile | pvftowav | oggenc -d "$date" -t "$date" -a "$caller" -c "rmd=$rmdfile" -o $OUT -q4 --resample 22050 -Q - vgain=/usr/bin/vorbisgain if [ -x $vgain ]; then $vgain -q -s $OUT fi