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

learn more… | top users | synonyms

1
vote
0answers
58 views

Why is this code failing to detect DTMF tones properly?

I am trying to detect DTMF tones that are playing on my machine. I have the code from another person that I found on a website. I have rearranged the code based on my needs. Everything looks good but ...
0
votes
0answers
17 views

DTMF tones after call is initiated android [duplicate]

is this the correct method to send DTMF tone after inititating call. String url = "00151,24325435"; Uri uri = Uri.parse("tel:" + url); Intent intent = new ...
-1
votes
0answers
29 views

android: how to send and receive information with DTMF or a way like that? [closed]

I have an app in which i wanna send some information (for example about 200 character about once per hour) to another phone, in our local mobile network, sending this information using sms relatively ...
2
votes
0answers
53 views

identifying the DTMF tones in android

I m planning to create a centrex system app in android. In which there is a voice mail will set in the receiver side. By the instructions in the voice mail, caller has to press the number in the dial ...
0
votes
0answers
25 views

API to Silence the DTMF tones in BlackBerry

I programatically send DTMF tones after call is connected. IS there a way/ BlackBerry API to silence it(so that user is unaware of whats happpening). Can this be done on Android ?
0
votes
1answer
31 views

Asterisk Phpagi DTMF

I have been searching around but I can't seem to find the answer. I want to see if what I want to do is possible: I want to playback music on hold to my caller when my phpagi script is executed. Is ...
0
votes
3answers
52 views

entering if statements without initializing

I'm writing a C++ program library for my Arduino. The library is for a DTMF decoder. I'm having a problem when it comes to adding two detected and validated tones together in order to return the ...
-2
votes
0answers
38 views

Can I use DTMF for GSM mobile phone to collect data [closed]

Gentlemen, I'm trying to connect a GSM mobile Phone to a computer , and make a phone call , then a message will be read (sound file) asking the recipient to enter his feedback (number from 1 -9 from ...
0
votes
1answer
88 views

Listen to DTMF tones during Sip/VoIP or regular calls

