<div dir="auto"><div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le dim. 17 nov. 2019 15 h 10, pfarmer <<a href="mailto:flacone@gmx.de" target="_blank" rel="noreferrer">flacone@gmx.de</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I am trying to store gstreamer buffer's to a filesink to be retrieved later<br>
by a filesrc. This is for testing reasons where I want to record data on<br>
various platforms with various cameras attached. <br>
Immage I do:<br>
```<br>
gst-launch-1.0 videotestsrc num-buffers=10 ! x264enc ! video/x-h264,<br>
stream-format=avc ! filesink location=test.raw <br>
```<br>
And load the avcC buffers with:<br>
```<br>
gst-launch-1.0 filesrc location=test.raw ! identity silent=false !<br>
video/x-h264, stream-format=avc ! h264parse ! avdec_h264 ! autovideosink<br>
```<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">H264parse is unable to process avcC from arbitrary alignment. Store data in byte-stream format or use one file per-AU (multifilesink).</div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I will get only 4096 Byte sized buffers from the filesrc which the parse is<br>
unable to handle since the avc stream-format relies on packets with known<br>
size. <br>
In this very specific example I could use the byte-stream format. But the is<br>
not an option for me since this is part of my testing process to be able to<br>
deal with avc format implementations. <br>
<br>
I saw rtpgstpay/depay which would be not ideal since it adds time stamping<br>
and own packetization. <br>
<br>
So is there a plugin or way to store "any" gstreamer buffer to a file, such<br>
that I can later retrieve them and inject them into the pipeline again<br>
(possibly losing time-stamp information)? <br>
<br>
If there is no other way then using rtpgstpay/depay how could I use those<br>
elements?<br>
<br>
<br>
<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/" rel="noreferrer noreferrer noreferrer" target="_blank">http://gstreamer-devel.966125.n4.nabble.com/</a><br>
_______________________________________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org" rel="noreferrer noreferrer" target="_blank">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer noreferrer noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a></blockquote></div></div></div>