obs-set-input-volume
Adjust the volume level of audio inputs in OBS Studio by specifying the input name and volume value in either mul (0-20) or dB (-100 to 26) units.
Instructions
Sets the volume setting of an input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Name of the input to set the volume of | |
inputVolumeDb | No | Volume setting in dB (-100 to 26) | |
inputVolumeMul | No | Volume setting in mul (0-20) |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Name of the input to set the volume of",
"type": "string"
},
"inputVolumeDb": {
"description": "Volume setting in dB (-100 to 26)",
"maximum": 26,
"minimum": -100,
"type": "number"
},
"inputVolumeMul": {
"description": "Volume setting in mul (0-20)",
"maximum": 20,
"minimum": 0,
"type": "number"
}
},
"required": [
"inputName"
],
"type": "object"
}