How to get vertical scroll filter property?

FakiR

New Member
Hello!
It is necessary to get/set the value of the vertical speed property. The "verticalSpeed" property has a value of 500 (the maximum value of the slider), but in OBS I manually set 35. How to get exactly the value 35?
A side question - how can I see all the available filter properties?

obs_data_t* source = obs_get_source_by_name("SOURCE_NAME");
obs_data_t* filter = obs_source_get_filter_by_name(source, "FILTER_NAME");
obs_data_t* settings = obs_source_get_settings(filter);
vspeed = obs_data_get_int(settings, "verticalSpeed");

Thank you for any help!
 
Top