i've read some articles about DTMF in Android. I guess that it's not possible to make an automatic phone call streaming a .wav file (or other format) and detect the input of the other person (receiver ...
0
votes
0answers
65 views

Append DTMF at the middle of a ongoing call after user input in iPhone

Hello I use tel protocol to launch a call with dtmf code behind, such as tel://400-800-2122,1,2,USER#,5,6,7. The USER# section indicates that the caller needs to hear a phrase from the IVR and input ...
1
vote
0answers
53 views

Want to initiate and manage a voice call from an android application

I want to initiate and manage a call from android, without any interaction with the default dialer. The call should automatically be initiated from the application, and the application should be able ...
0
votes
1answer
173 views

asterisk - get dtmf during call phpagi

I am using asterisk with phpagi - I want create a variable $pressedsomething = TRUE; if the called party pressed something while they are talking. I've been looking around and do not know where to ...
-1
votes
1answer
134 views

Android decode DTMF code coming from other phone

I want to process DTMF code produced by other phone in real time. If one phone sends #1234 using ToneGenerator I want it to decode to #1234 in receiving app. How should I go about it?
1
vote
1answer
57 views

RFC 4733 event duraton in the end bit

In reading RFC 4733, it doesn't clearly state whether the event duration should not increment in the final 3 e-bits. It seems the important information in the event is the m-bit, timestamp, and ...
0
votes
1answer
279 views

How to send a keystroke through adb during a phone call?

I would like to be able to use ADB to fully manage the process of a phonecall (primarily as I have cracked my screen and cannot see anything). I know I can initiated a phonecall through: adb shell ...
0
votes
1answer
132 views

Android virtual device does not play DTMF tones

I'm quite new to Android-development. Perhaps am I missing something very basic? I'm trying to play DTMF tones, but the emulator is silent. I have checked the emulators volume, it's enabled and set ...
1
vote
0answers
253 views

DTMF sending attempt failed by GSM mobile phone over PSTN dial tone using asterisk

I am using OpenBTS software , which is basically extends connectivity to a GSM mobile. There is asterisk 1.8 with OpenBTS software, which acts as proxy and PBX to route GSM calls to different networks ...
1
vote
2answers
309 views

Splitting a DTMF signal from a wav file using Matlab

Here is the context of the problem: I have a DTMF signal in wav format, I have to identify the number sequence it has encoded. I must do so using fast fourier transform in Matlab, implying that I read ...
1
vote
2answers
114 views

Designing an autodialer that has a one way interaction with an automated phone service

I gave searching the archives the old college try but I couldn't find anything that really answered my question so here goes. I am trying to design a simple autodialer. Perhaps there are commercial ...
0
votes
1answer
160 views

asterisk agi dial with DTMF also LIMIT

am trying to do DTMF also limiting the call duration, however, I can't get both to work, it's either one or the other in the dial command. Please help me. ...
1
vote
0answers
56 views

is pjsip_endpt_handle_events necessary for pjsip timer

i'm using pjsip 2.01 in debian linux. i'm writing small class to allow my program make calls to specific phones and play wav files. i already did that and everything works fine. but now i want to ...
2
votes
1answer
163 views

Windows Phone Phonecall with dtmf

I know using phonecalltask we can make a call programmetically by filling the phonenumber field . A sample code may be PhoneCallTask phn = new PhoneCallTask(); phn.PhoneNumber = "9807689,657"; ...
1
vote
1answer
144 views

Sending # as dtmf in android

I'm trying to make a call directly like this String url = "tel:" +"029870125,198#"; Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse(url)); but the problem is ...
0
votes
0answers
144 views

Android ToneGenerator - how to mute the tone

Look at this instance : ToneGenerator mToneGenerator = new ToneGenerator(AudioManager.STREAM_MUSIC, 0); setVolumeControlStream(AudioManager.STREAM_MUSIC); I am sending the tone through the ...
0
votes
2answers
240 views

Asterisk system ignore some DTMF digits when it called by PABX phone

I am using Asterisk E1 card on CentOS 6.2. When I call on my asterisk system using a simple pstn or by a mobile phone, the call perfectly run. But when the same number has called by a PABX phone, the ...
0
votes
1answer
485 views

asterisk dial plan working fine with DTMF tones. not working with mobile phones

asterisk server is running with chan dongle driver.DTMF tones used here to change the playing audio file. here is the extension file. exten => 123,1,Answer() exten => ...
0
votes
1answer
165 views

How to check if DTMF tones generated are correct(using an Android phone)?

I have a circuit which produces DTMF signals corresponding to 1,2,3 etc... I can see the waveforms on the CRO as well. I am also using a speaker which produces these DTMF tones corresponding to each ...
-2
votes
1answer
261 views

How to get rid of noise in a signal?

I have been trying to figure out this problem all week. My main problem is seperating the sound from the noise in the signal (see plotted example: In between these small noises are dtmf tones. ...
0
votes
1answer
151 views

Receive DTFM code in android phone?

I want to receive DTFM code in Android which is sent by the caller. Is it possible?
0
votes
1answer
585 views

Replacing default DTMF tones with cutomized tones in Android

I did alot of research regarding transfering a custom sound clip(wav,mp3 etc) to an ongoing GSM voice call in Android so that the other party can hear it but it seems it cannot be done. But when in ...
0
votes
0answers
91 views

obtain dtmf mode for # character android

I am working on android and I odn't know how to obtain the dtmf mode for : # and *. Here is my dtmf for character 7: int no = Integer.parseInt("7"); tone.startTone(no, 250); Need some help. Thank ...
0
votes
1answer
557 views

How to stream DTMF tones through my HEADPHONES?

kind of new to android. I have an app up and running, I am producing DTMF signals and interpreting what is generated with a micro controller. I am successfully generating the tones, but the tones are ...
13
votes
1answer
4k views

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 ...
0
votes
2answers
507 views

asterisk play music while waiting for DTMF

i am setting up a DISA in asterisk . what i would like to do is play a music to the caller while asterisk is receiving the DTMF. the DTMF would stop playing when it receives DTMF for "#" i have ...
0
votes
0answers
159 views

how to generate DTMF tones in j2me

I was wondering if anyone has come across a way to generate DTMF tones in J2ME. I am trying to generate DTMF tones in J2ME, and can't seem to find anything substantial out there. If anyone has any ...
0
votes
1answer
1k views

Using Reflection to access Dtmf functionalties in Android

everyone. I'm trying to access the sendDtmf method in android.internal.telephony.CallManager using Reflection to send these tones to an IVR Voice. The code is the following: import ...
0
votes
0answers
102 views

list of mobile devices/OSes that support DTMF in html URL with tel protocol

Is there a list of mobile devices/OSes that support DTMF in URLs with tel: protocol? Something like: <a href="tel:1-408-555-5555,1234">1-408-555-5555</a> I would like to provide the ...
0
votes
2answers
338 views

send DTMF tones in ongoing call

Hello I am new in android and I wanted to know that it is possible in android to send DTMF tones in ongoing call? I want to do following in android. Is it possible ? 1) call +xx xxxxxxx 2) wait to ...
0
votes
1answer
1k views

