Thanks, I think I found the thread you were referring to (&quot;[Freeswitch-users] session record does not for very short calls&quot;), which doesn&#39;t seem to be a solution for my situation. However, I did find that using session:recordFile() didn&#39;t delete the file if it was really short. And following that thread lead me to an interesting channel variable that could be useful to us, record_ms, but having trouble getting it to reflect the audio length. I can see the variable when printing data from the info application, but it&#39;s always 0. My snippet of code is very simple:<div>
<br></div><div><div>if session:ready() then</div><div>   session:recordFile(&quot;C:/Temp/recording.wav&quot;, 30, 600, 6);</div><div><br></div><div>   local record_length = session:getVariable(&quot;record_ms&quot;);</div>
<div>   freeswitch.consoleLog(&quot;INFO&quot;, &quot;Recorded a &quot; .. record_length .. &quot; ms file.\n&quot;);</div><div>end</div><div><br></div><div>Another side question, the silence secs parameter (in this example, 6), is that 6s silence hits during the entire recording session or 6s of consecutive silence? From a few tests, it seems to be the former, but just wanted to verify, something that would make a good addition to the wiki. </div>
<div><br></div><div>Dan</div><div><br><br><div class="gmail_quote">On Wed, Sep 30, 2009 at 11:31 PM, Jason White <span dir="ltr">&lt;<a href="mailto:jason@jasonjgw.net">jason@jasonjgw.net</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">Dan Le &lt;<a href="mailto:dule.maillist@gmail.com">dule.maillist@gmail.com</a>&gt; wrote:<br>
&gt; We&#39;re running into a problem with the minimum file size when recording using<br>
&gt; uuid_record. It seems if the audio is too short it deletes the audio file.<br>
&gt; Is there a way to override that?<br>
<br>
</div>Yes. It was discussed on the list recently. I suggest searching the list<br>
archives. Someone may have documented it on the wiki by now also.<br>
<br>
<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>
</blockquote></div><br></div></div>