<div dir="ltr">Thank you Tim, I did exactly that, but the result is the same.<br><br><a href="http://pastebin.com/n8EHCGKY">http://pastebin.com/n8EHCGKY</a><br><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 4, 2015 at 5:12 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">On Fri, 2015-12-04 at 16:49 +0600, Yakov Sudeikin wrote:<br>
<br>
Hi,<br>
<span class=""><br>
> <a href="http://pastebin.com/tWGsELib" rel="noreferrer" target="_blank">http://pastebin.com/tWGsELib</a><br>
><br>
> This is a dot file.<br>
><br>
> I added a tee element and the pipeline is stuck in READY.<br>
><br>
> But both branches (ximagesink, rtmpsink) will play if used alone<br>
> without tee.<br>
><br>
> What prevents it from playing both branches at once?<br>
<br>
</span>You need a queue in both branches after the tee, so add a queue before<br>
videoconvert ! ximagesink as well.<br>
<br>
If you don't tee will push to videoconvert which will push to<br>
ximagesink which will block as it is prerolled, waiting for the<br>
pipeline to go to playing. The pipeline however will now wait for all<br>
sinks to have data, but tee can't push data to the second branch<br>
because it's stuck in the first one in preroll. The queue fixes that.<br>
<br>
Cheers<br>
<span class="HOEnZb"><font color="#888888"> -Tim<br>
<br>
--<br>
Tim Müller, Centricular Ltd - <a href="http://www.centricular.com" rel="noreferrer" target="_blank">http://www.centricular.com</a><br>
<br>
<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" rel="noreferrer" target="_blank">http://lists.freedesktop.org/mailman/listinfo/gstreamer-devel</a><br>
</font></span></blockquote></div><br></div>