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

Search found 3 matches

by candide
Wed Mar 08, 2006 4:33 pm
Forum: Plum DEV Q&A
Topic: SAY-AS with WAV
Replies: 1
Views: 4744

SAY-AS with WAV

How can I do say-as of numbers with real recordings? I am planning to record, "one," "two,"... "ten," "eleven," "twelve,"... "twenty," "thirty,"... "ninety," "hundred... etc so that I can have read out of "one thousand seven hundred sixty-five" for 1765, using WAV not TTS?
by candide
Tue Mar 01, 2005 7:53 pm
Forum: Plum DEV Q&A
Topic: 11# versus 111#
Replies: 2
Views: 5659

In fact, I have tried

Code: Select all

^11"#"$ 
vs.

Code: Select all

^111"#"$ 
and

Code: Select all

^11("#")$ 
vs.

Code: Select all

^111("#")$ 
which give me the same result...
by candide
Tue Mar 01, 2005 7:26 pm
Forum: Plum DEV Q&A
Topic: 11# versus 111#
Replies: 2
Views: 5659

11# versus 111#

Hello Plum, I'd like to include, say option 11# and 111# with global scope LINK. But with the following code, whenever 111# is entered, option 11# is understood instead. How should I reconstruct the grammar? Thanks! <link next="#option11"> <grammar mode="dtmf">^((11){11})["#"{}]$</grammar> </link> <...