--- voice.pl 2007-11-27 14:51:18.000000000 +0100 +++ voice.pl.new 2008-02-04 09:31:35.000000000 +0100 @@ -257,6 +257,16 @@ print("> $cmd\n") if $verbose; `$cmd`; } + case "ttsynth_say" { + $cmd = "ttsynth_say $tts_engine_opts -f \"$output\" \"$string\""; + print("> $cmd\n") if $verbose; + `$cmd`; + } + case "loquendo-text2file" { + $cmd = "loquendo-text2file $tts_engine_opts $output \"$string\""; + print("> $cmd\n") if $verbose; + `$cmd`; + } case "espeak" { # xxx: $tts_engine_opts isn't used $cmd = "espeak $tts_engine_opts -w \"$output\"";