Displaying 4 results from an estimated 4 matches for "dtmf_integer".
2017 Dec 06
2
Simple speech recognition for driving IVR - "press or say one".
Thanks for your responses - it looks like I have the following
options, in order of ease:
1: Modify and recompile app_record.c
Change line 471
https://github.com/asterisk/asterisk/blob/master/apps/app_record.c#L471
from
status_response = "DTMF";
to
status_response = dtmf_integer;
Pro: Free, easy
Con: Have to remember to edit module each time a new Asterisk update comes out
2: Use the Jean Aunis "mix ARI and AGI" trick.
Pro: Doesn't need recompiling on each Asterisk release.
Con: A bit of fiddling and requires an ARI library.
3: Pay $50 for uniMRCP module
P...
2018 Jan 20
2
Can anyone help with a quick app_record.c module improvement and can explain over-riding modules?
...gt; way of grabbing it after the fact.
>
> I can see in the code where the right variables are..
>
> https://github.com/asterisk/asterisk/blob/master/apps/app_record.c#L140
> dtmf_response
>
> https://github.com/asterisk/asterisk/blob/master/apps/app_record.c#L166
> * \param dtmf_integer the integer value of the DTMF key received
>
> So,3 questions I guess:
>
> 1: Am I going about this the right way? (unimrcp is not an option here)
> 2: Can someone explain in layman's terms how a simpleton like me could
> copy, hack about with and make a new module, like, for...
2018 Jan 20
2
Can anyone help with a quick app_record.c module improvement and can explain over-riding modules?
...ee in the code where the right variables are..
> >>
> >> https://github.com/asterisk/asterisk/blob/master/apps/app_record.c#L140
> >> dtmf_response
> >>
> >> https://github.com/asterisk/asterisk/blob/master/apps/app_record.c#L166
> >> * \param dtmf_integer the integer value of the DTMF key received
> >>
> >> So,3 questions I guess:
> >>
> >> 1: Am I going about this the right way? (unimrcp is not an option here)
> >> 2: Can someone explain in layman's terms how a simpleton like me could
> >>...
2017 Dec 06
3
Simple speech recognition for driving IVR - "press or say one".
Thanks Jurijs,
Yes, in fact I'm already using that, and it works fine. The problem
here is that I cannot find a way of recording speech AND listening for
a DTMF digit being pressed as an alternative.
That's where the problem lies.
J.