obs-set-profile-parameter
Modify OBS Studio profile configuration by setting, updating, or deleting specific parameter values to customize streaming and recording settings.
Instructions
Sets the value of a parameter in the current profile's configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameterCategory | Yes | Category of the parameter to set | |
parameterName | Yes | Name of the parameter to set | |
parameterValue | Yes | Value of the parameter to set. Use null to delete |
Input Schema (JSON Schema)
{
"properties": {
"parameterCategory": {
"description": "Category of the parameter to set",
"type": "string"
},
"parameterName": {
"description": "Name of the parameter to set",
"type": "string"
},
"parameterValue": {
"description": "Value of the parameter to set. Use null to delete",
"type": [
"string",
"null"
]
}
},
"required": [
"parameterCategory",
"parameterName",
"parameterValue"
],
"type": "object"
}