We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Need to slow down the confirmation number

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
msh
Posts: 9
Joined: Thu Aug 29, 2013 1:19 pm

Need to slow down the confirmation number

Post by msh »

Hi,

The plum dev voice system is reading a confirmation number too fast for some of our users. Is there a way to slow down just that particular part?

thanks,

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

Re: Need to slow down the confirmation number

Post by support »

Hi,

Yes, there is a very simple solution to change the rate of TTS.

You can use the <prosody> tag with the 'rate' attribute to change the rate in which your TTS is played.

Here is an example of slowing down the rate of TTS using this tag.

Code: Select all


<form>
  <block>
    <prompt>
      <prosody rate="-20%">This is a slow prompt.</prosody>
      <prosody rate="-50%">This is a slower prompt.</prosody>
    </prompt>
  </block>
</form>

Note that using +/- percentages as the rate will work for all TTS engines (AT&T, Cepstral, & RealSpeak). However, with the AT&T engine you can specify an integer value for the rate, 150 being the default rate of speech.

Please feel free to let us know if you have any additional questions.

Regards,
Plum Support

Post Reply