obs-set-input-audio-monitor-type
Configure how an OBS input's audio is monitored by setting the audio monitor type to control whether audio is sent to output, monitoring only, or disabled.
Instructions
Sets the audio monitor type of an input
Input Schema
Name | Required | Description | Default |
---|---|---|---|
inputName | Yes | Name of the input to set the audio monitor type of | |
monitorType | Yes | Audio monitor type (OBS_MONITORING_TYPE_NONE, OBS_MONITORING_TYPE_MONITOR_ONLY, OBS_MONITORING_TYPE_MONITOR_AND_OUTPUT) |
Input Schema (JSON Schema)
{
"properties": {
"inputName": {
"description": "Name of the input to set the audio monitor type of",
"type": "string"
},
"monitorType": {
"description": "Audio monitor type (OBS_MONITORING_TYPE_NONE, OBS_MONITORING_TYPE_MONITOR_ONLY, OBS_MONITORING_TYPE_MONITOR_AND_OUTPUT)",
"type": "string"
}
},
"required": [
"inputName",
"monitorType"
],
"type": "object"
}