<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:blue;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:Arial;
        color:navy;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>

</head>

<body lang=EN-US link=blue vlink=blue>

<div class=Section1>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>Thank you. The following works fine<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal><font size=2 face=Arial><span style='font-size:10.0pt;
font-family:Arial'>Server:     gst-launch filesrc location=MPEG25_11_32_m.mp3 !
mp3parse ! udpsink host=<a href="http://192.168.15.174/" target="_blank"><font
color=black><span style='color:windowtext'>192.168.15.174</span></font></a>  port=5000<br>
<br>
Clinet:     gst-launch udpsrc port=5000 ! typefind !&nbsp; ffdec_mp3 ! alsasink<font
color=navy><span style='color:navy'><o:p></o:p></span></font></span></font></p>

<div>

<div class=MsoNormal align=center style='text-align:center'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>

<hr size=2 width="100%" align=center tabindex=-1>

</span></font></div>

<p class=MsoNormal><b><font size=2 face=Tahoma><span style='font-size:10.0pt;
font-family:Tahoma;font-weight:bold'>From:</span></font></b><font size=2
face=Tahoma><span style='font-size:10.0pt;font-family:Tahoma'>
gstreamer-devel-bounces@lists.sourceforge.net
[mailto:gstreamer-devel-bounces@lists.sourceforge.net] <b><span
style='font-weight:bold'>On Behalf Of </span></b>thiagoss<br>
<b><span style='font-weight:bold'>Sent:</span></b> Thursday, March 27, 2008
10:04 PM<br>
<b><span style='font-weight:bold'>To:</span></b> Daniel Díaz<br>
<b><span style='font-weight:bold'>Cc:</span></b>
gstreamer-devel@lists.sourceforge.net; Ramana Reddy Polaka<br>
<b><span style='font-weight:bold'>Subject:</span></b> Re: [gst-devel] Network
streaming using udpsrc and udpsink</span></font><o:p></o:p></p>

</div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal style='margin-bottom:12.0pt'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>Try this:<br>
<br>
</span></font><font size=2 face=Arial><span style='font-size:10.0pt;font-family:
Arial'>&gt; gst-launch filesrc location=MPEG25_11_32_m.mp3 ! mp3parse ! udpsink
host=<a href="http://192.168.15.174/" target="_blank"><font color=black><span
style='color:windowtext'>192.168.15.174</span></font></a>  port=5000<br>
&gt;<br>
&gt; gst-launch udpsrc port=5000 ! typefind !&nbsp; ffdec_mp3 ! alsasink<br>
<br>
Setting to sync false will make udpsink push too much data, and the other
process won't be able to receive that fast, probably most of them may not
arrive. And using mp3parse puts timestamps on the buffers, that makes it
possible to udpsink to send buffers on the right time.<br>
<br>
and on the receiver ffdec_mp3 requires that it receives &quot;mp3&quot;
streams, already with a type, udpsrc provides &quot;any&quot;, so typefind
would help.<br>
<br>
Hope it works.<br>
<br>
Thiago</span></font><o:p></o:p></p>

<div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>On Thu, Mar 27, 2008 at 3:01 AM, Daniel Díaz &lt;<a
href="mailto:mrchapp@gmail.com">mrchapp@gmail.com</a>&gt; wrote:<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>Hello, Ramana<br>
<br>
<br>
On Wed, Mar 26, 2008 at 10:46 PM, Ramana Reddy Polaka<o:p></o:p></span></font></p>

<div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>&lt; wrote:<o:p></o:p></span></font></p>

</div>

<div>

<p class=MsoNormal style='margin-bottom:12.0pt'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>&gt; Tried the following
also. But did not work.<br>
&gt;<br>
&gt; Receiver (Rx)<br>
&gt; gst-launch filesrc location=MPEG25_11_32_m.mp3 ! udpsink host=<a
href="http://192.168.15.174" target="_blank">192.168.15.174</a><br>
&gt; port=5000 sync=false<br>
&gt;<br>
&gt; Transmitter (Tx)<br>
&gt; gst-launch udpsrc port=5000 ! ffdec_mp3 ! alsasink<o:p></o:p></span></font></p>

</div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>Do you have to use UDP? You might want to try with
tcpserversrc/tcpclientsink.<br>
<br>
Greetings!<br>
<font color="#888888"><span style='color:#888888'><br>
Daniel Díaz<br>
<a href="mailto:yosoy@danieldiaz.org">yosoy@danieldiaz.org</a></span></font><o:p></o:p></span></font></p>

<div>

<p class=MsoNormal style='margin-bottom:12.0pt'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'><br>
<br>
<br>
&gt; Regards,<br>
&gt; Ramana<br>
&gt;<br>
&gt; &nbsp;________________________________<br>
&gt;<br>
&gt;<br>
&gt; From: thiagoss [mailto:<a href="mailto:thiagossantos@gmail.com">thiagossantos@gmail.com</a>]<br>
&gt; &nbsp;Sent: Wednesday, March 26, 2008 8:40 PM<br>
&gt; &nbsp;To: Ramana Reddy Polaka<br>
&gt; &nbsp;Subject: Re: [gst-devel] Network streaming using udpsrc and udpsink<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Probably removing the filesink and putting &quot;mad ! alsasink&quot;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; On Wed, Mar 26, 2008 at 3:09 AM, Ramana Reddy Polaka &nbsp;wrote:<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Using the following gst-launch command, I could dump mp3 data. But I want
to<br>
&gt; play it live. Can you please let me know how to achieve that? Say my host<br>
&gt; IP: <a href="http://192.168.15.174" target="_blank">192.168.15.174</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Receiver (Rx):<br>
&gt;<br>
&gt; gst-launch -v udpsrc ! filesink location=dump.mp3<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Transmitter (Tx):<br>
&gt;<br>
&gt; gst-launch -v filesrc location=MPEG25_11_32_m.mp3 ! udpsink<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Thanks in advance<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; Regards,<br>
&gt;<br>
&gt; Ramana<o:p></o:p></span></font></p>

</div>

</div>

</div>

</body>

</html>

<table><tr><td bgcolor=#ffffff><font color=#000000>**************** CAUTION - Disclaimer *****************<br>
This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION intended solely for the use of the addressee(s). If you are not the intended recipient, please notify the sender by e-mail and delete the original message. Further, you are not to copy, disclose, or distribute this e-mail or its contents to any other person and any such actions are unlawful. This e-mail may contain viruses. Infosys has taken every reasonable precaution to minimize this risk, but is not liable for any damage you may sustain as a result of any virus in this e-mail. You should carry out your own virus checks before opening the e-mail or attachment. Infosys reserves the right to monitor and review the content of all messages sent to or from this e-mail address. Messages sent to or from this e-mail address may be stored on the Infosys e-mail system.<br>
***INFOSYS******** End of Disclaimer ********INFOSYS***<br>
</font></td></tr></table>