<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style id="owaParaStyle" type="text/css">P {margin-top:0;margin-bottom:0;}</style>
</head>
<body ocsi="0" fpstyle="1">
<div style="direction: ltr;font-family: Tahoma;color: #000000;font-size: 10pt;">Only problem is session:streamFile doesn't make it into conference.<br>
<br>
The only way I've found to do this so far is to conference_set_auto_outcall a loopback extension to a non-user extension that simply streams a file in a context:<br>
session:execute(&quot;conference_set_auto_outcall&quot;,&quot;loopback/3041/custom/&quot;)<br>
<br>
but if I want to mute the conference so only the originator is heard (a standard &quot;overhead&quot; style page) using:<br>
session:execute(&quot;set&quot;, &quot;conference_auto_outcall_flags=mute&quot;) then this is never heard because this loopback &quot;participant&quot; is muted as well.<br>
<br>
<div style="font-family: Times New Roman; color: rgb(0, 0, 0); font-size: 16px;">
<hr tabindex="-1">
<div style="direction: ltr;" id="divRpF856805"><font color="#000000" size="2" face="Tahoma"><b>From:</b> freeswitch-users-bounces@lists.freeswitch.org [freeswitch-users-bounces@lists.freeswitch.org] on behalf of Tom C [mel0torme@gmail.com]<br>
<b>Sent:</b> Tuesday, May 10, 2011 12:08 AM<br>
<b>To:</b> FreeSWITCH Users Help<br>
<b>Subject:</b> Re: [Freeswitch-users] mod_lua play file into conference<br>
</font><br>
</div>
<div></div>
<div>
<div>I was thinking about this a few days ago.&nbsp; Slightly different scenario: I want to stream audio into&nbsp;a conference every ten minutes or so.</div>
<div>&nbsp;</div>
<div>My ideas was to&nbsp;do it by connecting another extension to the conference.&nbsp; This extra extension would (theoretically)&nbsp;run a Lua script to stream the audio, and then sleep, and every few seconds it would look to see if it was the only extension still connected
 to the conference.</div>
<div>&nbsp;</div>
<div>In your case, if&nbsp;you're doing the &quot;mad boss&quot; and inviting all the participants to the conference, it should be easy to add one more extension to the list of invites.&nbsp; Just have&nbsp;the&nbsp;extension's&nbsp;script&nbsp;wait 10 seconds or so before streaming the audio, and
 then it can just hang up.</div>
<div>&nbsp;</div>
<div>Something like this:</div>
<div>&nbsp;</div>
<div>streamwelcomefile.lua</div>
<div>&lt;code&gt;</div>
<div>&nbsp;</div>
<div>if ( session:ready() ) then</div>
<div>&nbsp;&nbsp;session:answer();</div>
<div>&nbsp;&nbsp;session:sleep(10000)&nbsp;&nbsp;-- wait for 10 seconds for other people to join conference.<br>
&nbsp;&nbsp;session:streamFile(&quot;ivr/8000/ivr-welcome.wav&quot;);<br>
&nbsp;&nbsp;session:streamFile(&quot;ivr/8000/ivr-thank_you_for_calling.wav&quot;);<br>
&nbsp;&nbsp;session:hangup(&quot;NORMAL_CLEARING&quot;);<br>
end</div>
<div>&nbsp;</div>
<div>&lt;/code&gt;</div>
<div>&nbsp;</div>
<div>And the dialplan might look like this:</div>
<div>&lt;code&gt;</div>
<div>&nbsp;</div>
<div>&lt;extension name=&quot;StreamWelcome&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;condition field=&quot;destination_number&quot; expression=&quot;^000111$&quot;&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;action application=&quot;lua&quot; data=&quot;streamwelcomefile.lua&quot; /&gt;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/condition&gt;<br>
&nbsp;&lt;/extension&gt;</div>
<div>&nbsp;</div>
<div>&lt;/code&gt;</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>Disclaimer:&nbsp; I haven't actually tested this in a conference.&nbsp; Good luck!&nbsp; :-)</div>
</div>
</div>
</div>
</body>
</html>