Hi!<br><br>I have a little problem.<br><br>I wanted to send and receive
raw video data on the same PC via rtp.&nbsp; But I couldn&#39;t do that
properly. It froze after getting the first frame.<br>Then I tried to do this via tcp and searching for the problem I found this solution:<br><br>sender:<br>1, videotestsrc <br>gst-launch videotestsrc pattern=snow do-timestamp=true is-live=true ! gdppay ! queue ! tcpserversink port=1234 host=localhost<br>
2, or webcam<br>gst-launch v4lsrc device=/dev/video0 ! gdppay ! queue ! tcpserversink port=1234 host=localhost<br><br>receiver:<br>gst-launch -v tcpclientsrc port=1234 host=localhost ! gdpdepay !&nbsp; queue ! ffmpegcolorspace ! xvimagesink<br>
<br>This works well. But when I tried to do the rtp the way like that...<br><br>sender:<br>gst-launch
-v gstrtpbin name=rtpbin videotestsrc pattern=snow ! ffenc_h263p !
rtph263ppay ! queue ! rtpbin.send_rtp_sink_0 rtpbin.send_rtp_src_0 !
udpsink host=localhost port=5000 rtpbin.send_rtcp_src_0 ! udpsink
port=5001 sync=false async=false udpsrc port=5005 !
rtpbin.recv_rtcp_sink_0<br><br>receiver:<br>gst-launch -v gstrtpbin
name=rtpbin udpsrc
caps=&quot;application/x-rtp,media=(string)video,clock-rate=(int)90000,encoding-name=(string)H263-1998&quot;&nbsp;
port=5000 ! rtpbin.recv_rtp_sink_0 rtpbin. ! rtph263pdepay ! ffdec_h263
! queue ! xvimagesink udpsrc port=5001 ! rtpbin.recv_rtcp_sink_0
rtpbin.send_rtcp_src_0 ! udpsink port=5005 sync=false async=false<br><br>... it still didn&#39;t work.<br><br>Any help? Thx in advance.<br><br>Zoli