37 lines
704 B
JSON
37 lines
704 B
JSON
{
|
|
"id": "gaussian-blur",
|
|
"name": "Gaussian Blur",
|
|
"description": "Applies a simple Gaussian-style blur to the decoded video input.",
|
|
"category": "Transform",
|
|
"entryPoint": "shadeVideo",
|
|
"parameters": [
|
|
{
|
|
"id": "radius",
|
|
"label": "Radius",
|
|
"type": "float",
|
|
"default": 2.0,
|
|
"min": 0.0,
|
|
"max": 8.0,
|
|
"step": 0.1
|
|
},
|
|
{
|
|
"id": "strength",
|
|
"label": "Strength",
|
|
"type": "float",
|
|
"default": 1.0,
|
|
"min": 0.0,
|
|
"max": 1.0,
|
|
"step": 0.01
|
|
},
|
|
{
|
|
"id": "samples",
|
|
"label": "Samples",
|
|
"type": "float",
|
|
"default": 2.0,
|
|
"min": 0.0,
|
|
"max": 25.0,
|
|
"step": 1.0
|
|
}
|
|
]
|
|
}
|