Rella
Rella

Reputation: 66945

Is there any Graph Builder for GStreamer?

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

Upvotes: 2

Views: 2459

Answers (2)

SamB
SamB

Reputation: 9224

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.

Upvotes: 4

StackedCrooked
StackedCrooked

Reputation: 35485

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.

Upvotes: 6

Related Questions