hedgehog90
New Member
I want to retrieve a list of filters for a source, and if possible change the values through a Python script.
There is a function by the name of 'obs_source_enum_filters', but unlike other enum functions it doesn't return an array, and it requires obscure parameters that are only stated in the c code:
I've tried giving it a callback function but I get the error:
I don't know what a 'obs_source_enum_proc_t' is or how to create one.
Please help!
There is a function by the name of 'obs_source_enum_filters', but unlike other enum functions it doesn't return an array, and it requires obscure parameters that are only stated in the c code:
Code:
void obs_source_enum_filters(obs_source_t *source, obs_source_enum_proc_t callback, void *param)
I've tried giving it a callback function but I get the error:
Code:
in method 'obs_source_enum_filters', argument 2 of type 'obs_source_enum_proc_t'
I don't know what a 'obs_source_enum_proc_t' is or how to create one.
Please help!