That makes perfect sense - I now send the call to a managed app instead of park and every thing works great. thanks.<br><br><br><br><div class="gmail_quote">On Fri, Aug 28, 2009 at 5:12 PM, Anthony Minessale <span dir="ltr">&lt;<a href="mailto:anthony.minessale@gmail.com">anthony.minessale@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Taking over the session while it&#39;s parked like that from your code and asking it to play a file is making it do 2 things at once.<br>
The session&#39;s thread is already busy in the park loop so you would have to change it&#39;s state to something passive like soft_execute so<br>
it&#39;s thread was not doing anything or send it a message so the park loop would pick it up by using the uuid_broadcast app::arg<br><br>there are variables you can set that begin group_confirm_* that you can set to do this all without even using a script.<br>

<br><a href="http://wiki.freeswitch.org/wiki/Channel_Variables#Answer_confirmation_variables" target="_blank">http://wiki.freeswitch.org/wiki/Channel_Variables#Answer_confirmation_variables</a><div><div></div><div class="h5">
<br><br><br><br><br><div class="gmail_quote">
On Fri, Aug 28, 2009 at 3:53 PM, Phillip Jones <span dir="ltr">&lt;<a href="mailto:pjintheusa@gmail.com" target="_blank">pjintheusa@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

The dialplan is is kicking off the C# script:<br><br>&lt;condition field=&quot;destination_number&quot; expression=&quot;^(12125553666)$&quot;&gt;<br>     <b> &lt;action application=&quot;managed&quot; data=&quot;MyFSProjects.ProcessCall&quot;/&gt;</b><br>


