views:

80

answers:

2

Is there any Graph Builder for GStreamer? So to say you build graph you get code

+3  A: 

gst-editor seems to be something like what you are looking for. It doesn't appear to support generating C++ code, but what it does support is saving XML that can be loaded into your program in the same way that libglade allows you to load Glade GUIs. It looks very intuitive and low-nonsense, judging by the screen shots.

SamB
+3  A: 

There is gst-editor. But last time I checked it was really buggy and badly maintained.

If you want to design a pipeline quickly you can use the gst-launch tool. The gst-launch description can then be imported in your code using the gst_parse_launch call.

StackedCrooked