You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find that with both audio and video filters, I often want to slightly adjust the filter values.
It would be possible to set up several stepped values as different named filters, and turn those on and off with obs-filter-hotkeys, but it would be more useful for my use case to just have hotkey control over the values themselves...
For example, in Color Correction Filters:
it would be good to be able to select e.g. Brightness, and attach hotkeys to up, down, and 'reset' (to zero) or a hotkey for a specific value. Then I could bind these hotkeys to my stream deck and have buttons that don't require opening the Color Correction panel.
The text was updated successfully, but these errors were encountered:
For Color Correction you would write print_settings2(source, "Color Correction") - to get the names of keys which are modifiable, then set settings using that key.
The output looks like this:
[---------- settings ----------
{"contrast":-2.0099999999999998}
---------- private_settings ----------
{}
---------- default settings for this source type ----------
{"brightness":0.0,"color_add":0,"color_multiply":16777215,"contrast":0.0,"gamma":0.0,"hue_shift":0.0,"opacity":1.0,"saturation":0.0}
---------- default private settings for this source type ----------
{}
----------Color Correction----------]
Some stuff can be written in pure Lua, some only in cdefs .
I find that with both audio and video filters, I often want to slightly adjust the filter values.
It would be possible to set up several stepped values as different named filters, and turn those on and off with
obs-filter-hotkeys
, but it would be more useful for my use case to just have hotkey control over the values themselves...For example, in Color Correction Filters:
it would be good to be able to select e.g. Brightness, and attach hotkeys to up, down, and 'reset' (to zero) or a hotkey for a specific value. Then I could bind these hotkeys to my stream deck and have buttons that don't require opening the Color Correction panel.
The text was updated successfully, but these errors were encountered: