mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +00:00
Restores the 208 catalog items reverted after their previews 404'd in production, this time on the payload mechanism rather than the .html files that caused the outage. The generator no longer writes a preview document to docs/public. That writer, and the machinery under it, existed only to produce files the docs host discards, so it is gone rather than bypassed. Items now embed the composition itself via a payload, which is what the previous change already does for the items that were already in the catalog. The variables explorer is parked, not restored: it drove its preview through the same unpublished .html path, so it would have shown an empty frame. Items that declare variables get the live player plus the static variables table, and reconnecting the explorer to payloads is a follow-up.
59 lines
2.0 KiB
JSON
59 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
|
|
"name": "camera-shake",
|
|
"type": "hyperframes:component",
|
|
"title": "Camera Shake",
|
|
"description": "Procedural handheld, telephoto and rig camera shake for any wrapper: nine measured profiles with per-lens projection, closed-form and seek-safe",
|
|
"tags": ["camera", "shake", "handheld", "effect", "cinematic"],
|
|
"variables": [
|
|
{
|
|
"id": "shakeProfile",
|
|
"type": "enum",
|
|
"label": "Shake profile",
|
|
"default": "handheld-normal-mild",
|
|
"options": [
|
|
{ "value": "handheld-normal-mild", "label": "Handheld - normal lens, mild" },
|
|
{ "value": "handheld-normal-strong", "label": "Handheld - normal lens, strong" },
|
|
{ "value": "handheld-normal-extreme", "label": "Handheld - normal lens, extreme" },
|
|
{ "value": "handheld-wideangle-mild", "label": "Handheld - wide angle, mild" },
|
|
{ "value": "handheld-wideangle-strong", "label": "Handheld - wide angle, strong" },
|
|
{ "value": "handheld-tele-mild", "label": "Handheld - telephoto, mild" },
|
|
{ "value": "handheld-tele-strong", "label": "Handheld - telephoto, strong" },
|
|
{ "value": "rig-6d-shake", "label": "Rig - 6D shake (engine buzz)" },
|
|
{ "value": "rig-6d-wobble", "label": "Rig - 6D wobble" }
|
|
]
|
|
},
|
|
{
|
|
"id": "shakeIntensity",
|
|
"type": "number",
|
|
"label": "Intensity multiplier",
|
|
"default": 1,
|
|
"min": 0,
|
|
"max": 3,
|
|
"step": 0.05
|
|
},
|
|
{
|
|
"id": "shakeFrequency",
|
|
"type": "number",
|
|
"label": "Frequency multiplier",
|
|
"default": 1,
|
|
"min": 0.1,
|
|
"max": 4,
|
|
"step": 0.05
|
|
},
|
|
{
|
|
"id": "shakeRotation",
|
|
"type": "boolean",
|
|
"label": "Include rotation (roll + tilt/pan)",
|
|
"default": true
|
|
}
|
|
],
|
|
"files": [
|
|
{
|
|
"path": "camera-shake.html",
|
|
"target": "compositions/components/camera-shake.html",
|
|
"type": "hyperframes:snippet"
|
|
}
|
|
]
|
|
}
|