<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<br>
&nbsp;&nbsp;&nbsp; Hello,<br>
<br>
this is the second part of a previous question named "flutsmux video
time". I want to do streaming over the network with my MPEG2-TS
video/audio.<br>
<br>
&nbsp;&nbsp;&nbsp; What I do is to substitute in my pipeline the "filesink" by an
"udpsink" (with ip and port), so the pipeline could be something like
this (just video):<br>
<br>
<i>gst-launch-0.10 videotestsrc is-live=true !
video/x-raw-yuv,format=(fourcc)I420,width=640,height=480,framerate=(fraction)25/1
! \
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; videorate ! queue ! x264enc ! h264parse ! queue ! mux.
\
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; flutsmux name=mux ! udpsink ip=192.168.0.2 port=5001<br>
<font color="#3366ff">Setting pipeline to PAUSED ...<br>
Pipeline is live and does not need PREROLL ...<br>
Setting pipeline to PLAYING ...<br>
New clock: GstSystemClock<br>
x264 [info]: using SAR=1/1<br>
x264 [info]: using cpu capabilities: MMX MMXEXT SSE SSE2 SSE3 SSSE3
Cache64 </font></i><br>
<br>
&nbsp;&nbsp;&nbsp; And receive and display the video (being at 192.168.0.2), I guess
that I should do:<br>
<br>
<i>gst-launch-0.10 udpsrc port=5001 ! flutsdemux name=demux demux. !
rtph264depay ! decodebin ! autovideosink</i><br>
<font color="#3366ff"><i>Setting pipeline to PAUSED ...<br>
Pipeline is live and does not need PREROLL ...<br>
Setting pipeline to PLAYING ...<br>
New clock: FluTSClock</i></font><br>
<br>
&nbsp;&nbsp;&nbsp; Any suggestion? Both pipelines stay waiting. What am I doing wrong?<br>
<br>
&nbsp;&nbsp;&nbsp; Thanks in advance (again!).<br>
&nbsp;&nbsp;&nbsp; Regards.<br>
&nbsp;&nbsp;&nbsp; LD.<br>
<br>
<br>
</body>
</html>