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><br><br>
<br>On Fri, Aug 28, 2009 at 4:40 PM, Anthony Minessale&lt;<a href="mailto:anthony.minessale@gmail.com">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">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">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">http://pastebin.freeswitch.org/10147</a><br>&gt;&gt;&gt; <a href="http://pastebin.freeswitch.org/10150">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">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">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">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt; &gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">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">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt; &gt;&gt; <a href="http://www.freeswitch.org">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/">http://www.freeswitch.org/</a><br>&gt;&gt;&gt; &gt; ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>&gt;&gt;&gt; &gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire">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">MSN:anthony_minessale@hotmail.com</a><br>&gt;&gt;&gt; &gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
&gt;&gt;&gt; &gt; IRC: <a href="http://irc.freenode.net">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">sip:888@conference.freeswitch.org</a><br>
&gt;&gt;&gt; &gt; <a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>&gt;&gt;&gt; &gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">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">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt;&gt;&gt; &gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">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">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt;&gt;&gt; &gt; <a href="http://www.freeswitch.org">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">FreeSWITCH-users@lists.freeswitch.org</a><br>&gt;&gt;&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt;&gt;&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>&gt;&gt;&gt; <a href="http://www.freeswitch.org">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/">http://www.freeswitch.org/</a><br>&gt;&gt; ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
&gt;&gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire">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">MSN:anthony_minessale@hotmail.com</a><br>
&gt;&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>&gt;&gt; IRC: <a href="http://irc.freenode.net">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">sip:888@conference.freeswitch.org</a><br>&gt;&gt; <a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>&gt;&gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">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/">http://www.freeswitch.org/</a><br>&gt; ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
&gt; Twitter: <a href="http://twitter.com/FreeSWITCH_wire">http://twitter.com/FreeSWITCH_wire</a><br>&gt;<br>&gt; AIM: anthm<br>&gt; <a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
&gt; GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>&gt; IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br>&gt;<br>&gt; FreeSWITCH Developer Conference<br>
&gt; <a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>&gt; <a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>&gt; <a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">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">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org">http://www.freeswitch.org</a><br>&gt;<br>&gt;<br><br>