mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-23 14:44:28 +00:00
Merged revisions 336717 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/10 ................ r336717 | jrose | 2011-09-19 15:16:23 -0500 (Mon, 19 Sep 2011) | 14 lines Merged revisions 336716 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r336716 | jrose | 2011-09-19 15:07:36 -0500 (Mon, 19 Sep 2011) | 7 lines Document applications that play audio and do not answer unanswered calls. This patch is part of an effort to document early media and its usage. If you are interested in contributing to this documentation effort, there are probably other applications worth documenting as well as an Asterisk wiki article at https://wiki.asterisk.org/wiki/display/AST/Early+Media+and+the+Progress+Application ........ ................ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@336732 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -46,6 +46,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
<description>
|
<description>
|
||||||
<para>Echos back any audio, video or DTMF frames read from the calling
|
<para>Echos back any audio, video or DTMF frames read from the calling
|
||||||
channel back to itself. Note: If '#' detected application exits</para>
|
channel back to itself. Note: If '#' detected application exits</para>
|
||||||
|
<para>This application does not automatically answer and should be
|
||||||
|
preceeded by an application such as Answer() or Progress().</para>
|
||||||
</description>
|
</description>
|
||||||
</application>
|
</application>
|
||||||
***/
|
***/
|
||||||
|
@@ -117,6 +117,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
</syntax>
|
</syntax>
|
||||||
<description>
|
<description>
|
||||||
<para>Records the audio on the current channel to the specified file.</para>
|
<para>Records the audio on the current channel to the specified file.</para>
|
||||||
|
<para>This application does not automatically answer and should be preceeded by
|
||||||
|
an application such as Answer or Progress().</para>
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<variable name="MIXMONITOR_FILENAME">
|
<variable name="MIXMONITOR_FILENAME">
|
||||||
<para>Will contain the filename used to record.</para>
|
<para>Will contain the filename used to record.</para>
|
||||||
|
@@ -50,7 +50,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
</syntax>
|
</syntax>
|
||||||
<description>
|
<description>
|
||||||
<para>Plays the Morse code equivalent of the passed string.</para>
|
<para>Plays the Morse code equivalent of the passed string.</para>
|
||||||
|
<para>This application does not automatically answer and should be preceeded by
|
||||||
|
an application such as Answer() or Progress().</para>
|
||||||
<para>This application uses the following variables:</para>
|
<para>This application uses the following variables:</para>
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<variable name="MORSEDITLEN">
|
<variable name="MORSEDITLEN">
|
||||||
|
@@ -68,6 +68,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
to see how M3U playlist file format is like, Example usage would be
|
to see how M3U playlist file format is like, Example usage would be
|
||||||
exten => 1234,1,MP3Player(/var/lib/asterisk/playlist.m3u)
|
exten => 1234,1,MP3Player(/var/lib/asterisk/playlist.m3u)
|
||||||
User can exit by pressing any key on the dialpad, or by hanging up.</para>
|
User can exit by pressing any key on the dialpad, or by hanging up.</para>
|
||||||
|
<para>This application does not automatically answer and should be preceeded by an
|
||||||
|
application such as Answer() or Progress().</para>
|
||||||
</description>
|
</description>
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
|
@@ -224,6 +224,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
up by another user.</para>
|
up by another user.</para>
|
||||||
<para>This application will return to the dialplan if the queue does not exist, or
|
<para>This application will return to the dialplan if the queue does not exist, or
|
||||||
any of the join options cause the caller to not enter the queue.</para>
|
any of the join options cause the caller to not enter the queue.</para>
|
||||||
|
<para>This application does not automatically answer and should be preceeded
|
||||||
|
by an application such as Answer(), Progress(), or Ringing().</para>
|
||||||
<para>This application sets the following channel variable upon completion:</para>
|
<para>This application sets the following channel variable upon completion:</para>
|
||||||
<variablelist>
|
<variablelist>
|
||||||
<variable name="QUEUESTATUS">
|
<variable name="QUEUESTATUS">
|
||||||
|
@@ -62,6 +62,8 @@
|
|||||||
file name is never seen by the end user, there is no need to
|
file name is never seen by the end user, there is no need to
|
||||||
implement complicated spelling rules. We simply record the word
|
implement complicated spelling rules. We simply record the word
|
||||||
"men" in the sound file named "mans".</para>
|
"men" in the sound file named "mans".</para>
|
||||||
|
<para>This application does not automatically answer and should be
|
||||||
|
preceeded by an application such as Answer() or Progress.</para>
|
||||||
</description>
|
</description>
|
||||||
<see-also>
|
<see-also>
|
||||||
<ref type="application">SayCountedAdj</ref>
|
<ref type="application">SayCountedAdj</ref>
|
||||||
@@ -99,6 +101,9 @@
|
|||||||
will play sound file "newa" (containing the word "novaya"), but
|
will play sound file "newa" (containing the word "novaya"), but
|
||||||
SayCountedAdj(5,new,f) will play sound file "newx" (containing the
|
SayCountedAdj(5,new,f) will play sound file "newx" (containing the
|
||||||
word "novikh").</para>
|
word "novikh").</para>
|
||||||
|
<para>This application does not automatically answer and should be
|
||||||
|
preceeded by an application such as Answer(), Progress(), or
|
||||||
|
Proceeding().</para>
|
||||||
</description>
|
</description>
|
||||||
<see-also>
|
<see-also>
|
||||||
<ref type="application">SayCountedNoun</ref>
|
<ref type="application">SayCountedNoun</ref>
|
||||||
|
@@ -86,6 +86,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
Set(CHANNEL(musicclass)=...). If duration is given, hold music will be played
|
Set(CHANNEL(musicclass)=...). If duration is given, hold music will be played
|
||||||
specified number of seconds. If duration is ommited, music plays indefinitely.
|
specified number of seconds. If duration is ommited, music plays indefinitely.
|
||||||
Returns <literal>0</literal> when done, <literal>-1</literal> on hangup.</para>
|
Returns <literal>0</literal> when done, <literal>-1</literal> on hangup.</para>
|
||||||
|
<para>This application does not automatically answer and should be preceeded by
|
||||||
|
an application such as Answer() or Progress().</para>
|
||||||
</description>
|
</description>
|
||||||
</application>
|
</application>
|
||||||
<application name="WaitMusicOnHold" language="en_US">
|
<application name="WaitMusicOnHold" language="en_US">
|
||||||
|
Reference in New Issue
Block a user