<div dir="auto"><div>First of all, I'm actually working under Windows, not Linux.<div dir="auto">Second, isn't there a Gstreamer tool that would prevent me from reading the file and seeking the cursor by myself? </div>Thanks for your response by the way.<br><div class="gmail_extra"><br><div class="gmail_quote">Le 24 nov. 2017 19:50, "HermannSW" <<a href="mailto:hermann@stamm-wilbrandt.de">hermann@stamm-wilbrandt.de</a>> a écrit :<br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="quoted-text">> Can I get the image data into something like pixel array instead of solid<br>
file?<br>
><br>
</div>Others may know.<br>
<br>
>From a performance perspective I would store the files of multifilesink<br>
under "/dev/shm", a tmpfs filesystem under many Unix-like OSes (exists even<br>
on Raspbian).<br>
<br>
All files will end up in memory which is efficient, but they are paged and<br>
not contiguous.<br>
For getting access to a single of those frames as pixel array in memory you<br>
would have to read them (eg. with fopen/fseek/ftell/fread).<br>
If you do that on a one frame after the other basis, your memory consumption<br>
would be N+1 frames, not bad compared to the N frames memory consumption you<br>
requested.<br>
<div class="elided-text"><br>
<br>
<br>
--<br>
Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/" rel="noreferrer" target="_blank">http://gstreamer-devel.966125.<wbr>n4.nabble.com/</a><br>
______________________________<wbr>_________________<br>
gstreamer-devel mailing list<br>
<a href="mailto:gstreamer-devel@lists.freedesktop.org">gstreamer-devel@lists.<wbr>freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer" target="_blank">https://lists.freedesktop.org/<wbr>mailman/listinfo/gstreamer-<wbr>devel</a><br>
</div></blockquote></div><br></div></div></div>