Trim some of the audio off the end of the file after the recording is done.<br><br><br><br><div class="gmail_quote">On Fri, Mar 11, 2011 at 5:19 PM, Matt Stockton <span dir="ltr">&lt;<a href="mailto:mstockton@harqen.com">mstockton@harqen.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">Hi all,<div><br></div><div>I have a freeswitch lua script that is recording and I want the recording to be terminated when the user presses the &#39;#&#39; key. That is all working fine for me, but the recording always has the DTMF tone at the end of it. </div>

<div><br></div><div>I am wondering, is there a way to instruct freeswitch to not record the DTMF tones? Any help is appreciated. For reference, here are some excerpts from my lua script:</div><div><br></div><div><p style="margin: 0px; font: 11px Monaco;">

function inputHook(s, type, <span style="text-decoration: underline;">obj</span>) </p>
<p style="margin: 0px; font: 11px Monaco;">  freeswitch.consoleLog(&quot;INFO&quot;, &quot;On input&quot;);</p>
<p style="margin: 0px; font: 11px Monaco;">  if (inRecording and type == &quot;<span style="text-decoration: underline;">dtmf</span>&quot; and <span style="text-decoration: underline;">obj</span>[&#39;digit&#39;] == &#39;#&#39;) then </p>


<p style="margin: 0px; font: 11px Monaco;">      inRecording = false;</p>
<p style="margin: 0px; font: 11px Monaco;">      return &quot;break&quot;; </p>
<p style="margin: 0px; font: 11px Monaco;">  end </p>
<p style="margin: 0px; font: 11px Monaco;">end </p><p style="margin: 0px; font: 11px Monaco;">.....</p><p style="margin: 0px; font: 11px Monaco;">session:setInputCallback(&quot;inputHook&quot;, &quot;&quot;); </p>
<p style="margin: 0px; font: 11px Monaco;">.....</p><p style="margin: 0px; font: 11px Monaco;"></p><p style="margin: 0px; font: 11px Monaco;">session:recordFile(recordFilePath, 202, 500, 25);</p>
<p style="margin: 0px; font: 11px Monaco;"><br></p><p style="margin: 0px; font: 11px Monaco;">Thanks in advance</p><p></p></div>
<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>