Thanks!<br><br><div class="gmail_quote">On Wed, Jan 14, 2009 at 3:15 AM, Arnout Vandecappelle <span dir="ltr">&lt;<a href="mailto:arnout@mind.be">arnout@mind.be</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Monday 12 January 2009 21:24:20 OB Lutz wrote:<br>
&gt; gst-launch -vvv gstrtpbin name=rtpbin \<br>
&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tcpserversrc host=127.0.0.1 port=1235 ! videoparse<br>
&gt; format=YUY2 width=404 height=424 framerate=20/1 bpp=16 ! \ tee<br>
&gt; name=splitter splitter.&nbsp; ! queue ! typefind ! pngenc snapshot=false !<br>
&gt; multifilesink sync=false preroll-queue-len=20 location=/tmp/output.png -vvv<br>
&gt; splitter.<br>
<br>
</div>&nbsp;You don&#39;t need a typefind in your pipeline. &nbsp;It fails to find the type of the<br>
raw video (there&#39;s nothing in a raw video stream to indicate what type it is)<br>
and therefore it doesn&#39;t negotiate its caps with the pngenc.<br>
<br>
&nbsp;To debug a pipeline, it&#39;s convenient to strip it down until something works,<br>
that way you can find out which element causes the problem. &nbsp;You can replace<br>
a video source with videotestsrc and the sink with fakesink. &nbsp;That way,<br>
you&#39;ll find out that<br>
<br>
&nbsp;videotestsrc ! typefind ! pngenc snapshot=false ! fakesink<br>
<br>
doesn&#39;t work, while<br>
<br>
&nbsp;videotestsrc ! pngenc snapshot=false ! fakesink<br>
<br>
does work.<br>
<div class="Ih2E3d"><br>
&nbsp;Regards,<br>
&nbsp;Arnout<br>
--<br>
Arnout Vandecappelle &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; arnout at mind be<br>
Senior Embedded Software Architect &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; +32-16-286540<br>
Essensium/Mind &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <a href="http://www.mind.be" target="_blank">http://www.mind.be</a><br>
G.Geenslaan 9, 3001 Leuven, Belgium &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;BE 872 984 063 RPR Leuven<br>
LinkedIn profile: <a href="http://www.linkedin.com/in/arnoutvandecappelle" target="_blank">http://www.linkedin.com/in/arnoutvandecappelle</a><br>
GPG fingerprint: &nbsp;D206 D44B 5155 DF98 550D &nbsp;3F2A 2213 88AA A1C7 C933<br>
<br>
------------------------------------------------------------------------------<br>
</div>This SF.net email is sponsored by:<br>
SourcForge Community<br>
SourceForge wants to tell your story.<br>
<a href="http://p.sf.net/sfu/sf-spreadtheword" target="_blank">http://p.sf.net/sfu/sf-spreadtheword</a><br>
<div><div></div><div class="Wj3C7c">_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.sourceforge.net">gstreamer-devel@lists.sourceforge.net</a><br>
<a href="https://lists.sourceforge.net/lists/listinfo/gstreamer-devel" target="_blank">https://lists.sourceforge.net/lists/listinfo/gstreamer-devel</a><br>
</div></div></blockquote></div><br>