gobject introspection property not available in python

270 Views Asked by At

I'm having some trouble with python introspection and a custom Gstreamer element...I'm unable to access properties on the element. Here's the relevant code in my gstreamer element:

// Properties declared on the class object
static void gst_videoautogain_class_init(VipreautogainClass* pKlass)
{
  // ... more stuff
  g_object_class_install_property(G_OBJECT_CLASS(pKlass), PROP_LOW_STRETCH,
                                   g_param_spec_float("low_stretch",
                                                      "Low stretch percentile",
                                                      "The percentile corresponding to the lowest output value.",
                                                      0., 1., 0.02,
                                                      G_PARAM_READWRITE));
  g_object_class_install_property(G_OBJECT_CLASS(pKlass), PROP_HIGH_STRETCH,
                                   g_param_spec_float("high_stretch",
                                                      "High stretch percentile",
                                                      "The percentile corresponding to the highest output value.",
                                                      0., 1., 0.98,
                                                      G_PARAM_READWRITE));
}

The properties show up in gst-inspect-1.0. Here's an example of attempting to access the properties in python:

import gi
gi.require_version('Gst', '1.0')
from gi.repository import Gst, GObject
Gst.init([])
p = Gst.parse_launch("videotestsrc ! videoautogain low-stretch=0.05 name=gain ! fakesink")
g = p.get_by_name('gain')
g.props.low_stretch            # 'GProps' object has no attribute 'low_stretch'
g.get_property('low-stretch')  # Unknown property: 'low-stretch'
0

There are 0 best solutions below