Hi,
I'm trying to use gstreamer as a live stream repeater, and if i succeed, adding a re-encoding step. It currently does not work, and i don't understand why. My test pipeline, with gst-launch gst-launch -v rtspsrc location="rtsp://url" ! rtph264depay ! rtph264pay ! udpsink port=15000 sync=false everything seems fine in the debug of gstreamer, but there's nothing that appears on port 15000 on localhost (using netstat), and if i try to play the stream with mplayer, it tells me "Timeout! no data from localhost". Does anybody have some advice about this? thanks Florian ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Hi,
udpsink uses localhost IPv6. You must force udpsink host=localhost to use IPv4 There is no connection towards port 15000, so this is normal for netstat to not report anything on 15000 The best way to see what happens on your network is to use tcpdump. Aurelien Le 08/10/2010 09:50, Florian Iragne a écrit : > Hi, > > I'm trying to use gstreamer as a live stream repeater, and if i succeed, > adding a re-encoding step. > > It currently does not work, and i don't understand why. > > My test pipeline, with gst-launch > gst-launch -v rtspsrc location="rtsp://url" ! rtph264depay ! rtph264pay > ! udpsink port=15000 sync=false > > everything seems fine in the debug of gstreamer, but there's nothing > that appears on port 15000 on localhost (using netstat), and if i try to > play the stream with mplayer, it tells me "Timeout! no data from localhost". > > Does anybody have some advice about this? > > thanks > > Florian > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2& L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today. > http://p.sf.net/sfu/beautyoftheweb > _______________________________________________ > gstreamer-devel mailing list > [hidden email] > https://lists.sourceforge.net/lists/listinfo/gstreamer-devel > > ------------------------------------------------------------------------------ Beautiful is writing same markup. Internet Explorer 9 supports standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. Spend less time writing and rewriting code and more time creating great experiences on the web. Be a part of the beta today. http://p.sf.net/sfu/beautyoftheweb _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.sourceforge.net/lists/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |