Re: [Asterisk-Users] Festival and Asterisk - different voices?

2006-02-17 Thread Philip Edelbrock


Michael Collins wrote:
Just curious to know if anyone uses Festival with * and whether or not 
you’ve got a different voice than the default.  I’m looking at doing a 
commercial application but my boss doesn’t want to shell out the $ 
before we do some real world testing of * and Festival.  Specifically, 
I’m looking for a female voice, preferably US English.




You can change the voice by editing the asterisk function.  I think you 
want 'voice_cmu_us_slt_arctic_hts':


;;; Command for Asterisk begin
(define (tts_textasterisk string mode)
(tts_textasterisk STRING MODE)
  Apply tts to STRING.  This function is specifically designed for
  use in server mode so a single function call may synthesize the string.
  This function name may be added to the server safe functions.
; different voices, uncomment the one you want:
;(voice_cmu_us_awb_arctic_hts)
;(voice_cmu_us_bdl_arctic_hts)
;(voice_cmu_us_jmk_arctic_hts)
(voice_cmu_us_slt_arctic_hts)
;uk voices
;(voice_kal_diphone)
;(voice_ked_diphone)
  (utt.send.wave.client (utt.wave.resample (utt.wave.rescale 
(utt.synth

(eval (list 'Utterance 'Text string))) 5) 8000)))
;;; Command for Asterisk end
___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Festival and Asterisk - different voices? = SOLVED!

2006-02-17 Thread Michael Collins
FYI,

I found a workaround with this.  Festival w/ [EMAIL PROTECTED] comes with 4 
voices.
Here's a snippet from the siteinit.scm file:

;(set! voice_default 'voice_cmu_us_bdl_arctic_hts)
(set! voice_default 'voice_cmu_us_slt_arctic_hts)
;(set! voice_default 'voice_cmu_us_jmk_arctic_hts)
;(set! voice_default 'voice_cmu_us_awb_arctic_hts)


The default is to have the first line uncommented and the rest commented
out.  I changed that to have the cmu_us_slt_arctic_hts voice as the
default.  Now when Asterisk (or anything else) calls festival, it uses
the female voice.  If you install or create other voices in festival
then you can specify the default voice here in siteinit.scm.

-MC

P.S. - Special thanks to Philip Edelbrock for allowing me to ask a
hundred questions about festival!
___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Festival and Asterisk - different voices?

2006-02-16 Thread Michael Collins








Just curious to know if anyone uses Festival with * and
whether or not youve got a different voice than the default. Im
looking at doing a commercial application but my boss doesnt want to
shell out the $ before we do some real world testing of * and Festival. Specifically,
Im looking for a female voice, preferably US English.



Any suggestions?



Thanks,

MC






___
--Bandwidth and Colocation provided by Easynews.com --

Asterisk-Users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users