[Subject Prev][Subject Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hts-users:00557] Re: Using HTS with festival


В Чтв, 08/03/2007 в 00:56 -0800, Manoj Bist пишет:
> Hi,
> 
> Thanks  a lot for responding.
> 
> festival works fine as long as the default voice is anything other
> than the 6 voices I have downloaded from hts.nitech website.
> 
> The following works:
> 
> festival> (voice_kal_diphone)
> kal_diphone
> festival> (intro)
> 
> The following does not work:
> 
> festival> (voice_nitech_us_slt_arctic_hts)
> nitech_us_slt_arctic_hts
> festival> (intro)
> param -r not of type float
> SIOD ERROR:
> BACKTRACE:
>    0: (HTS_Synthesize utt)
>    1: (let-internal
>     (method_val)
>     ((Parameter.get (quote Synth_Method)))
>     ...)
>    2: (let-internal
>     (type)
>     ((utt.type utt))
>     ...)
>    3: ((car hooks) obj)
>    4: (apply_hooks tts_hooks (quote #<Utterance 0xb73cfc68>))
>    5: (set!
>     utt_tts
>     (apply_hooks tts_hooks (quote #<Utterance 0xb73cfc68>)))
>    6: (intro)
> 
> In all the usages the stack trace points to HTS_Synthesize utt.
> 
> Thanks,
> 
> Manoj.

Actually it's a bug in hts voices caused by incompatibility introduced
between 1.95 and 1.96. To fix the issue you should remove quotes around
parameters in

nitech_us_awb_arctic_hts.scm


it was somehting like

>       '("-a"   "0.420000")                                                       
>        '("-r"   "0.000000")                                                       
>        '("-fs"  "1.000000")                                                       
>        '("-fm"  "0.000000")                                                       
>        '("-u"   "0.500000")                                                       
>        '("-l"   "0.000000") 

and should became 
> 
>       '("-a"   0.420000)                                                       
>        '("-r"   0.000000)                                                       
>        '("-fs"  1.000000)                                                       
>        '("-fm"  0.000000)                                                       
>        '("-u"   0.500000)                                                       
>        '("-l"   0.000000) 

festival hts voices already have this issue fixed while nitech voice is
outdated a bit

Attachment: signature.asc
Description: =?koi8-r?q?=FC=D4=C1?==?koi8-r?q?_=DE=C1=D3=D4=D8?= =?koi8-r?q?_=D3=CF=CF=C2=DD=C5=CE=C9=D1?= =?koi8-r?q?_=D0=CF=C4=D0=C9=D3=C1=CE=C1?= =?koi8-r?q?_=C3=C9=C6=D2=CF=D7=CF=CA?= =?koi8-r?q?_=D0=CF=C4=D0=C9=D3=D8=C0?=


Follow-Ups
[hts-users:00559] Re: [festival-talk] Re: Re: Using HTS with festival, Heiga ZEN (Byung Ha CHUN)
[hts-users:00560] Re: Using HTS with festival, Manoj Bist
References
[hts-users:00554] Using HTS with festival, Manoj Bist
[hts-users:00555] Re: Using HTS with festival, Heiga ZEN (Byung Ha CHUN)
[hts-users:00556] Re: Using HTS with festival, Manoj Bist