obs-set-stream-service-settings
Configure streaming service settings in OBS Studio by specifying the service type and corresponding parameters to establish or modify broadcast connections.
Instructions
Sets the current stream service settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
streamServiceSettings | Yes | Settings to apply to the service | |
streamServiceType | Yes | Type of stream service to apply. Example: rtmp_common or rtmp_custom |
Input Schema (JSON Schema)
{
"properties": {
"streamServiceSettings": {
"additionalProperties": {},
"description": "Settings to apply to the service",
"type": "object"
},
"streamServiceType": {
"description": "Type of stream service to apply. Example: rtmp_common or rtmp_custom",
"type": "string"
}
},
"required": [
"streamServiceType",
"streamServiceSettings"
],
"type": "object"
}