60 likes | 217 Views
MeetMe Conferencing. MeetMe conferencing can be configured in two steps: Configure the meetme.conf file Call a conference from extension.conf using the MeetMe application. meetme.conf . The syntax is: Conf => conference_number [,pin] [,administrative_pin] Example:
E N D
MeetMe Conferencing MeetMe conferencing can be configured in two steps: • Configure the meetme.conf file • Call a conference from extension.conf using the MeetMe application
meetme.conf The syntax is: Conf => conference_number [,pin] [,administrative_pin] Example: Conf => 2222,1821, 191871 where 2222 is a room number 1821 is a password 19187 is an administrative password
MeetMe() Application Enter into a conference configured in meetme.conf The format is: MeetMe([cong_no][,[options][,pin]]) Conf_no is the conference number to join The options can be any of the following: m Monitor mode. Only listening, no talking t Talk mode. Only talking, no listening I Announce who is joining/leaving P A user can exit by pressing the # key E Select the first empty PIN-less conference
r Conversation will be recorded in the format ${MEETME_RECORDINGFORMAT} and saved as ${MEETME_RECORDINGFILE} C Upon entering, announce how many users are in a conference M Music-on-hold will be played when there is only one user in the conference S Enter menu(user & administrator) when the * key is pressed P Always ask for a PIN even if it is specified If a PIN argument is specified, the caller must enter that PIN in order to enter the conference
An Example [globals] CONFMAX => 10 ; maximum persons in conference exten => 8081,1,Macro(stdmeetme,8081)) [macro-stdmeetme] ; with limit to maximum number of persons in conference exten => s,1,MeetMeCount(${MACRO_EXTEN}|count) exten => s,2,Gotoif,$[${count} >= ${CONFMAX}]?103 exten => s,3,MeetMe(${MACRO_EXTEN}) exten => s,4,Goto(s|1) exten => s,103,Background(conf-full) exten => s,104,Hangup