obs-set-video-settings
Configure video settings in OBS Studio by setting frame rate, canvas resolution, and output resolution parameters for streaming or recording.
Instructions
Sets the current video settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseHeight | No | Height of the base (canvas) resolution in pixels | |
baseWidth | No | Width of the base (canvas) resolution in pixels | |
fpsDenominator | No | Denominator of the fractional FPS value | |
fpsNumerator | No | Numerator of the fractional FPS value | |
outputHeight | No | Height of the output resolution in pixels | |
outputWidth | No | Width of the output resolution in pixels |
Input Schema (JSON Schema)
{
"properties": {
"baseHeight": {
"description": "Height of the base (canvas) resolution in pixels",
"maximum": 4096,
"minimum": 1,
"type": "number"
},
"baseWidth": {
"description": "Width of the base (canvas) resolution in pixels",
"maximum": 4096,
"minimum": 1,
"type": "number"
},
"fpsDenominator": {
"description": "Denominator of the fractional FPS value",
"minimum": 1,
"type": "number"
},
"fpsNumerator": {
"description": "Numerator of the fractional FPS value",
"minimum": 1,
"type": "number"
},
"outputHeight": {
"description": "Height of the output resolution in pixels",
"maximum": 4096,
"minimum": 1,
"type": "number"
},
"outputWidth": {
"description": "Width of the output resolution in pixels",
"maximum": 4096,
"minimum": 1,
"type": "number"
}
},
"type": "object"
}