1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Asterisk Project : Application_WaitForSilence</title>
<link rel="stylesheet" href="styles/site.css" type="text/css" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
<tr>
<td valign="top" class="pagebody">
<div class="pageheader">
<span class="pagetitle">
Asterisk Project : Application_WaitForSilence
</span>
</div>
<div class="pagesubheading">
This page last changed on Mar 30, 2011 by <font color="#0050B2">wikibot</font>.
</div>
<h1><a name="Application_WaitForSilence-WaitForSilence%28%29"></a>WaitForSilence()</h1>
<h3><a name="Application_WaitForSilence-Synopsis"></a>Synopsis</h3>
<p>Waits for a specified amount of silence.</p>
<h3><a name="Application_WaitForSilence-Description"></a>Description</h3>
<p>Waits for up to <em>silencerequired</em> milliseconds of silence, <em>iterations</em> times. An optional <em>timeout</em> specified the number of seconds to return after, even if we do not receive the specified amount of silence. Use <em>timeout</em> with caution, as it may defeat the purpose of this application, which is to wait indefinitely until silence is detected on the line. This is particularly useful for reverse-911-type call broadcast applications where you need to wait for an answering machine to complete its spiel before playing a message. </p>
<p>Typically you will want to include two or more calls to WaitForSilence when dealing with an answering machine; first waiting for the spiel to finish, then waiting for the beep, etc. </p>
<p>Examples: </p>
<p>WaitForSilence(500,2) will wait for 1/2 second of silence, twice </p>
<p>WaitForSilence(1000) will wait for 1 second of silence, once </p>
<p>WaitForSilence(300,3,10) will wait for 300ms silence, 3 times, and returns after 10 sec, even if silence is not detected </p>
<p>Sets the channel variable Sets the channel variable <tt>None</tt> - <tt>WAITSTATUS</tt> to one of these values: </p>
<ul>
<li><tt>WAITSTATUS</tt> -
<ul>
<li><tt>SILENCE</tt> - if exited with silence detected.</li>
<li><tt>TIMEOUT</tt> - if exited without silence detected after timeout.</li>
</ul>
</li>
</ul>
<h3><a name="Application_WaitForSilence-Syntax"></a>Syntax</h3>
<div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
<pre>WaitForSilence(silencerequired[,iterations[,timeout]])</pre>
</div></div>
<h5><a name="Application_WaitForSilence-Arguments"></a>Arguments</h5>
<ul>
<li><tt>silencerequired</tt></li>
<li><tt>iterations</tt> - If not specified, defaults to <tt>1</tt>.</li>
<li><tt>timeout</tt> - Is specified only to avoid an infinite loop in cases where silence is never achieved.</li>
</ul>
<h3><a name="Application_WaitForSilence-SeeAlso"></a>See Also</h3>
<p><a href="Application_WaitForNoise.html" title="Application_WaitForNoise">Application_WaitForNoise</a></p>
<h3><a name="Application_WaitForSilence-ImportVersion"></a>Import Version</h3>
<p>This documentation was imported from Asterisk version SVN-branch-1.8-r311874.</p>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td height="12" background="https://wiki.asterisk.org/wiki/images/border/border_bottom.gif"><img src="images/border/spacer.gif" width="1" height="1" border="0"/></td>
</tr>
<tr>
<td align="center"><font color="grey">Document generated by Confluence on Oct 04, 2011 12:42</font></td>
</tr>
</table>
</body>
</html>
|