Dan Austin
2005-Apr-07 15:17 UTC
[Asterisk-Users] Using manager interface to play aanouncments in a MeetMe
I am wrapping up a PHP addon script to my scheduling framework and have it properly tracking and closing conferences. I need to play an announcement into the room that the conference will end soon. I haven't found a great way to do that. One way that I have thought of, but would like to avoid is adding a Playback command to the MeetMeAdmin commands. If anyone knowns of another way, I would be delighted. Dan
mattf
2005-Apr-07 15:31 UTC
[Asterisk-Users] Using manager interface to play aanouncments in a MeetMe
just create an extension that plays the message and hangs up and use the manager interface to drop it into the meetme room. Let me know if you would like an example and I'll whip one up. We do this kind of thing in astGUIclient to play DTMF tones automatically in meetme rooms. MATT--- -----Original Message----- From: Dan Austin [mailto:Dan_Austin@Phoenix.com] Sent: Thursday, April 07, 2005 6:17 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [Asterisk-Users] Using manager interface to play aanouncments in a MeetMe I am wrapping up a PHP addon script to my scheduling framework and have it properly tracking and closing conferences. I need to play an announcement into the room that the conference will end soon. I haven't found a great way to do that. One way that I have thought of, but would like to avoid is adding a Playback command to the MeetMeAdmin commands. If anyone knowns of another way, I would be delighted. Dan _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
trixter http://www.0xdecafbad.com
2005-Apr-07 17:31 UTC
[Asterisk-Users] Using manager interface to play aanouncments in a MeetMe
On Thu, 2005-04-07 at 15:17 -0700, Dan Austin wrote:> I am wrapping up a PHP addon script to my scheduling > framework and have it properly tracking and closing > conferences. > > I need to play an announcement into the room that the > conference will end soon. I haven't found a great way > to do that. One way that I have thought of, but would > like to avoid is adding a Playback command to the > MeetMeAdmin commands.One way that comes to mind with me is have an extension that would play a 'about to kick you off' message, then create a .call file and toss it in the outgoing queue (fairly simple text file) have that join the conference in question, anounce itself and then leave (or the extension hangs up). Should be able to do this with only a few minutes of work to create the extension in extensions.conf and a script to write to the outgoing queue directory. I have written simmilar things and if you get stuck on this method I could help you. If this is not suitable then I am afraid I cant be of much help. -- Trixter http://www.0xdecafbad.com -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: This is a digitally signed message part Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20050407/904a8f60/attachment.pgp
mattf
2005-Apr-07 18:40 UTC
[Asterisk-Users] Using manager interface to play aanouncments in a MeetMe
Hello, Here's jsut a simple manager Action to send, make sure that you have an extension set up to play the message(exten => 1234,1,Playback(file)) and that's the extension that will be called from the meetme room. Also, make sure that that extension calls in to the meetme room extension with the 'q' flag so that noone hears the welcome and leaving tone. exten => 1234,1,Answer exten => 1234,2,Playback(out_of_time) exten => 1234,3,Hangup Action: Originate Channel: Local/78600051@default Context: default Exten: 1234 Priority: 1 where 78600051 is the exten to get to your meetme room. Let me know if you have any questions, MATT--- -----Original Message----- From: Dan Austin [mailto:Dan_Austin@Phoenix.com] Sent: Thursday, April 07, 2005 7:20 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: RE: [Asterisk-Users] Using manager interface to play aanouncmentsin a MeetMe A sample would be great. I'm hoping that the Official MeetMe2 will have provisions for this, but until then I'll have a fully functional scheduler. Dan -----Original Message----- From: asterisk-users-bounces@lists.digium.com [mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of mattf Sent: Thursday, April 07, 2005 3:31 PM To: 'Asterisk Users Mailing List - Non-Commercial Discussion' Subject: RE: [Asterisk-Users] Using manager interface to play aanouncmentsin a MeetMe just create an extension that plays the message and hangs up and use the manager interface to drop it into the meetme room. Let me know if you would like an example and I'll whip one up. We do this kind of thing in astGUIclient to play DTMF tones automatically in meetme rooms. MATT--- -----Original Message----- From: Dan Austin [mailto:Dan_Austin@Phoenix.com] Sent: Thursday, April 07, 2005 6:17 PM To: Asterisk Users Mailing List - Non-Commercial Discussion Subject: [Asterisk-Users] Using manager interface to play aanouncments in a MeetMe I am wrapping up a PHP addon script to my scheduling framework and have it properly tracking and closing conferences. I need to play an announcement into the room that the conference will end soon. I haven't found a great way to do that. One way that I have thought of, but would like to avoid is adding a Playback command to the MeetMeAdmin commands. If anyone knowns of another way, I would be delighted. Dan _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users _______________________________________________ Asterisk-Users mailing list Asterisk-Users@lists.digium.com http://lists.digium.com/mailman/listinfo/asterisk-users To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users