When you api:execute(&#39;conference&#39;...) the function blocks. Then you have to stream from outside, possibly using an inbound socket application. <div>Maybe alternatively you can call <a href="http://wiki.freeswitch.org/wiki/Mod_commands#sched_api">http://wiki.freeswitch.org/wiki/Mod_commands#sched_api</a> just before put someone on the conference.<br>
<br><div class="gmail_quote">On Wed, May 11, 2011 at 11:23 AM, Josh M. Patten <span dir="ltr">&lt;<a href="mailto:jpatten@co.brazos.tx.us">jpatten@co.brazos.tx.us</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">






<div lang="EN-US" link="blue" vlink="purple">
<div>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">If you look at my original post you’ll see I tried to do that with the same results:</span></p><div class="im">
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p>
<p class="MsoNormal">session:execute(&quot;conference&quot;, argv[1] .. &quot;@default&quot;)</p>
<p class="MsoNormal">api = freeswitch.API()</p>
<p class="MsoNormal">confplay = api:execute(&quot;conference&quot;, argv[1] .. &quot; play /usr/local/freeswitch/sounds/tones/norstar.wav &quot;)</p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p>
</div><p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">What is happening in Lua is because it’s not a threadable language you can’t do an “execute and forget” on a particular command. So when the conference is run
 Lua will stop executing at that point.</span></p><div class="im">
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">Josh Patten</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">Brazos County Network Engineer</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D">979.361.4676</span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;color:#1F497D"> </span></p>
</div><p class="MsoNormal"><b><span style="font-size:10.0pt">From:</span></b><span style="font-size:10.0pt"> <a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a> [mailto:<a href="mailto:freeswitch-users-bounces@lists.freeswitch.org" target="_blank">freeswitch-users-bounces@lists.freeswitch.org</a>]
<b>On Behalf Of </b>Michael Collins<br>
<b>Sent:</b> Wednesday, May 11, 2011 12:48 AM</span></p><div class="im"><br>
<b>To:</b> FreeSWITCH Users Help<br>
<b>Subject:</b> Re: [Freeswitch-users] mod_lua play file into conference</div><p></p>
<p class="MsoNormal"> </p>
<p class="MsoNormal" style="margin-bottom:12.0pt"> </p>
<div>
<p class="MsoNormal">On Mon, May 9, 2011 at 11:34 PM, Josh M. Patten &lt;<a href="mailto:jpatten@co.brazos.tx.us" target="_blank">jpatten@co.brazos.tx.us</a>&gt; wrote:</p><div><div></div><div class="h5">
<div>
<div>
<p class="MsoNormal"><span style="font-size:10.0pt;color:black">It seems the way this could be accomplished is to allow asynchronous execution capabilities in lua. However I don&#39;t think this exists.<br>
<br>
Is there a better way to &quot;execute and forget&quot; the conference app so the script can move on to the next bit of code?
</span></p>
</div>
</div>
<div>
<p class="MsoNormal"> </p>
</div>
<div>
<p class="MsoNormal">Try using an API instead of messing with session:xxx and all that stuff:</p>
</div>
<div>
<p class="MsoNormal"> </p>
</div>
<div>
<p class="MsoNormal">api = freeswitch.API();</p>
</div>
<div>
<p class="MsoNormal">res = api:execute(&quot;conference&quot;,conf_name .. &quot; play /path/to/file.wav&quot;;</p>
</div>
<div>
<p class="MsoNormal"> </p>
</div>
<div>
<p class="MsoNormal">conf_name is the name of the conference you are using. If you&#39;re not sure what name you have then just start up a conference and then type &quot;conference list&quot; at fs_cli and you&#39;ll see the name. You can use channel variables, etc. if the name
 changes depending on the destination number.</p>
</div>
<div>
<p class="MsoNormal"> </p>
</div>
<div>
<p class="MsoNormal">-MC</p>
</div>
</div></div></div>
</div>
</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></div>