Questions tagged [dtmf]

Related to transmitting or receiving Dual-Tone Multi-Frequency (DTMF) signaling, a technology used in analog telephony.

Related to transmitting or receiving Dual-Tone Multi-Frequency (DTMF) signaling, a technology used in analog telephony.

217 questions
25
votes
3 answers

Sending DTMF tones over the uplink in-call

I'm working on a project that requires my app to be able to send DTMF tones on the voice's uplink frequency during an active call. My 2 conditions are: We don't use a customized Android platform We don't need to root the phone I've spent several…
Simon McCorkindale
  • 251
  • 1
  • 3
  • 3
19
votes
0 answers

Can I setup IVR on my Android phone?

I think to make it possible I need to make the app automatically respond to the incoming calls. Is that possible at all? I want to build an android application for small business. Using this application a business owner can: setup a custom IVR…
user3471244
  • 191
  • 1
  • 3
19
votes
2 answers

What is AudioFlinger and why does it fail TONE_PROP_ACK?

In my application I issue the following statement: toneGenerator.startTone(ToneGenerator.TONE_PROP_ACK, 600); Which works very well on a cheap LG LS670 running Android 2.3.3 but doesn't sound at all on all other phones I have, ranging from Android…
Eternal Learner
  • 2,602
  • 5
  • 27
  • 38
9
votes
1 answer

Decoding DTMF from a WAV file

Following on from my earlier question, my goal is to detect DTMF tones in a WAV file from C#. However, I'm really struggling to understand how this can be done. I understand the DTMF uses a combination of frequencies, and a Goertzel algorithm can be…
KenD
  • 5,280
  • 7
  • 48
  • 85
9
votes
1 answer

Hide dtmf tone while dialing

I'm making a call app with call a number and send dtmf tone after that by String number = "tel:+1234567,890#"; Intent c1 = new Intent(android.content.Intent.ACTION_CALL, Uri.parse(number)); Currently it can dial 1234567, wait about 3 sec, then…
Hardy
  • 1,499
  • 2
  • 26
  • 39
9
votes
1 answer

Show in-call dialpad - Dial a number during call - DTMF

I want to dial a number after I have answered a call, normally done by the in-call dialpad. I tried the following, but that starts dialing a new call instead (so does ACTION_VIEW). Intent dial = new…
MaXKilleR
  • 211
  • 2
  • 8
8
votes
1 answer

SIP CSeq for INFO and INVITE methods

Consider this sample SIP dialog A-->--INVITE-->--B CSeq 101 A--<--TRYING--<--B CSeq 101 A--<--200 OK--<--B CSeq 101 A-->-- ACK -->--B CSeq 101 A-->-- INFO -->--B CSeq 2 A--<-- 500 --<--B CSeq 2 ... While working on a…
Prince Singh
  • 99
  • 1
  • 6
7
votes
2 answers

Insert keypresses into the Linux console from Python

I have recently been faced with a rather odd task, one result being the necessity for the ability to use DTMF (aka "Touch Tone") tones to control a non-X Linux computer's terminal. The computer has a modem which can be accessed through ALSA, and…
mmirate
  • 704
  • 6
  • 25
7
votes
1 answer

How to use the DTMFRecognitionEngine class in Microsoft.Speech

The Microsoft.Speech SDK has a DTMFRecognitionEngine class, which I'd like to experiment with - we need to detect DTMF tones within a WAV file (I realise there are other ways to do this, but I'm evaluating all possible methods). The documentation…
KenD
  • 5,280
  • 7
  • 48
  • 85
7
votes
1 answer

Can I send digits to an incoming twilio call with twiml?

I have a twilio number that can process incoming calls with twiml. These incoming calls expect the recipient to press some digits after the call is connected. If I were making an outgoing call, I could use the sendDigits attribute of a tag.…
hughes
  • 5,595
  • 3
  • 39
  • 55
7
votes
1 answer

Play DTMF tones in outgoing call using Twilio

In my Twilio-based application I create outgoing calls via the Twilio REST API. When the target side responds, I put him/her to the recently-created conference. How can I play a certain set of DTMF tones before putting him/her to the conference? The…
Bogdan Burym
  • 5,482
  • 2
  • 27
  • 46
7
votes
3 answers

Generate DTMF Tones

I am wondering if anyone has come across a way to generate tones in the iPhone SDK. I am trying to generate DTMF tones, and can't seem to find anything substantial out there. I want to be able to specify how long to play the tone for as well (i.e.…
Dutchie432
  • 28,798
  • 20
  • 92
  • 109
6
votes
0 answers

Android APIs to Auto answer the call and read DTMF tones

I would like to know the following whether possible with Android or not. I keep searching on line but no luck. I feel that may be possible with new versions of the Android. I want check with experts on Stackoverflow. Shall I Auto answer the call…
6
votes
1 answer

How to play DTMF tones in android via headphone programatically?

I am currently working on a car security system.... I need to produce DTMF tones via the headphones of the phone that makes an input to the external digital circuit. Is there any API to do this? Canany one helpm.... Thanks in advance...
5
votes
2 answers

Receiving DTMF in Android

Wanted to know if there is a way to decode the DTMF signals (sent from other phones) into numbers so that the number can be manipulated as required? For eg: If I am pressing 1234 from phone A during a call I should be able to get that 1234 number on…
tejasvi
  • 195
  • 1
  • 8
1
2 3
14 15