-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
getting dtmf #93
Comments
Hi @thiva7 How would you be using that? What do you mean by displaying it? A softphone is for calling purpose, whereas dtmf is meant for an ivr system. If I guess you want to have dynamic forwarding based on user input it needs to be done at an ivr which can then appropriately forward. |
Hey thanks for you reply in call center when call come i have this "for this press 1 for other press 2" etc i want based on dtmf to show or not the caller from my app . now as it is , when i have incoming call is open same time notification window to all users . Thanks |
This is something that needs to be done in ivr/pbx. Once the call comes you can have this as handling, and based on the response you can route it to 2 different queues on which you have different set of people answering. Doing this on softphone is not even possible since it doesn't have call routing control. |
Hey thanks for reply Thanks for your time. |
Unfortunately that is not supported currently. The way to implement this would be to start a AudioMedia transmit to a listener which would continue to detect dtmf tunes, once detected it can raise those events. Have a look at how conference is implemented and you can start from there. |
Here's the link to pjsip documentation with guidance to implement inband dtmf detection https://docs.pjsip.org/en/latest/specific-guides/sip/dtmf.html#implementing-inband-dtmf-detector |
Hey , Thanks for reply i will give a try. Thank you |
Hey , i have install and running the app and is work perfect , but i would like to ask is possible to get dtmf from caller?not send but receive it so to able to show calls based on caller selection?
Thanks
The text was updated successfully, but these errors were encountered: