confbridge.conf.sample 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. [general]
  2. ; The general section of this config
  3. ; is not currently used, but reserved
  4. ; for future use.
  5. ;
  6. ; --- Default Information ---
  7. ; The default_user and default_bridge sections are applied
  8. ; automatically to all ConfBridge instances invoked without
  9. ; a user, or bridge argument. No menu is applied by default.
  10. ;
  11. ; Note that while properties of the default_user or default_bridge
  12. ; profile can be overridden, if removed, they will be automatically
  13. ; added and made available to the dialplan upon module load.
  14. ;
  15. ; --- ConfBridge User Profile Options ---
  16. [default_user]
  17. type=user
  18. ;admin=yes ; Sets if the user is an admin or not. Off by default.
  19. ;marked=yes ; Sets if this is a marked user or not. Off by default.
  20. ;startmuted=yes; Sets if all users should start out muted. Off by default
  21. ;music_on_hold_when_empty=yes ; Sets whether MOH should be played when only
  22. ; one person is in the conference or when the
  23. ; the user is waiting on a marked user to enter
  24. ; the conference. Off by default.
  25. ;music_on_hold_class=default ; The MOH class to use for this user.
  26. ;quiet=yes ; When enabled enter/leave prompts and user intros are not played.
  27. ; There are some prompts, such as the prompt to enter a PIN number,
  28. ; that must be played regardless of what this option is set to.
  29. ; Off by default
  30. ;announce_user_count=yes ; Sets if the number of users should be announced to the
  31. ; caller. Off by default.
  32. ;announce_user_count_all=yes ; Sets if the number of users should be announced to
  33. ; all the other users in the conference when someone joins.
  34. ; This option can be either set to 'yes' or a number.
  35. ; When set to a number, the announcement will only occur
  36. ; once the user count is above the specified number.
  37. ;announce_only_user=yes ; Sets if the only user announcement should be played
  38. ; when a channel enters a empty conference. On by default.
  39. ;wait_marked=yes ; Sets if the user must wait for a marked user to enter before
  40. ; joining the conference. Off by default.
  41. ;end_marked=yes ; This option will kick every user with this option set in their
  42. ; user profile after the last Marked user exists the conference.
  43. ;dsp_drop_silence=yes ; This option drops what Asterisk detects as silence from
  44. ; entering into the bridge. Enabling this option will drastically
  45. ; improve performance and help remove the buildup of background
  46. ; noise from the conference. Highly recommended for large conferences
  47. ; due to its performance enhancements.
  48. ;dsp_talking_threshold=128 ; Average magnitude threshold to determine talking.
  49. ;
  50. ; The minimum average magnitude per sample in a frame for the
  51. ; DSP to consider talking/noise present. A value below this
  52. ; level is considered silence. This value affects several
  53. ; operations and should not be changed unless the impact on
  54. ; call quality is fully understood.
  55. ;
  56. ; What this value affects internally:
  57. ;
  58. ; 1. Audio is only mixed out of a user's incoming audio
  59. ; stream if talking is detected. If this value is set too
  60. ; high the user will hear himself talking.
  61. ;
  62. ; 2. When talk detection AMI events are enabled, this value
  63. ; determines when talking has begun which results in an
  64. ; AMI event to fire. If this value is set too low AMI
  65. ; events may be falsely triggered by variants in room
  66. ; noise.
  67. ;
  68. ; 3. The 'drop_silence' option depends on this value to
  69. ; determine when the user's audio should be mixed into the
  70. ; bridge after periods of silence. If this value is too
  71. ; high the user's speech will get discarded as they will
  72. ; be considered silent.
  73. ;
  74. ; Valid values are 1 through 2^15.
  75. ; By default this value is 160.
  76. ;dsp_silence_threshold=2000 ; The number of milliseconds of silence necessary to declare
  77. ; talking stopped.
  78. ;
  79. ; The time in milliseconds of sound falling below the
  80. ; 'dsp_talking_threshold' option when a user is considered to
  81. ; stop talking. This value affects several operations and
  82. ; should not be changed unless the impact on call quality is
  83. ; fully understood.
  84. ;
  85. ; What this value affects internally:
  86. ;
  87. ; 1. When talk detection AMI events are enabled, this value
  88. ; determines when the user has stopped talking after a
  89. ; period of talking. If this value is set too low AMI
  90. ; events indicating the user has stopped talking may get
  91. ; falsely sent out when the user briefly pauses during mid
  92. ; sentence.
  93. ;
  94. ; 2. The 'drop_silence' option depends on this value to
  95. ; determine when the user's audio should begin to be
  96. ; dropped from the conference bridge after the user stops
  97. ; talking. If this value is set too low the user's audio
  98. ; stream may sound choppy to the other participants. This
  99. ; is caused by the user transitioning constantly from
  100. ; silence to talking during mid sentence.
  101. ;
  102. ; The best way to approach this option is to set it slightly
  103. ; above the maximum amount of milliseconds of silence a user
  104. ; may generate during natural speech.
  105. ;
  106. ; Valid values are 1 through 2^31.
  107. ; By default this value is 2500ms.
  108. ;talk_detection_events=yes ; This option sets whether or not notifications of when a user
  109. ; begins and ends talking should be sent out as events over AMI.
  110. ; By default this option is off.
  111. ;denoise=yes ; Sets whether or not a denoise filter should be applied
  112. ; to the audio before mixing or not. Off by default. Requires
  113. ; func_speex to be built and installed. Do not confuse this option
  114. ; with drop_silence. Denoise is useful if there is a lot of background
  115. ; noise for a user as it attempts to remove the noise while preserving
  116. ; the speech. This option does NOT remove silence from being mixed into
  117. ; the conference and does come at the cost of a slight performance hit.
  118. ;jitterbuffer=yes ; Enabling this option places a jitterbuffer on the user's audio stream
  119. ; before audio mixing is performed. This is highly recommended but will
  120. ; add a slight delay to the audio. This option is using the JITTERBUFFER
  121. ; dialplan function's default adaptive jitterbuffer. For a more fine tuned
  122. ; jitterbuffer, disable this option and use the JITTERBUFFER dialplan function
  123. ; on the user before entering the ConfBridge application.
  124. ;pin=1234 ; Sets if this user must enter a PIN number before entering
  125. ; the conference. The PIN will be prompted for.
  126. ;announce_join_leave=yes ; When enabled, this option will prompt the user for a
  127. ; name when entering the conference. After the name is
  128. ; recorded, it will be played as the user enters and exists
  129. ; the conference. This option is off by default.
  130. ;announce_join_leave_review=yes ; When enabled, implies announce_join_leave, but the user
  131. ; will be prompted to review their recording before
  132. ; entering the conference. During this phase, the recording
  133. ; may be listened to, re-recorded, or accepted as is. This
  134. ; option is off by default.
  135. ;dtmf_passthrough=yes ; Sets whether or not DTMF should pass through the conference.
  136. ; This option is off by default.
  137. ;announcement=</path/to/file> ; Play a sound file to the user when they join the conference.
  138. ;timeout=3600 ; When set non-zero, this specifies the number of seconds that the participant
  139. ; may stay in the conference before being automatically ejected. When the user
  140. ; is ejected from the conference, the user's channel will have the CONFBRIDGE_RESULT
  141. ; variable set to "TIMEOUT". A value of 0 indicates that there is no timeout.
  142. ; Default: 0
  143. ; --- ConfBridge Bridge Profile Options ---
  144. [default_bridge]
  145. type=bridge
  146. ;max_members=50 ; This option limits the number of participants for a single
  147. ; conference to a specific number. By default conferences
  148. ; have no participant limit. After the limit is reached, the
  149. ; conference will be locked until someone leaves. Note however
  150. ; that an Admin user will always be alowed to join the conference
  151. ; regardless if this limit is reached or not.
  152. ;record_conference=yes ; Records the conference call starting when the first user
  153. ; enters the room, and ending when the last user exits the room.
  154. ; The default recorded filename is
  155. ; 'confbridge-<name of conference bridge>-<start time>.wav
  156. ; and the default format is 8khz slinear. This file will be
  157. ; located in the configured monitoring directory in asterisk.conf.
  158. ;record_file=</path/to/file> ; When record_conference is set to yes, the specific name of the
  159. ; record file can be set using this option. Note that since multiple
  160. ; conferences may use the same bridge profile, this may cause issues
  161. ; depending on the configuration. It is recommended to only use this
  162. ; option dynamically with the CONFBRIDGE() dialplan function. This
  163. ; allows the record name to be specified and a unique name to be chosen.
  164. ; By default, the record_file is stored in Asterisk's spool/monitor directory
  165. ; with a unique filename starting with the 'confbridge' prefix.
  166. ;internal_sample_rate=auto ; Sets the internal native sample rate the
  167. ; conference is mixed at. This is set to automatically
  168. ; adjust the sample rate to the best quality by default.
  169. ; Other values can be anything from 8000-192000. If a
  170. ; sample rate is set that Asterisk does not support, the
  171. ; closest sample rate Asterisk does support to the one requested
  172. ; will be used.
  173. ;mixing_interval=40 ; Sets the internal mixing interval in milliseconds for the bridge. This
  174. ; number reflects how tight or loose the mixing will be for the conference.
  175. ; In order to improve performance a larger mixing interval such as 40ms may
  176. ; be chosen. Using a larger mixing interval comes at the cost of introducing
  177. ; larger amounts of delay into the bridge. Valid values here are 10, 20, 40,
  178. ; or 80. By default 20ms is used.
  179. ;video_mode = follow_talker; Sets how confbridge handles video distribution to the conference participants.
  180. ; Note that participants wanting to view and be the source of a video feed
  181. ; _MUST_ be sharing the same video codec. Also, using video in conjunction with
  182. ; with the jitterbuffer currently results in the audio being slightly out of sync
  183. ; with the video. This is a result of the jitterbuffer only working on the audio
  184. ; stream. It is recommended to disable the jitterbuffer when video is used.
  185. ;
  186. ; --- MODES ---
  187. ; none: No video sources are set by default in the conference. It is still
  188. ; possible for a user to be set as a video source via AMI or DTMF action
  189. ; at any time.
  190. ;
  191. ; follow_talker: The video feed will follow whoever is talking and providing video.
  192. ;
  193. ; last_marked: The last marked user to join the conference with video capabilities
  194. ; will be the single source of video distributed to all participants.
  195. ; If multiple marked users are capable of video, the last one to join
  196. ; is always the source, when that user leaves it goes to the one who
  197. ; joined before them.
  198. ;
  199. ; first_marked: The first marked user to join the conference with video capabilities
  200. ; is the single source of video distribution among all participants. If
  201. ; that user leaves, the marked user to join after them becomes the source.
  202. ;language=en ; Set the language used for announcements to the conference.
  203. ; Default is en (English).
  204. ;regcontext=conferences ; The name of the context into which to register conference names as extensions.
  205. ; All sounds in the conference are customizable using the bridge profile options below.
  206. ; Simply state the option followed by the filename or full path of the filename after
  207. ; the option. Example: sound_had_joined=conf-hasjoin This will play the conf-hasjoin
  208. ; sound file found in the sounds directory when announcing someone's name is joining the
  209. ; conference.
  210. ;sound_join ; The sound played to everyone when someone enters the conference.
  211. ;sound_leave ; The sound played to everyone when someone leaves the conference.
  212. ;sound_has_joined ; The sound played before announcing someone's name has
  213. ; joined the conference. This is used for user intros.
  214. ; Example "_____ has joined the conference"
  215. ;sound_has_left ; The sound played when announcing someone's name has
  216. ; left the conference. This is used for user intros.
  217. ; Example "_____ has left the conference"
  218. ;sound_kicked ; The sound played to a user who has been kicked from the conference.
  219. ;sound_muted ; The sound played when the mute option is toggled on using DTMF menu.
  220. ;sound_unmuted ; The sound played when the mute option is toggled off using DTMF menu.
  221. ;sound_only_person ; The sound played when the user is the only person in the conference.
  222. ;sound_only_one ; The sound played to a user when there is only one other
  223. ; person is in the conference.
  224. ;sound_there_are ; The sound played when announcing how many users there
  225. ; are in a conference.
  226. ;sound_other_in_party; ; This file is used in conjunction with 'sound_there_are"
  227. ; when announcing how many users there are in the conference.
  228. ; The sounds are stringed together like this.
  229. ; "sound_there_are" <number of participants> "sound_other_in_party"
  230. ;sound_place_into_conference ; The sound played when someone is placed into the conference
  231. ; after waiting for a marked user. This sound is now deprecated
  232. ; since it was only ever used improperly and correcting that bug
  233. ; made it completely unused.
  234. ;sound_wait_for_leader ; The sound played when a user is placed into a conference that
  235. ; can not start until a marked user enters.
  236. ;sound_leader_has_left ; The sound played when the last marked user leaves the conference.
  237. ;sound_get_pin ; The sound played when prompting for a conference pin number.
  238. ;sound_invalid_pin ; The sound played when an invalid pin is entered too many times.
  239. ;sound_locked ; The sound played to a user trying to join a locked conference.
  240. ;sound_locked_now ; The sound played to an admin after toggling the conference to locked mode.
  241. ;sound_unlocked_now; The sound played to an admin after toggling the conference to unlocked mode.
  242. ;sound_error_menu ; The sound played when an invalid menu option is entered.
  243. ;sound_begin ; The sound played to the conference when the first marked user enters the conference.
  244. ; --- ConfBridge Menu Options ---
  245. ; The ConfBridge application also has the ability to
  246. ; apply custom DTMF menus to each channel using the
  247. ; application. Like the User and Bridge profiles
  248. ; a menu is passed in to ConfBridge as an argument in
  249. ; the dialplan.
  250. ;
  251. ; Below is a list of menu actions that can be assigned
  252. ; to a DTMF sequence.
  253. ;
  254. ; To have the first DTMF digit in a sequence be the '#' character, you need to
  255. ; escape it. If it is not escaped then normal config file processing will
  256. ; think it is a directive like #include. For example:
  257. ; \#1=toggle_mute ; Pressing #1 will toggle the mute setting.
  258. ;
  259. ; A single DTMF sequence can have multiple actions associated with it. This is
  260. ; accomplished by stringing the actions together and using a ',' as the delimiter.
  261. ; Example: Both listening and talking volume is reset when '5' is pressed.
  262. ; 5=reset_talking_volume, reset_listening_volume
  263. ;
  264. ; playback(<name of audio file>&<name of audio file>)
  265. ; Playback will play back an audio file to a channel
  266. ; and then immediately return to the conference.
  267. ; This file can not be interupted by DTMF.
  268. ; Mutliple files can be chained together using the
  269. ; '&' character.
  270. ; playback_and_continue(<name of playback prompt>&<name of playback prompt>)
  271. ; playback_and_continue will
  272. ; play back a prompt while continuing to
  273. ; collect the dtmf sequence. This is useful
  274. ; when using a menu prompt that describes all
  275. ; the menu options. Note however that any DTMF
  276. ; during this action will terminate the prompts
  277. ; playback. Prompt files can be chained together
  278. ; using the '&' character as a delimiter.
  279. ; toggle_mute ; Toggle turning on and off mute. Mute will make the user silent
  280. ; to everyone else, but the user will still be able to listen in.
  281. ; no_op ; This action does nothing (No Operation). Its only real purpose exists for
  282. ; being able to reserve a sequence in the config as a menu exit sequence.
  283. ; decrease_listening_volume ; Decreases the channel's listening volume.
  284. ; increase_listening_volume ; Increases the channel's listening volume.
  285. ; reset_listening_volume ; Reset channel's listening volume to default level.
  286. ; decrease_talking_volume ; Decreases the channel's talking volume.
  287. ; increase_talking_volume ; Icreases the channel's talking volume.
  288. ; reset_talking_volume ; Reset channel's talking volume to default level.
  289. ;
  290. ; dialplan_exec(context,exten,priority) ; The dialplan_exec action allows a user
  291. ; to escape from the conference and execute
  292. ; commands in the dialplan. Once the dialplan
  293. ; exits the user will be put back into the
  294. ; conference. The possibilities are endless!
  295. ; leave_conference ; This action allows a user to exit the conference and continue
  296. ; execution in the dialplan.
  297. ;
  298. ; admin_kick_last ; This action allows an Admin to kick the last participant from the
  299. ; conference. This action will only work for admins which allows
  300. ; a single menu to be used for both users and admins.
  301. ;
  302. ; admin_toggle_conference_lock ; This action allows an Admin to toggle locking and
  303. ; unlocking the conference. Non admins can not use
  304. ; this action even if it is in their menu.
  305. ; set_as_single_video_src ; This action allows any user to set themselves as the
  306. ; single video source distributed to all participants.
  307. ; This will make the video feed stick to them regardless
  308. ; of what the video_mode is set to.
  309. ; release_as_single_video_src ; This action allows a user to release themselves as
  310. ; the video source. If video_mode is not set to "none"
  311. ; this action will result in the conference returning to
  312. ; whatever video mode the bridge profile is using.
  313. ;
  314. ; Note that this action will have no effect if the user
  315. ; is not currently the video source. Also, the user is
  316. ; not guaranteed by using this action that they will not
  317. ; become the video source again. The bridge will return
  318. ; to whatever operation the video_mode option is set to
  319. ; upon release of the video src.
  320. ; admin_toggle_mute_participants ; This action allows an administrator to toggle the mute
  321. ; state for all non-admins within a conference.
  322. ; Subsequent non-admins joining a muted conference will
  323. ; start muted. All admin users are unaffected by this
  324. ; option. Note that all users, regardless of their admin
  325. ; status, are notified that the conference is muted when
  326. ; the state is toggled.
  327. ; participant_count ; This action plays back the number of participants currently
  328. ; in a conference
  329. [sample_user_menu]
  330. type=menu
  331. *=playback_and_continue(conf-usermenu)
  332. *1=toggle_mute
  333. 1=toggle_mute
  334. *4=decrease_listening_volume
  335. 4=decrease_listening_volume
  336. *6=increase_listening_volume
  337. 6=increase_listening_volume
  338. *7=decrease_talking_volume
  339. 7=decrease_talking_volume
  340. *8=leave_conference
  341. 8=leave_conference
  342. *9=increase_talking_volume
  343. 9=increase_talking_volume
  344. [sample_admin_menu]
  345. type=menu
  346. *=playback_and_continue(conf-adminmenu)
  347. *1=toggle_mute
  348. 1=toggle_mute
  349. *2=admin_toggle_conference_lock ; only applied to admin users
  350. 2=admin_toggle_conference_lock ; only applied to admin users
  351. *3=admin_kick_last ; only applied to admin users
  352. 3=admin_kick_last ; only applied to admin users
  353. *4=decrease_listening_volume
  354. 4=decrease_listening_volume
  355. *6=increase_listening_volume
  356. 6=increase_listening_volume
  357. *7=decrease_talking_volume
  358. 7=decrease_talking_volume
  359. *8=no_op
  360. 8=no_op
  361. *9=increase_talking_volume
  362. 9=increase_talking_volume