VoIP Mailing List Archives
Mailing list archives for the VoIP community |
|
View previous topic :: View next topic |
Author |
Message |
khiremandar at gmail.com Guest
|
Posted: Wed Oct 05, 2016 7:05 am Post subject: [asterisk-users] Conference Call like conference done by mob |
|
|
hi,
I trying to solve one scenario:-
As I can make call from mobile phone to my friend1. As he accept it, I put him on hold, & dial friend2.
As he also accept it, I put him on hold & follow same procedure till friend6.
The I click on 'Merge call' & I can talk to all 6 friends at a time & they can talk each other.
Can I write This scene by dialplan?How?
I used Confbridge but its different type of conference.
Need help.
Thanks.
Mandar P. Khire
+919769419340 |
|
Back to top |
|
|
cursor at telecomabmex... Guest
|
Posted: Wed Oct 05, 2016 11:06 am Post subject: [asterisk-users] Conference Call like conference done by mob |
|
|
On 10/5/16 7:04 AM, Mandar Khire wrote:
Quote: |
hi,
I trying to solve one scenario:-
As I can make call from mobile phone to my friend1. As he accept it, I put him on hold, & dial friend2.
As he also accept it, I put him on hold & follow same procedure till friend6.
The I click on 'Merge call' & I can talk to all 6 friends at a time & they can talk each other.
Can I write This scene by dialplan?How?
I used Confbridge but its different type of conference.
Need help.
Thanks.
| What you are mentioning is a function of the phone an not of Asterisk. The phone has to support all those channels and mix them locally. Most phones only do three way calling but some can do more. What is the problem with dumping everyone into a Confbridge conference room? Same result at the end.
Quote: | --
Telecomunicaciones Abiertas de México S.A. de C.V.
Carlos Chávez
+52 (55)9116-91161 |
|
|
Back to top |
|
|
andrew.ruthven at cata... Guest
|
Posted: Wed Oct 05, 2016 3:37 pm Post subject: [asterisk-users] Conference Call like conference done by mob |
|
|
On Wed, 2016-10-05 at 17:34 +0530, Mandar Khire wrote:
Quote: | hi,
I trying to solve one scenario:-
As I can make call from mobile phone to my friend1. As he accept it,
I put him on hold, & dial friend2.
As he also accept it, I put him on hold & follow same procedure till
friend6.
The I click on 'Merge call' & I can talk to all 6 friends at a time &
they can talk each other.
Can I write This scene by dialplan?How?
I used Confbridge but its different type of conference.
Need help.
Thanks.
|
Hi Mandar,
Check out the "addcaller" stuff here:
https://wiki.asterisk.org/wiki/display/AST/ConfBridge+Configuration
Essentially you'd have a dialplan where you can call another number
which is then added to the confbridge.
Cheers,
Andrew
--
Andrew Ruthven, Wellington, New Zealand
MIITP, CITPNZ
At work: andrew.ruthven@catalyst.net.nz
At home: andrew@etc.gen.nz
Card   : http://qr.catalyst.net.nz/907675e1
Cloud  : NZs only real cloud - https://catalyst.net.nz/cloud
GPG fpr: C603 FC4E 600F 1CEC D1C8Â Â D97C 4B53 D931 E4D3 E863
LCA2017: The Future of Open Source, Hobart, AU -Â http://linux.conf.au
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016
http://www.asterisk.org/community/astricon-user-conference
New to Asterisk? Start here:
https://wiki.asterisk.org/wiki/display/AST/Getting+Started
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
khiremandar at gmail.com Guest
|
Posted: Wed Oct 05, 2016 11:46 pm Post subject: [asterisk-users] Conference Call like conference done by mob |
|
|
Hi,
Thanks for reply.
For use confbridge I follows link http://www.mytechrepublic.com/?p=418
By it I manage to create Conference room & add members to it.
But each member has to dial conference Number.
In my scenario Only first person dial second person's number.
Example:-
If Person1 has 6001, Person2 6002, person3 has 6003 & so on,
Then In confbridge as per given link example Person1 dial 1030, then person2 dial 1030, then person3 dial 1030 & so on for conference call.
But In my scenario Person1 dial 6002, then make it hold, then dial 6003 & then merge call.
Is it depend on softphone functionality or we need to write something in some conf file?
Can we do it some how?
I tried it on mobile & I can make conference with 6 friends means total 7 people talk to each other without dial any conference number.
Thanks.
Mandar P. Khire
+919769419340 |
|
Back to top |
|
|
mjordan at digium.com Guest
|
Posted: Thu Oct 06, 2016 7:35 am Post subject: [asterisk-users] Conference Call like conference done by mob |
|
|
On Wed, Oct 5, 2016 at 11:46 PM, Mandar Khire <khiremandar@gmail.com> wrote:
Quote: | Hi,
Thanks for reply.
For use confbridge I follows link http://www.mytechrepublic.com/?p=418
By it I manage to create Conference room & add members to it.
But each member has to dial conference Number.
In my scenario Only first person dial second person's number.
Example:-
If Person1 has 6001, Person2 6002, person3 has 6003 & so on,
Then In confbridge as per given link example Person1 dial 1030, then person2
dial 1030, then person3 dial 1030 & so on for conference call.
But In my scenario Person1 dial 6002, then make it hold, then dial 6003 &
then merge call.
Is it depend on softphone functionality or we need to write something in
some conf file?
Can we do it some how?
I tried it on mobile & I can make conference with 6 friends means total 7
people talk to each other without dial any conference number.
|
There isn't anything in Asterisk, out of the box, that will do
*exactly* what you're describing.
You could create it, however, using ARI [1]. I'd create a special
bridge for users who dial into the system. When they're bridged with
other users, if they hit hold, I'd intercept the hold using the
HOLD_INTERCEPT [1] function, and hang up the hold initiator, keeping
the dialled party in the same bridge. When I get a new dial attempt
from the original caller, I'd put both the caller and the new callee
in the same bridge as the original callee.
This process could be repeated as many times as you want.
[1] https://wiki.asterisk.org/wiki/pages/viewpage.action?pageId=29395573
[2] https://wiki.asterisk.org/wiki/display/AST/Asterisk+13+Function_HOLD_INTERCEPT
--
Matthew Jordan
Digium, Inc. | CTO
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: http://digium.com & http://asterisk.org
--
_____________________________________________________________________
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
Join the Asterisk Community at the 13th AstriCon, September 27-29, 2016
http://www.asterisk.org/community/astricon-user-conference
New to Asterisk? Start here:
https://wiki.asterisk.org/wiki/display/AST/Getting+Started
asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users |
|
Back to top |
|
|
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|