hello,
I am trying to increase the volume of the TTS engine
using <prosody > tag since the default volume is really low.
Even if I use loud it is not that good. It still low.
here is my code: this is part of the vxml.
dEffective is a variable.
<prompt>
<voice name="Paulina" xml:lang="es-MX">
<prosody volume="loud">
<say-as type="date"><value expr="deffective"/>.</say-as>
</prosody>
</voice>
</prompt>
Am I doing anything wrong.?
One more thing, is it possible to increase the volume in the Engine instead
of using <prosody> tag.?
Thank you,
We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics
Volume of TTS engine
IVR developers research volume of TTS engine
Hi,
We're currently looking at why implementing the IVR tag, <voice> with the IVR tag, <prosody>, is causing this IVR issue. We'll give you an update once we have found a resolution.
Regards,
Plum Support
We're currently looking at why implementing the IVR tag, <voice> with the IVR tag, <prosody>, is causing this IVR issue. We'll give you an update once we have found a resolution.
Regards,
Plum Support
Last edited by support on Wed Feb 24, 2010 3:10 pm, edited 4 times in total.
Plum Support
http://www.plumvoice.com
http://www.plumvoice.com
IVR code to use "volume" attribute for the <pro
Hi,
To use the "volume" attribute for the IVR tag, <prosody>, you would have to place the <prosody> tag inside of the IVR tag, <voice>. Please note that this implementation only applies to using Realspeak TTS voices. The following IVR code demonstrates on how you would do this:
Hope this helps.
Regards,
Plum Support
To use the "volume" attribute for the IVR tag, <prosody>, you would have to place the <prosody> tag inside of the IVR tag, <voice>. Please note that this implementation only applies to using Realspeak TTS voices. The following IVR code demonstrates on how you would do this:
Code: Select all
<?xml version="1.0"?>
<vxml version="2.0">
<form>
<block>
<prompt>
This sentence uses the default prosody settings.
<speak xml:lang="es-MX"><voice name="Paulina" gender="female">
<prosody volume="25.0">
El sistema de pago automatizado está en el desarrollo.
</prosody>
</voice></speak>
<speak xml:lang="es-MX"><voice name="Paulina" gender="female">
<prosody volume="100.0">
El sistema de pago automatizado está en el desarrollo.
</prosody>
</voice></speak>
<speak xml:lang="es-MX"><voice name="Paulina" gender="female">
<prosody volume="200.0">
El sistema de pago automatizado está en el desarrollo.
</prosody>
</voice></speak>
</prompt>
</block>
</form>
</vxml>
Regards,
Plum Support
Plum Support
http://www.plumvoice.com
http://www.plumvoice.com