Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Playback in meetme (asterisk)

I would like to play an audio file to all members of a MeetMe conference, like a notification. Does anyone have any idea about how to do this?

like image 512
Anil agrahari Avatar asked Aug 11 '11 06:08

Anil agrahari


2 Answers

One easy way to do this is to have your asterisk system dial in (join) the the conference and then play the audio file then hangup.

The call file will look something like this:

Channel: Local/1000@default
Application: Playback
Data: sound_file

Just make that file with the appropriate values and the place it in the call directory. Asterisk with then make the call play back sound_file and the hangup.

like image 138
kaptk2 Avatar answered Oct 21 '22 12:10

kaptk2


You can also use the L-Option:

http://www.asterisk.org/docs/asterisk/trunk/applications/meetme

like image 33
felix Avatar answered Oct 21 '22 13:10

felix