SetLutFilter
SetLutFilter adjusts LUT filter parameters in real-time, allowing users to modify the blending amount and file path for color grading on specified sources in OBS.
Instructions
Sets parameters for a LUT filter on a source. 用途: LUTフィルターの適用量やファイルパスをリアルタイムで変更する
Input Schema
Name | Required | Description | Default |
---|---|---|---|
params | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"params": {
"additionalProperties": false,
"properties": {
"amount": {
"description": "Blending amount (0.0-1.0).",
"type": "number"
},
"filterName": {
"description": "Name of the LUT filter.",
"type": "string"
},
"path": {
"description": "Path to the LUT file (.png/.cube).",
"type": "string"
},
"sourceName": {
"description": "Name of the source with the LUT filter.",
"type": "string"
}
},
"required": [
"sourceName",
"filterName",
"amount",
"path"
],
"type": "object"
}
},
"required": [
"params"
],
"type": "object"
}