How to send DTMF tones in active call in android?

Is it possible to send DTMF tones in active call in android ? I tried it with proxyphone.sendDtmf() but it was useless. How can i achieve it ?
-2
votes
1answer
568 views

dtmf signal generation in C or C++ [closed]

I want to generate dtmf signals on the PC and send it via serial port to the microcontroller to detect them(dtmf signals). I would like to get guidance on how to write the PC code to generate the dtmf ...
0
votes
2answers
531 views

Working with DTMF tones in android

I want to do following in android. Is it possible ? 1) call +xx xxxxxxx 2) wait to the first tone to end 3) insert pass: xxxx 4) wait for the short high tone to end 5) press 1 till you hear ...
1
vote
2answers
381 views

Generation and detection of tones

I am looking for a successful method to identify self-generated sounds. My idea is to spend even two different sounds over stereo. The two tones differ in their frequency. The tones I turn then back ...
0
votes
1answer
124 views

Can anybody tell me how can I convert wav to a float array buffer

I need to be able to read a wav file and load the data into my buffer. I can use that array to convolve with other float array. How do I accomplish this?
1
vote
2answers
779 views

DTMF Goertzel Algorithm Not Working

So I am opening a .raw file of a DTMF tone I generated in audacity. I grabbed a canned goertzel algorithm similar to the one on the wikipedia article. It doesn't seem to decode the correct numbers ...
8
votes
1answer
468 views

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 ...
2
votes
1answer
289 views

How to speed up iPhone DTMF signal dialing

I am creating a dialing mobile app for iPhone using NSUrl function. The calling number consists of two parts - GSM service number and DTMF tones. For example, 810011111,46144443 . Is it any ...
1
vote
1answer
502 views

DTMF Tone Android

I have searched lot about DTMF Detection in android. But android dose not provide inbuilt API for DTMF detection. Dose anyone has idea about third party API that provide DTMF Detection facility. ...
0
votes
1answer
240 views

Detecting DTMF digits from a 3GP file

I was wondering is there any way to detect DTMF digits from a 3GP file using java.
2
votes
3answers
394 views

What is the purpose of using DTMF in sip based softphone?

DTMF is used in some sip based softphone to handle payload type. But the process and the importance of using DTMF is not clear to me. Open source softphone like Red5phone and Sipdroid uses DTMF. Would ...
1
vote
0answers
436 views

Is there any way of sending DTMF tones during a call with linphone?

I'm trying to send a sequence of DTMF tones during a SIP call from linphone, compiled for the iPhone, in order to do some call management at a local exchange I've set up. I see from the code that the ...

1 2