obs-set-input-settings
Configure OBS Studio input settings by applying specific properties to audio/video sources, with options to overlay on existing settings or reset to defaults first.
Instructions
Sets the settings of an input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Name of the input to set the settings of | |
inputSettings | Yes | Object of settings to apply | |
overlay | No | True to apply settings on top of existing ones, False to reset to defaults first |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Name of the input to set the settings of",
"type": "string"
},
"inputSettings": {
"additionalProperties": {},
"description": "Object of settings to apply",
"type": "object"
},
"overlay": {
"description": "True to apply settings on top of existing ones, False to reset to defaults first",
"type": "boolean"
}
},
"required": [
"inputName",
"inputSettings"
],
"type": "object"
}