Files
video-shader-toys/shaders/lut-apply/shader.json
Aiden cea435b609
All checks were successful
CI / React UI Build (push) Successful in 11s
CI / Native Windows Build And Tests (push) Successful in 1m33s
CI / Windows Release Package (push) Successful in 2m21s
shader tweak for LUT application
2026-05-06 16:53:54 +10:00

58 lines
1.1 KiB
JSON

{
"id": "lut-apply",
"name": "3D LUT Apply",
"description": "Applies the packaged 33-point .cube LUT to the incoming video using tetrahedral interpolation and optional output dithering.",
"category": "Color",
"entryPoint": "shadeVideo",
"textures": [
{
"id": "lutTexture",
"path": "test-lut.cube"
}
],
"parameters": [
{
"id": "lutStrength",
"label": "LUT Strength",
"type": "float",
"default": 1.0,
"min": 0.0,
"max": 1.0,
"step": 0.01
},
{
"id": "preExposure",
"label": "Pre Exposure",
"type": "float",
"default": 0.0,
"min": -4.0,
"max": 4.0,
"step": 0.01
},
{
"id": "postContrast",
"label": "Post Contrast",
"type": "float",
"default": 1.0,
"min": 0.0,
"max": 2.0,
"step": 0.01
},
{
"id": "ditherAmount",
"label": "Output Dither",
"type": "float",
"default": 0.5,
"min": 0.0,
"max": 1.0,
"step": 0.01
},
{
"id": "clampInput",
"label": "Clamp Input",
"type": "bool",
"default": true
}
]
}