try the following:nastassja wrote:*edit* finally i fixed it, it works very fine.. till i start kde (2 arts) :/ *edit*
Code: Select all
echo "Hello World" | artsdsp festival --tts -try the following:nastassja wrote:*edit* finally i fixed it, it works very fine.. till i start kde (2 arts) :/ *edit*
Code: Select all
echo "Hello World" | artsdsp festival --tts -Code: Select all
(Parameter.set 'Audio_Method 'Audio_Command)
(Parameter.set 'Audio_Command "sox -t raw -sw -r $SR $FILE -c2 -t wav - | aplay")

Do you notice any change in sound quality doing it this way?joseh wrote:Turns out you can use any capable player you want to play the speech data. Example, festival had trouble with aRts and artsdsp etc, so I did this to my ~/.festivalrc
(Parameter.set 'Audio_Command "/usr/local/bin/mplayer $FILE > /dev/null 2>&1")
(Parameter.set 'Audio_Required_Format 'wav)
(Parameter.set 'Audio_Method 'Audio_Command)
and viola, it sends the data output as wav and plays with mplayer, which I have set up to work just fine with aRts.

