<div dir="ltr">That did the trick, thanks.  For the sake of any future searchers, the full command was:<br><br>gst-launch-0.10 filesrc location=in.h264 ! h264parse ! video/x-h264,alignment=au,stream-format=byte-stream ! filesink location=out.h264<br>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jan 28, 2014 at 6:30 PM, Tim Müller <span dir="ltr"><<a href="mailto:tim@centricular.com" target="_blank">tim@centricular.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">On Tue, 2014-01-28 at 08:16 -0600, Timm Murray wrote:<br>
<br>
> My app requires fetching each frame of an h264 stream, wrapping the<br>
> frame in custom headers, and then sending it over the network.<br>
<br>
</div>Then you probably want something like:<br>
<br>
  .. ! h264parse !<br>
video/x-h264,alignment=au,stream-format=byte-stream ! ...<br>
<br>
(or just stream-format=avc which implies frame alignment already, if you<br>
don't want annex-b type data).<br>
<br>
 Cheers<br>
  -Tim<br>
<div class="im HOEnZb"><br>
> For testing, I'm using a raw .h264 file and trying to fetch each frame<br>
> in a fakesink.  On the command line, it's similar to this:<br>
><br>
> $ gst-launch-0.10 filesrc location=in.h264 ! h264parse ! filesink<br>
> location=out.h264<br>
><br>
><br>
> I would have expected out.h264 to be identical to in.h264.  And they<br>
> are the right size, but there are slight differences between them:<br>
><br>
> $ ls -l in.h264 out.h264<br>
> -rw-r--r-- 1 user group 100495 Jan 19 17:00 in.h264<br>
> -rw-r--r-- 1 user group 100495 Jan 28 08:00 out.h264<br>
> $ sha1sum in.h264 out.h264<br>
> 2046b04ed23d3980d35c4819a97358113beb0f6c  in.h264<br>
> ef8233787e025dfc8aeb4b8f1a245014bb43d528  out.h264<br>
><br>
><br>
> Looking at them in a hex editor, in.h264 starts with 0x00000001, and<br>
> out.h264 starts with 0x0000000A.  There are a few other differences<br>
> here and there, too.  It's enough that mplayer doesn't detect the<br>
> right filetype and refuses to play in (in.h264 plays fine).<br>
><br>
</div><div class="im HOEnZb">> _______________________________________________<br>
> gstreamer-devel mailing list<br>
> <a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
> <a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
<br>
</div><span class="HOEnZb"><font color="#888888">--<br>
Tim Müller, Centricular Ltd - <a href="http://www.centricular.com" target="_blank">http://www.centricular.com</a><br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</div></div></blockquote></div><br></div>