<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-15">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hi,<br>
    really a newbie on gstreamer.<br>
    I have on a host the gst-launch application running.<br>
    Here the line.<br>
    gst-launch  --gst-debug-level=3 -v videotestsrc !
    video/x-raw-yuv,width=640,height=480 ! TIVidenc1 codecName=h264enc
    engineName=codecServer ! rtph264pay pt=96 ! udpsink
    host=192.168.1.132 port=4000<br>
    <br>
    Now I want to use for the first test's the Tutorial5.<br>
    My idea was, to change the original<br>
    <i>data->pipeline = gst_parse_launch("playbin2", &error);</i><br>
    with <br>
    <i>data->pipeline = gst_parse_launch("\'\"application/x-rtp,
      media=(string)video, clock-rate=(int)90000,
      encoding-name=(string)H264,
      sprop-parameter-sets=(string)\\\"Z0KAHukBQHpCAAAH0AAB1MAI\\\\=\\\\=\\\\,aM48gA\\\\=\\\"'
      ! rtph264depay ! ffdec_h264 ! xvimagesink sync=false\"\'",
      &error);</i><i><br>
    </i><br>
    Hmm, it was clear, decoding failure. :-)<br>
    On my linux dev machine, I have this line running.<br>
    <i>gst-launch-0.10 --gst-debug-level=3 -v udpsrc port=4000
      caps='application/x-rtp, media=(string)video,
      clock-rate=(int)90000, encoding-name=(string)H264,
      sprop-parameter-sets=(string)\"Z0KAHukBQHpCAAAH0AAB1MAI\\=\\=\\,aM48gA\\=\"'
      ! rtph264depay ! ffdec_h264 ! xvimagesink sync=false</i><i><br>
    </i><br>
    Maybe I'm totally wrong, but playbin2, can not handle udp-streams?
    Or?<br>
    Is it the correct way, of course for testing only, and coming a
    little bit more closer, to the gstreamer.<br>
    <br>
    Thanks<br>
    <br>
  </body>
</html>