obs-get-profile-parameter
Retrieve specific configuration parameters from the current OBS Studio profile to access settings for scenes, sources, streaming, or recording.
Instructions
Gets a parameter from the current profile's configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
parameterCategory | Yes | Category of the parameter to get | |
parameterName | Yes | Name of the parameter to get |
Input Schema (JSON Schema)
{
"properties": {
"parameterCategory": {
"description": "Category of the parameter to get",
"type": "string"
},
"parameterName": {
"description": "Name of the parameter to get",
"type": "string"
}
},
"required": [
"parameterCategory",
"parameterName"
],
"type": "object"
}