&lt;/condition&gt;<br><br>I launch a thread and specify the uuid to originate:<br><br>fsApi.Execute(&quot;originate&quot;, string.Format(&quot;{{ignore_early_media=true,absolute_codec_string=&#39;PCMU&#39;}}[<b>origination_uuid={0}</b>,origination_caller_id_number={1}]sofia/gateway/broadvox/{2} &amp;park&quot;, <b>call.Uuid</b>, call.OutgoingCallerID, call.NumberToDial));<br>


<br>in the callback i try and play the wav file:<br><br>FreeSWITCH.Native.ManagedSession blegSession = new FreeSWITCH.Native.ManagedSession(callID);<br>            <br>if (blegSession.Ready() &amp;&amp; blegSession.mediaReady())<br>


{<br>       blegSession.Answer();<br>       blegSession.Execute(&quot;playback&quot;, &quot;prompts/press-1-to-accept-call-from.wav&quot;);<br>}<br><br>I go on to bridge the leg a and b - that bits works fine. <br><div><div>

</div><div><br><br>
<br>On Fri, Aug 28, 2009 at 4:40 PM, Anthony Minessale&lt;<a href="mailto:anthony.minessale@gmail.com" target="_blank">anthony.minessale@gmail.com</a>&gt; wrote:<br>&gt; nevermind,<br>&gt;<br>&gt; I didn&#39;t look closely at your code.<br>


&gt;<br>&gt; how did you end up with blegSession ?<br>&gt; Are you running this script from the CLI or via the application interface.<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt;<br>&gt; On Fri, Aug 28, 2009 at 3:33 PM, Anthony Minessale<br>


&gt; &lt;<a href="mailto:anthony.minessale@gmail.com" target="_blank">anthony.minessale@gmail.com</a>&gt; wrote:<br>&gt;&gt;<br>&gt;&gt; the L16 codec is used because the wav files is raw PCM audio<br>&gt;&gt; which is being encoded to PCMU<br>


&gt;&gt;<br>&gt;&gt; Have you tried doing this to a locally registered phone?<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; On Fri, Aug 28, 2009 at 3:13 PM, Phillip Jones &lt;<a href="mailto:pjintheusa@gmail.com" target="_blank">pjintheusa@gmail.com</a>&gt;<br>


&gt;&gt; wrote:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; thanks for the reply.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Tried this and exactly the same result. The prompt is slowed - as if<br>&gt;&gt;&gt; the person is drunk.<br>&gt;&gt;&gt;<br>


&gt;&gt;&gt; I do notice that the originating call SDP shows:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; a=rtpmap:0 PCMU/8000<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; but the play tries to use:<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; EXECUTE sofia/external/6093693828<br>


&gt;&gt;&gt; playback(prompts/press-1-to-accept-call-from.wav)<br>&gt;&gt;&gt; 2009-08-28 16:03:14.507375 [DEBUG] switch_ivr_play_say.c:1097 Codec<br>&gt;&gt;&gt; Activated L16@8000hz 1 channels 20ms<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>


&gt;&gt;&gt; Should the codec be PCMU@8000hz as opposed to L16@8000hz? If so of<br>&gt;&gt;&gt; there a way of forcing this codec for play.<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Thanks<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Phillip<br>


&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; Full code &amp; logs<br>&gt;&gt;&gt; <a href="http://pastebin.freeswitch.org/10147" target="_blank">http://pastebin.freeswitch.org/10147</a><br>&gt;&gt;&gt; <a href="http://pastebin.freeswitch.org/10150" target="_blank">http://pastebin.freeswitch.org/10150</a><br>


&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; On Thu, Aug 27, 2009 at 4:30 PM, Anthony<br>&gt;&gt;&gt; Minessale&lt;<a href="mailto:anthony.minessale@gmail.com" target="_blank">anthony.minessale@gmail.com</a>&gt; wrote:<br>


&gt;&gt;&gt; &gt; try wedging {ignore_early_media=true} before the first [ in your dial<br>&gt;&gt;&gt; &gt; string<br>&gt;&gt;&gt; &gt; and eliminate the code waiting for answer.<br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt;<br>


&gt;&gt;&gt; &gt; On Thu, Aug 27, 2009 at 3:09 PM, Phillip Jones &lt;<a href="mailto:pjintheusa@gmail.com" target="_blank">pjintheusa@gmail.com</a>&gt;<br>&gt;&gt;&gt; &gt; wrote:<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; Hi there,<br>


&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; I know there are other ways of doing this. I am just trying get to<br>&gt;&gt;&gt; &gt;&gt; know have fun with the FreeSWITCH API.<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; I am using originate and park a call:<br>


&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; fsApi.Execute(&quot;originate&quot;,<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; string.Format(&quot;[origination_uuid={0},origination_caller_id_number={1}]sofia/gateway/broadvox/{2}<br>


&gt;&gt;&gt; &gt;&gt; &amp;park&quot;, blegSession.Uuid, OutgoingCallerID, NumberToDial));<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; That works great, the phone rings. I want to play something to this<br>&gt;&gt;&gt; &gt;&gt; called party when they pick up.<br>


&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt;  while (!blegSession.answered())<br>&gt;&gt;&gt; &gt;&gt;  {<br>&gt;&gt;&gt; &gt;&gt;        Log.WriteLine(LogLevel.Alert,<br>&gt;&gt;&gt; &gt;&gt; &quot;Inside::CallReturns:!Session.answered::Loop&quot;);<br>


&gt;&gt;&gt; &gt;&gt;        blegSession.sleep(500, 1);<br>&gt;&gt;&gt; &gt;&gt;  }<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; string promptFile = &quot;prompts/whisper.wav&quot;;<br>&gt;&gt;&gt; &gt;&gt; blegSession.StreamFile(promptFile, 0);<br>


&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; This works - but the audio is choppy and slow.<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; Is there something I need to do to that parked call before streaming<br>


&gt;&gt;&gt; &gt;&gt; that<br>&gt;&gt;&gt; &gt;&gt; file?<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; Thanks for any input.<br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; Phil<br>&gt;&gt;&gt; &gt;&gt;<br>


&gt;&gt;&gt; &gt;&gt; _______________________________________________<br>&gt;&gt;&gt; &gt;&gt; FreeSWITCH-users mailing list<br>&gt;&gt;&gt; &gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>


&gt;&gt;&gt; &gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;&gt;&gt; &gt;&gt;<br>&gt;&gt;&gt; &gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>


&gt;&gt;&gt; &gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt; --<br>&gt;&gt;&gt; &gt; Anthony Minessale II<br>

&gt;&gt;&gt; &gt;<br>
&gt;&gt;&gt; &gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>&gt;&gt;&gt; &gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>

&gt;&gt;&gt; &gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>
&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt; AIM: anthm<br>&gt;&gt;&gt; &gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>&gt;&gt;&gt; &gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>


&gt;&gt;&gt; &gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt; FreeSWITCH Developer Conference<br>&gt;&gt;&gt; &gt; <a href="mailto:sip%3A888@conference.freeswitch.org" target="_blank">sip:888@conference.freeswitch.org</a><br>


&gt;&gt;&gt; &gt; <a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>&gt;&gt;&gt; &gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>


&gt;&gt;&gt; &gt; pstn:213-799-1400<br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt; _______________________________________________<br>&gt;&gt;&gt; &gt; FreeSWITCH-users mailing list<br>&gt;&gt;&gt; &gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>


&gt;&gt;&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>


&gt;&gt;&gt; &gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt; &gt;<br>&gt;&gt;&gt;<br>&gt;&gt;&gt; _______________________________________________<br>

&gt;&gt;&gt; FreeSWITCH-users mailing list<br>
&gt;&gt;&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>


&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;&gt;&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>


&gt;&gt;<br>&gt;&gt;<br>&gt;&gt;<br>&gt;&gt; --<br>&gt;&gt; Anthony Minessale II<br>&gt;&gt;<br>&gt;&gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>&gt;&gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>


&gt;&gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>&gt;&gt;<br>&gt;&gt; AIM: anthm<br>&gt;&gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>


&gt;&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>&gt;&gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>

&gt;&gt;<br>&gt;&gt; FreeSWITCH Developer Conference<br>
&gt;&gt; <a href="mailto:sip%3A888@conference.freeswitch.org" target="_blank">sip:888@conference.freeswitch.org</a><br>&gt;&gt; <a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>

&gt;&gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>
&gt;&gt; pstn:213-799-1400<br>&gt;<br>&gt;<br>&gt;<br>&gt; --<br>&gt; Anthony Minessale II<br>&gt;<br>&gt; FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>&gt; ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>


&gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br>&gt;<br>&gt; AIM: anthm<br>&gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>


&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>&gt; IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br>

&gt;<br>&gt; FreeSWITCH Developer Conference<br>
&gt; <a href="mailto:sip%3A888@conference.freeswitch.org" target="_blank">sip:888@conference.freeswitch.org</a><br>&gt; <a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>

&gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>
&gt; pstn:213-799-1400<br>&gt;<br>&gt; _______________________________________________<br>&gt; FreeSWITCH-users mailing list<br>&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>


&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>


&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>&gt;<br>&gt;<br><br>
</div></div><br>_______________________________________________<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org" target="_blank">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>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/" target="_blank">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/" target="_blank">http://www.cluecon.com/</a><br>

Twitter: <a href="http://twitter.com/FreeSWITCH_wire" target="_blank">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com" target="_blank">MSN:anthony_minessale@hotmail.com</a><br>
GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com" target="_blank">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net" target="_blank">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org" target="_blank">sip:888@conference.freeswitch.org</a><br>
<a href="http://iax:guest@conference.freeswitch.org/888" target="_blank">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org" target="_blank">googletalk:conf+888@conference.freeswitch.org</a><br>pstn:213-799-1400<br>
</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>