Displaying 3 results from an estimated 3 matches for "swift_dtmf".
2010 Jan 10
2
app_swift 1.6.2 DTMF issue
With app_swift 1.6.2 + asterisk 1.6.1.12, I've found that if you
enter DTMF during cepstral playback, the first digit of ${SWIFT_DTMF}
is [un]set in an odd way.
for example consider:
999,1,Swift(some long message that you dont want to wait for|5000|5)
999,n,NoOp(DTMF: ${SWIFT_DTMF})
if while I am listening to the playback, i interrupt and dial:
- "12345", SWIFT_DTMF is set to "52345"
- "12346",...
2009 Aug 26
0
Swift application and DTMF
Hello users,
i have successfully installed the cepstral voice and in the text only mode
its working fine
when i swift applicaiton in dtmf mode like
exten =>111,1,Swift(hello user| 5000|1)
exten =>111,n,NoOp(dtmf is ${SWIFT_DTMF})
exten => 111,n,Hangup()
case1:
when i am listening to the hello user prompt if i press any key
1,2,3,4,5,6,7,8,9,0,*,#
i am getting the ${SWIFT_DTMF } value as
1xxxxxx <-- if i press 1
2xxxxxx <-- if i press 2
and this is the same for all other digits including 0,#,* keys
and the pro...
2009 Feb 17
0
Swift - detection of multiple digits unreliable on my system
...t; before the prompt completes,
saydigits says "612" every time.
context swiftTest {
s => {
answer;
wait(1);
swift("This is a test of Swift. Please enter your five
digit zip code.",10000,5);
saydigits(${SWIFT_DTMF});
hangup;
};
};
Does this sound familiar to anyone? I am open to the possibility of
using swift -o to generate to a WAV file, then using that file with
read(), but I would like to avoid the delays and additional complexity
associated with that technique, if possible....