diff --git a/apps/app_mixmonitor.c b/apps/app_mixmonitor.c index 588c7a370b..76c72a74b0 100644 --- a/apps/app_mixmonitor.c +++ b/apps/app_mixmonitor.c @@ -79,7 +79,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Only save audio to the file while the channel is bridged. - Does not include conferences or sounds played to each bridged party If you utilize this option inside a Local channel, you must make sure the Local channel is not optimized away. To do this, be sure to call your Local channel with the /n option. For example: Dial(Local/start@mycontext/n) @@ -104,7 +103,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Use the specified file to record the receive audio feed. Like with the basic filename argument, if an absolute path isn't given, it will create the file in the configured monitoring directory. - @@ -134,11 +132,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$") Records the audio on the current channel to the specified file. This application does not automatically answer and should be preceeded by an application such as Answer or Progress(). - MixMonitor runs as an audiohook. In order to keep it running through - a transfer, AUDIOHOOK_INHERIT must be set for the channel which ran mixmonitor. - For more information, including dialplan configuration set for using - AUDIOHOOK_INHERIT with MixMonitor, see the function documentation for - AUDIOHOOK_INHERIT. + MixMonitor runs as an audiohook. Will contain the filename used to record. @@ -1128,9 +1122,11 @@ static char *handle_cli_mixmonitor(struct ast_cli_entry *e, int cmd, struct ast_ case CLI_INIT: e->command = "mixmonitor {start|stop|list}"; e->usage = - "Usage: mixmonitor [args]\n" - " The optional arguments are passed to the MixMonitor\n" - " application when the 'start' command is used.\n"; + "Usage: mixmonitor start [args]\n" + " The optional arguments are passed to the MixMonitor application.\n" + " mixmonitor stop [args]\n" + " The optional arguments are passed to the StopMixMonitor application.\n" + " mixmonitor list \n"; return NULL; case CLI_GENERATE: return ast_complete_channels(a->line, a->word, a->pos, a->n, 2);