How to add conference/caller and callee to meetme room

Hello there,
My .call file is working fine , I want to add my live call (caller and callee to meetme room/conference), I want to add IVR in live call. pls guide.

cat 8018.call
Channel: SIP/8018
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: chat-room1
Extension: 234

Meetme is deprecated. Use confbridge instead.

You either need AMI, which allows a two channel redirect, or two originates (or call files) to do this.Originate to both the A and B parties, and run an extension that adds them to the conference, with the appropriate settings.

For AMI, you would have to monitor the events to identify the channels and establish when both were up.

thanks for reply David
I am using Asterisk 1.8, it is old version, so give me solution as per my limitation.
pls give good solution.
thanks

Whilst it isn’t reasonable to ask for solutions for unsupported versions, I’m pretty sure that everything I assumed in my reply is valid for 1.8.

Don’t expect complete solutions, only hints on how to get there.

Hello David, My requirement is just add 195 to live call file, I reviewed/tried few but still not able to add 195 to conference call. It is working in normal way, but I need through call file.

cat 8018.call
Channel: SIP/8018
MaxRetries: 2
RetryTime: 60
WaitTime: 30
Context: chat-room1
Extension: 234

[chat-room1]
;exten => 234,1,Dial(Local/194,G(chat-room,233,1))
;exten => 234,1,ConfBridge(1234,Mcs,195)
;exten => 234,1,Originate(Local/195,exten,macro-conferences,s,3)
exten => 234,1,Originate(Local/195,app,ConfBridge(1,default_bridge,default_user))
;exten => 234,1,ConfBridge(101)
;exten => 234,n,Dial(Local/195)
;exten => 234,1,Goto(chat-room,233,1))

[chat-room]
;exten => add,1,Set(TIMEOUT(absolute)=45)
exten => 233,1,MeetMe(8600,mt,unmute)
;exten => 233,1,MeetMe({CALLER_ID},mt,unmute) ;exten => 233,1,MeetMe(194) ;exten => 233,1,Set(CONFNO={EXTEN})
;exten => 233,n,MeetMe(${CONFNO},pdMX)

;exten => 233,1,Meetme(${CALLERID(name)},mt,unmute})
;exten => 233,n,Wait(2)
;exten => 233,n,Dial(Local/195)
;exten => 233,n,Hangup()

[macro-conferences]
exten => s,1,Answer()
exten => s,2,ConfBridge(1234,fancybridge,fancyuser,fancymenu)

exten => 8901,1,NoOp(“Entering to conf room”)
exten => 8901,n,ConfBridge(1,default_bridge,default_user)

pls see/guide

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.