I am using 'Natural Voices' TTS engine to say the address. I am using various tags to improve it. This is the best I came up with. But, I still think this can be improved. Any suggestions on what TTS engine to use and other ways to improve this.
Code: Select all
<prompt>
<foreach item="location" array="document.locations">
<break time="2s" />
<audio expr="'http://audio.plumgroup.com/root/67672832/67672832_' + loc_idx++ + '.wav'"></audio>
<prosody rate="135.0" pitch="high"><say-as type="address"><value expr="' ' + location.NAME + ', ' + location.ADDRESS1 + ', ' + location.CITY + ', ' + location.STATE" /></say-as></prosody>
</foreach>
</prompt>
-Saif