I'm trying to access the "last-sample" property from GstXvImageSink which is derived from GstBaseSink. I'm getting:
TypeError: object of type 'GstXvImageSink' does not have property 'last-sample'
Is there a special way to get properties from base classes in pygtk or is this property somehow hidden?
Code:
def take_snapshoot(self):
sample = self.__snapshot_source_video_sink.get_property("last-sample")