Re: [Freeswitch-users] busy tone detection

2009-01-05 Thread Michael Jerris
On Jan 5, 2009, at 2:50 AM, Baskar wrote: Hi Michael Jerris, I have some questions can you answer me so that it will helpful to me 1)The tone detect will work only with openzap. Am i correct? No, it works anywhere to detect tones 2)To detect with IP related media gateway like audiocode

Re: [Freeswitch-users] busy tone detection

2009-01-02 Thread Baskar
*Hi Michael Jerris,* *1. When we call a busy number wont it detect busy signal?* *2. If we get the SIP response code for busy as 486 can we detect the tone?* *3. And more over in the client side only we are using softphone, the other end is connected with E1 in the audiocode, so since it seems

Re: [Freeswitch-users] busy tone detection

2009-01-02 Thread Michael Jerris
On Jan 2, 2009, at 4:17 AM, Baskar wrote: Hi Michael Jerris, 1. When we call a busy number wont it detect busy signal? not if your getting a response code and trying to detect a tone. 2. If we get the SIP response code for busy as 486 can we detect the tone? A 486 response code is not

Re: [Freeswitch-users] busy tone detection

2008-12-30 Thread Michael Jerris
Do you realize that calling a busy number and detecting a busy tone are COMPLETELY different things, your calling on sip, most likely you will not ever get a busy tone to detect but a sip response code when you try to call. Mike On Dec 30, 2008, at 1:45 AM, Baskar wrote: Hi Michael

Re: [Freeswitch-users] busy tone detection

2008-12-29 Thread Baskar
*Hi **Michael,* Step i follow for the Tone Detect process Thanks for the Reply It is useful for me On Sat, Dec 27, 2008 at 11:14 PM, Michael Jerris m...@jerris.com wrote: On Dec 27, 2008, at 5:56 AM, Baskar wrote: *Hi **Michael,* * I try to detect the tone

Re: [Freeswitch-users] busy tone detection

2008-12-29 Thread Baskar
*Hi **Michael,* *Steps I follow for the Tone Detect process* * **Step1: **From X-lite i called my no (eg: 1007==9841799874 ) **Step2: Then i run the JavaScript in that also i have given same no (9841799874) * *Step3: While i run the JavaScript i should get the busy tone detect but i cant ???*

Re: [Freeswitch-users] busy tone detection

2008-12-29 Thread Michael Jerris
I don't understand your steps. On Dec 29, 2008, at 8:04 AM, Baskar yudha2...@gmail.com wrote: Hi Michael, Steps I follow for the Tone Detect process Step1: From X-lite i called my no (eg: 1007==9841799874 ) Step2: Then i run the JavaScript in that also i have given same no (9841799874 )

Re: [Freeswitch-users] busy tone detection

2008-12-29 Thread Michael S Collins
For the sake of testing can you record a call that gets a busy signal? At least then we could analyze the audio and see what's going on. If you need a dialplan example for this let me know. -MC Sent from my iPhone On Dec 29, 2008, at 5:04 AM, Baskar yudha2...@gmail.com wrote: Hi Michael,

Re: [Freeswitch-users] busy tone detection

2008-12-29 Thread Baskar
Hi Michael Jerris, I will explain what i am currently doing :I don't understand Step 1: From the xlite phone I have dialed a number and we were on the conversation with one extension (1007 is my extension and my mobile No 9841799874) Step 2: From the freeswitch console I am executing a

Re: [Freeswitch-users] busy tone detection

2008-12-29 Thread Michael Collins
On Mon, Dec 29, 2008 at 10:45 PM, Baskar yudha2...@gmail.com wrote: Hi Michael Jerris, I will explain what i am currently doing : I don't understand Step 1: From the xlite phone I have dialed a number and we were on the conversation with one extension (1007 is my extension and my mobile No

Re: [Freeswitch-users] busy tone detection

