Hi, <br><br>Thanks a lot Wim.<br>I am able to run and get the RTP data.<br><br>But when i try getting RTCP data, i am not able to get it even in loop-back.<br>"tcpdump -T rtcp" doesn't give ant RTCP packet.<br>
Though it is printing me some UDP and TCP packets ( may be rtcp but i am not too sure.)<br>"as tcpdump -T rtp" clearly lists me the udp/rtpv1 packets.<br><br>Also i need to get the RTCP data from Gstreamer, how can i get it???<br>
Can i dump these RTCP packets in some filesink ???<br><br>Please Help....<br><br>Thanks and Regards<br>Manish<br><br><br><br><div class="gmail_quote">On Thu, May 8, 2008 at 7:37 PM, Wim Taymans <<a href="mailto:wim.taymans@gmail.com">wim.taymans@gmail.com</a>> wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">On Thu, 2008-05-08 at 19:25 +0530, Manish Rana wrote:<br>
> Hi,<br>
><br>
> I can run the same pipelines in loopback.<br>
> To test it live can someone please tell me the settings for UDPSRC.<br>
<br>
</div>Unless you are receiving UDP from a multicast group, you don't need to<br>
set anything for the uri in udpsrc, just the port number to listen on is<br>
enough.<br>
<br>
Wim<br>
<div><div></div><div class="Wj3C7c">><br>
> Server: gst-launch filesrc location=MPEG25_11_32_m.mp3 !<br>
> mp3parse ! udpsink host=<a href="http://192.168.15.174" target="_blank">192.168.15.174</a> port=5000<br>
><br>
> Clinet: gst-launch udpsrc uri= ????? port=5000 ! typefind !<br>
> ffdec_mp3 ! alsasink<br>
><br>
> BR<br>
> Manish<br>
><br>
><br>
><br>
> On Fri, Mar 28, 2008 at 10:24 AM, Ramana Reddy Polaka<br>
> <<a href="mailto:Ramana_Polaka@infosys.com">Ramana_Polaka@infosys.com</a>> wrote:<br>
> Thank you. The following works fine<br>
><br>
><br>
><br>
> Server: gst-launch filesrc location=MPEG25_11_32_m.mp3 !<br>
> mp3parse ! udpsink host=<a href="http://192.168.15.174" target="_blank">192.168.15.174</a> port=5000<br>
><br>
> Clinet: gst-launch udpsrc port=5000 ! typefind !<br>
> ffdec_mp3 ! alsasink<br>
><br>
><br>
> ______________________________________________________________<br>
> <a href="mailto:From%3Agstreamer-devel-bounces@lists.sourceforge.net">From:gstreamer-devel-bounces@lists.sourceforge.net</a><br>
> [mailto:<a href="mailto:gstreamer-devel-bounces@lists.sourceforge.net">gstreamer-devel-bounces@lists.sourceforge.net</a>] On<br>
> Behalf Of thiagoss<br>
> Sent: Thursday, March 27, 2008 10:04 PM<br>
> To: Daniel Díaz<br>
> Cc: <a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a>; Ramana Reddy Polaka<br>
><br>
><br>
> Subject: Re: [gst-devel] Network streaming using udpsrc and<br>
> udpsink<br>
><br>
><br>
> Try this:<br>
><br>
> > gst-launch filesrc location=MPEG25_11_32_m.mp3 ! mp3parse !<br>
> udpsink host=<a href="http://192.168.15.174" target="_blank">192.168.15.174</a> port=5000<br>
> ><br>
> > gst-launch udpsrc port=5000 ! typefind ! ffdec_mp3 !<br>
> alsasink<br>
><br>
> Setting to sync false will make udpsink push too much data,<br>
> and the other process won't be able to receive that fast,<br>
> probably most of them may not arrive. And using mp3parse puts<br>
> timestamps on the buffers, that makes it possible to udpsink<br>
> to send buffers on the right time.<br>
><br>
> and on the receiver ffdec_mp3 requires that it receives "mp3"<br>
> streams, already with a type, udpsrc provides "any", so<br>
> typefind would help.<br>
><br>
> Hope it works.<br>
><br>
> Thiago<br>
><br>
><br>
> On Thu, Mar 27, 2008 at 3:01 AM, Daniel Díaz<br>
> <<a href="mailto:mrchapp@gmail.com">mrchapp@gmail.com</a>> wrote:<br>
><br>
> Hello, Ramana<br>
><br>
><br>
> On Wed, Mar 26, 2008 at 10:46 PM, Ramana Reddy Polaka<br>
><br>
><br>
><br>
> < wrote:<br>
><br>
><br>
> > Tried the following also. But did not work.<br>
> ><br>
> > Receiver (Rx)<br>
> > gst-launch filesrc location=MPEG25_11_32_m.mp3 ! udpsink<br>
> host=<a href="http://192.168.15.174" target="_blank">192.168.15.174</a><br>
> > port=5000 sync=false<br>
> ><br>
> > Transmitter (Tx)<br>
> > gst-launch udpsrc port=5000 ! ffdec_mp3 ! alsasink<br>
><br>
><br>
> Do you have to use UDP? You might want to try with<br>
> tcpserversrc/tcpclientsink.<br>
><br>
> Greetings!<br>
><br>
> Daniel Díaz<br>
> <a href="mailto:yosoy@danieldiaz.org">yosoy@danieldiaz.org</a><br>
><br>
><br>
><br>
><br>
> > Regards,<br>
> > Ramana<br>
> ><br>
> > ________________________________<br>
> ><br>
> ><br>
> > From: thiagoss [mailto:<a href="mailto:thiagossantos@gmail.com">thiagossantos@gmail.com</a>]<br>
> > Sent: Wednesday, March 26, 2008 8:40 PM<br>
> > To: Ramana Reddy Polaka<br>
> > Subject: Re: [gst-devel] Network streaming using udpsrc and<br>
> udpsink<br>
> ><br>
> ><br>
> ><br>
> > Probably removing the filesink and putting "mad ! alsasink"<br>
> ><br>
> ><br>
> ><br>
> ><br>
> > On Wed, Mar 26, 2008 at 3:09 AM, Ramana Reddy Polaka wrote:<br>
> ><br>
> ><br>
> ><br>
> ><br>
> ><br>
> > Hi,<br>
> ><br>
> ><br>
> ><br>
> > Using the following gst-launch command, I could dump mp3<br>
> data. But I want to<br>
> > play it live. Can you please let me know how to achieve<br>
> that? Say my host<br>
> > IP: <a href="http://192.168.15.174" target="_blank">192.168.15.174</a><br>
> ><br>
> ><br>
> ><br>
> > Receiver (Rx):<br>
> ><br>
> > gst-launch -v udpsrc ! filesink location=dump.mp3<br>
> ><br>
> ><br>
> ><br>
> > Transmitter (Tx):<br>
> ><br>
> > gst-launch -v filesrc location=MPEG25_11_32_m.mp3 ! udpsink<br>
> ><br>
> ><br>
> ><br>
> ><br>
> ><br>
> ><br>
> ><br>
> > Thanks in advance<br>
> ><br>
> ><br>
> ><br>
> > Regards,<br>
> ><br>
> > Ramana<br>
><br>
><br>
><br>
> **************** CAUTION - Disclaimer *****************<br>
> This e-mail contains PRIVILEGED AND CONFIDENTIAL INFORMATION<br>
> intended solely for the use of the addressee(s). If you are<br>
> not the intended recipient, please notify the sender by e-mail<br>
> and delete the original message. Further, you are not to copy,<br>
> disclose, or distribute this e-mail or its contents to any<br>
> other person and any such actions are unlawful. This e-mail<br>
> may contain viruses. Infosys has taken every reasonable<br>
> precaution to minimize this risk, but is not liable for any<br>
> damage you may sustain as a result of any virus in this<br>
> e-mail. You should carry out your own virus checks before<br>
> opening the e-mail or attachment. Infosys reserves the right<br>
> to monitor and review the content of all messages sent to or<br>
> from this e-mail address. Messages sent to or from this e-mail<br>
> address may be stored on the Infosys e-mail system.<br>
> ***INFOSYS******** End of Disclaimer ********INFOSYS***<br>
><br>
><br>
> -------------------------------------------------------------------------<br>
> Check out the new SourceForge.net Marketplace.<br>
> It's the best place to buy or sell services for<br>
> just about anything Open Source.<br>
> <a href="http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace" target="_blank">http://ad.doubleclick.net/clk;164216239;13503038;w?http://sf.net/marketplace</a><br>
> _______________________________________________<br>
> gstreamer-devel mailing list<br>
> <a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>
> <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>
><br>
><br>
><br>
><br>
> --<br>
> Manish Rana<br>
> Senior Software Engg.<br>
> Handset Technology Solution,<br>
> Sasken Comm. Tech.<br>
> Bangalore,India<br>
</div></div>> -------------------------------------------------------------------------<br>
> This SF.net email is sponsored by the 2008 JavaOne(SM) Conference<br>
> Don't miss this year's exciting event. There's still time to save $100.<br>
> Use priority code J8TL2D2.<br>
> <a href="http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone" target="_blank">http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone</a><br>
> _______________________________________________ gstreamer-devel mailing list <a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a> <a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>
<br>
</blockquote></div>