Files
video-shader-toys/shaders/temporal-low-fps/shader.json
Aiden a0cc86f189
All checks were successful
CI / React UI Build (push) Successful in 10s
CI / Native Windows Build And Tests (push) Successful in 2m20s
CI / Windows Release Package (push) Successful in 2m28s
description updates
2026-05-08 18:11:26 +10:00

35 lines
795 B
JSON

{
"id": "temporal-low-fps",
"name": "Temporal Low FPS",
"description": "Holds older source frames to create a deliberate choppy playback look.",
"category": "Temporal",
"entryPoint": "shadeVideo",
"temporal": {
"enabled": true,
"historySource": "preLayerInput",
"historyLength": 8
},
"parameters": [
{
"id": "holdFrames",
"label": "Hold Frames",
"type": "float",
"default": 3,
"min": 0,
"max": 7,
"step": 0.1,
"description": "How many previous frames to hold for the low-FPS effect."
},
{
"id": "blendAmount",
"label": "Blend",
"type": "float",
"default": 1,
"min": 0,
"max": 1,
"step": 0.01,
"description": "Mix amount for the processed result."
}
]
}