2008-12-27 Thread Baskar
*Hi **Michael,* * I try to detect the tone before answering the call. Is there any module for tone detect to be enabled* * I have set ignore_early_media=False **(False is case sensitive?)* * But still no Tone is Detected.* *-- Warm Regards, N.Baskar *

Re: [Freeswitch-users] busy tone detection

2008-12-27 Thread Michael Jerris
On Dec 27, 2008, at 5:56 AM, Baskar wrote: Hi Michael, I try to detect the tone before answering the call. Is there any module for tone detect to be enabled I believe its in mod_dptools, if its not throwing an error that the application does not exist, then its fine.

Re: [Freeswitch-users] busy tone detection

2008-12-26 Thread Baskar
*Hi Michael, * * I have updated all the changes what u said, But still i did not get any tone detect in the script * *session1 = new Session(); session1.originate(session1, {ignore_early_media=True}sofia/default/ 39841799...@172.20.191.228); session1.execute(tone_detect, test 400 r +30 hangup

Re: [Freeswitch-users] busy tone detection

2008-12-24 Thread Baskar
*Hi, This is my JavaScript for tone detect session1 = new Session(); session1.originate(session1, {ignore_early_media=false}sofia/default/ 39841799...@172.20.191.228); session1.execute(tone_detect, test 400,25 r +1 hangup 'normal_clearing' 1); session1.execute(bridge,

Re: [Freeswitch-users] busy tone detection

2008-12-24 Thread Michael Collins
On Wed, Dec 24, 2008 at 3:23 AM, Baskar yudha2...@gmail.com wrote: *Hi, This is my JavaScript for tone detect session1 = new Session(); session1.originate(session1, {ignore_early_media=false}sofia/default/ 39841799...@172.20.191.228); session1.execute(tone_detect, test 400,25 r +1

Re: [Freeswitch-users] busy tone detection

2008-12-18 Thread Baskar
*Hi, I am using JavaScript file to detect busy tone signals but I cant able to detect the busy tone signals * *My JavaScript* * session1 = new Session(); session1.originate(session1, {ignore_early_media=true}sofia/default/ 39841799...@172.20.191.228); session1.execute(tone_detect, busy 400 r);

Re: [Freeswitch-users] busy tone detection

2008-12-18 Thread Michael S Collins
You've got ignore_early_media set to true but busy signals might be sent during early media. Why are you ignoring early media? Also, you might need to check your tone_detect syntax. You're set to detect 400Hz but you haven't told the system what to do if it does detect that tone. Please

Re: [Freeswitch-users] busy tone detection

2008-10-16 Thread Gopal krishnan
Hi, I am using event socket to originate calls. I need to originate the calls thru console and need to detect the tone. In Asterisk we used to detect thru BackgroundDetect and VMDetect. In freeswitch I found that the tones.conf which will detect the tones that we are dialing. I am not sure how

Re: [Freeswitch-users] busy tone detection

2008-10-16 Thread Gopal krishnan
Hi, Thanks for the mail. I tried in this format to detect the busy signal but I cant. I am using javascript file like, session1 = new Session(); session1.originate(session1,{ignore_early_media=true}sofia/internal/+argv[0]+,30); session1.execute(bridge, sofia/default/+argv[1]+@172.20.176.254);

Re: [Freeswitch-users] busy tone detection

2008-10-16 Thread Anthony Minessale
gotta start tone_detect right after originate and before bridge. On Thu, Oct 16, 2008 at 7:53 AM, Gopal krishnan [EMAIL PROTECTED] wrote: Hi, Thanks for the mail. I tried in this format to detect the busy signal but I cant. I am using javascript file like, session1 = new Session();

[Freeswitch-users] busy tone detection

2008-10-13 Thread Gopal krishnan
Hi, Is it possible to have busy tone detection thru console dialing? -- Thank you with regards, Gopal, ___ Freeswitch-users mailing list Freeswitch-users@lists.freeswitch.org http://lists.freeswitch.org/mailman/listinfo/freeswitch-users