I am customizing now OpenShot to change brightness of video. I already figured out that I need to add sws_getColorspaceDetails / sws_setColorspaceDetails​ functions to convert_image() of producer_avformat.
But I am wondering how to access producer_avformat object from the python code to pass brightness as parameters.
In Python code producer are created here: self.p = mlt.Producer( self.profile, 'xml:%s' % self.file_name)
But it is another producer.
Regards