<div dir="ltr"><div dir="ltr">On Wed, Jul 1, 2020 at 9:51 AM facepalm <<a href="mailto:ejlungay@gmail.com">ejlungay@gmail.com</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">In my gst-python plugin I wanted to get the pipeline so that I can query all<br>
plugins from the pipeline by name and update their properties.<br></blockquote><div><br></div>Something like this:<br><br>self = playbin.get_by_name('mix')<br>bin = self.get_parent()  # may need to recurse up if bins are nested<br>for el in bin.iterate_elements():<br>    print(el.get_name())<br><br> </div></div>