<div dir="ltr"><div>Hi Raghu,<br><br>I would put the setInputCallback before the sleep, that way if the avmd is detected while you&#39;re sleeping then it should work.<br><br></div>-MC<br></div><div class="gmail_extra"><br>
<br><div class="gmail_quote">On Wed, Jul 24, 2013 at 1:30 PM, Raghu <span dir="ltr">&lt;<a href="mailto:srraghu45@gmail.com" target="_blank">srraghu45@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">I am new to freeswitch. I am trying to send a message to voicemail using avmd for voicemail detection, here is the code which i am using with originate command:<div><br></div><div><div>from freeswitch import *</div>

<div><br></div><div># WARNING: known bugs with hangup hooks, use with extreme caution</div><div>def hangup_hook(session, what):</div><div><br></div><div>    consoleLog(&quot;info&quot;,&quot;hangup hook   %s!!\n\n&quot; % what)</div>

<div>    return</div><div><br></div><div>def input_callback(session, what, obj):</div><div><br></div><div>    if (what == &quot;dtmf&quot;):</div><div>        consoleLog(&quot;info&quot;, what + &quot; from callback &quot; + obj.digit + &quot;\n&quot;)</div>

<div>        return</div><div>    elif (what == &quot;event&quot; and session.getVariable(&#39;avmd_detect&#39;) == &quot;TRUE&quot;):</div><div>        consoleLog(&quot;info&quot;, &quot;Voicemail Detected\n&quot;)</div>

<div>    return &quot;true&quot;</div><div><br></div><div>def handler(session, args):</div><div><br></div><div>    session.answer()</div><div>    session.execute(&quot;avmd&quot;, &quot;start&quot;)</div><div>    session.execute(&quot;sleep&quot;, &quot;25000&quot;)</div>

<div>    callback = session.setInputCallback(input_callback)</div><div>    consoleLog(&quot;info&quot;,&quot;callback returned %s!!\n\n&quot; % callback)</div><div>    while session.getVariable(&#39;avmd_detect&#39;):</div>

<div>         session.execute(&quot;speak&quot;, &quot;flite|kal|&#39;Hi how are you&#39;&quot;)</div><div><br></div><div>    session.execute(&quot;avmd&quot;, &quot;stop&quot;)</div><div>    session.setHangupHook(hangup_hook)</div>

<div>    session.hangup() #hangup the call</div></div><div><br></div><div><br></div><div>I can see avmd getting started but it does detect any beep. Is there a simpler way to check if avmd is working without using &#39;originate&#39;?</div>

<div><br></div><div>Thanks</div></div>
<br>_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br>Michael S Collins<br>Twitter: @mercutioviz<br><a href="http://www.FreeSWITCH.org" target="_blank">http://www.FreeSWITCH.org</a><br><a href="http://www.ClueCon.com" target="_blank">http://www.ClueCon.com</a><br>
<a href="http://www.OSTAG.org" target="_blank">http://www.OSTAG.org</a><br><br>
</div>