a not working 'tee' pipeline

Nathanael D. Noblet nathanael at gnat.ca
Fri Nov 11 09:05:09 PST 2011


On 11/11/2011 08:06 AM, ibrahim suliman wrote:
>
> /* link the elements */
> gst_element_link_many (source, vrate, filter, conv, tee, queue_1 , NULL);
> gst_element_link (tee, queue_2 );
> gst_element_link (bin_1, bin_2 );
> gst_element_link (bin_1, bin_3 );

Tee's don't link that way. You have to request a pad and then link the 
pads manually.


Using google I found the following which has a C code example you can use.

http://delog.wordpress.com/2011/06/06/gstreamer-pipeline-with-tee/


More information about the gstreamer-devel mailing list