<div dir="auto"><div><br><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Le lun. 4 nov. 2019 11 h 55, jles <<a href="mailto:jlesquer@gmail.com">jlesquer@gmail.com</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
First of all saying that I'm relatively new with gstreamer, apologise if<br>
this question is too obvious and/or is already answered which in that case<br>
I'd appreciate the link to the answer.<br>
<br>
I've got a simple working pipeline using an appsrc element as source which<br>
it's got the next form:<br>
<br>
appsrc -> queue -> omxh264enc -> queue -> h264parse -> filesink<br>
<br>
The data is pushed into appsrc running a "need-data" callback function and a<br>
Gmain loop, the snippet code:<br>
<br>
loop = g_main_loop_new (NULL, FALSE);<br>
<br>
/*SETUP PIPELINE*/<br>
<br>
g_signal_connect (appsrc, "need-data", G_CALLBACK (cb_need_data),pipeline);<br>
<br>
/* play */<br>
gst_element_set_state (pipeline, GST_STATE_PAUSE);<br>
g_main_loop_run (loop);<br>
<br>
<br>
The pushed frames into appsrc are coming from a live camera. Now I need to<br>
run multiple pipelines as the described above to be able to record<br>
simultaneously different cameras.<br>
<br>
The first think I thought is to 'copy' the pipeline in a difference<br>
instances  using a structure and run several main loops (g_main_loop_run )<br>
but the gmain loop is blocking so it only be recorded one camera as the rest<br>
won't have the chance to start once the g_main_loop_run is called.<br>
<br>
My questions are:<br>
<br>
Would it be possible to run multiple pipelines (as described above) in<br>
'parallel'?<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">Yes, you can set multiple pipelines into playing state before entering your mainloop. You can also create more later within a main loop message (callback). Note that a mainloop is optional in GStreamer.</div><div dir="auto"><br></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">
<br>
What would it be the best way to do this?<br>
<br>
Thanks in advance.<br>
<br>
<br>
<br>
<br>
--<br>
Sent from: <a href="http://gstreamer-devel.966125.n4.nabble.com/" rel="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" target="_blank" rel="noreferrer">gstreamer-devel@lists.freedesktop.org</a><br>
<a href="https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel" rel="noreferrer noreferrer" target="_blank">https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a></blockquote></div></div></div>