<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Ok, I try that.<br>
    To be sure I can get the pipline working.<br>
    data->pipeline = gst_parse_launch("udpsrc port=4000
    caps=\"application/x-rtp, media=(string)video,
    clock-rate=(int)90000, encoding-name=(string)H264\" ! rtph264depay !
    ffdec_h264 ! xvimagesink sync=false", &error);<br>
    <br>
    But error message is "no element ffdec_h264" is this element not
    available on android?<br>
    And also for xvimagesink, but I think, that's not the right sink for
    using in Android.<br>
    What could be her the right output?<br>
    <br>
    Sebastian,<br>
    you said, or just use the rtsp stream to config?<br>
    Yes, that would be nice, but I didn't know how.<br>
    Can you point me in the right direction, or give me a hint ?<br>
    <br>
    Thanks<br>
    peter<br>
    <br>
    <br>
    <div class="moz-cite-prefix">Am 27.09.2013 21:17, schrieb Sebastian
      Dröge:<br>
    </div>
    <blockquote cite="mid:1380309470.2465.24.camel@thor.lan" type="cite">
      <pre wrap="">On Fr, 2013-09-27 at 16:33 +0200, Peter Hafner wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">Hi,
really a newbie on gstreamer.
I have on a host the gst-launch application running.
Here the line.
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

Now I want to use for the first test's the Tutorial5.
My idea was, to change the original
data->pipeline = gst_parse_launch("playbin2", &error);
with 
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);
</pre>
      </blockquote>
      <pre wrap="">
You are missing the actual source element in that pipeline. Also the
escaping of the caps is not exactly trivial and there might be a mistake
there...

It will be easier if you don't put it in a single pipeline string but
build the pipeline manually... or just use RTSP for the stream
configuration.
</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
gstreamer-android mailing list
<a class="moz-txt-link-abbreviated" href="mailto:gstreamer-android@lists.freedesktop.org">gstreamer-android@lists.freedesktop.org</a>
<a class="moz-txt-link-freetext" href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-android">http://lists.freedesktop.org/mailman/listinfo/gstreamer-android</a>
</pre>
    </blockquote>
    <br>
  </body>
</html>