[Bug 796754] GESTimeline is not entirely compatible with GstPipeline

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Thu Jul 5 19:03:40 UTC 2018


https://bugzilla.gnome.org/show_bug.cgi?id=796754

Thibault Saunier <tsaunier at gnome.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |tsaunier at gnome.org

--- Comment #1 from Thibault Saunier <tsaunier at gnome.org> ---
For now you can do (this is python):

```
from gi.repository import Gst
Gst.init(None)
from gi.repository import GES
GES.init()
track = GES.AudioTrack.new()
for elem in track.iterate_elements():
    if elem.get_factory().get_name() == "nlecomposition":
        print(elem)
        break
```

which prints:

<__gi__.NleComposition object at 0x7f9bf8789678 (NleComposition at
0x555e87fe4260)>

I agree we might want to proxy the signal, patch welcome :-)

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list