obs-get-input-volume
Retrieve the current volume level of a specific audio input in OBS Studio to monitor audio settings and ensure proper sound levels during streaming or recording.
Instructions
Gets the current volume setting of an input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Name of the input to get the volume of |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Name of the input to get the volume of",
"type": "string"
}
},
"required": [
"inputName"
],
"type": "object"
}