I am trying to send a video stream between 2 systems using udp and it doesn't seem to work. I am using gstreamer 0.10.29.<br><br>Capture pipeline: gst-launch -v v4l2src always-copy=FALSE device=/dev/video0 ! 'video/x-raw-yuv, format=(fourcc)I420,width=640,height=480,framerate=10/1' ! ffmpegcolorspace ! \<br>
   queue ! ffmpegcolorspace ! x264enc byte-stream=TRUE bitrate=256 ! mpegtsmux ! udpsink host=192.168.10.237,port=6000<br><br>Receive pipeline: gst-launch -v udpsrc port=6000 ! mpegtsdemux ! ffdec_h264 ! ffmpegcolorspace ! xvimagesink<br>
<br>According to wireshark there aren't any udp packets on the Tx NIC (I think). I have tried substituting filesink/filesrc for the udpsink/udpsrc and that worked. I also merged the 2 pipelines simply connecting the mpegtsmux ! mpedtsdemux and that worked. So I think that I have messed up the udp somehow.<br>
<br>gst-plugins-good 0.10.23 <br><br>Any suggestions (please)?<br><br>Thank you,<br>Chuck<br>