mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 04:38:33 +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.1 KiB
JSON
59 lines
2.1 KiB
JSON
{
|
|
"$schema": "https://hyperframes.heygen.com/schema/registry-item.json",
|
|
"name": "caption-camera-follow",
|
|
"type": "hyperframes:component",
|
|
"title": "Camera Follow Captions",
|
|
"description": "One sentence written across a world far larger than the frame. Each word is sized against everything already written, so the block grows geometrically and the camera pulls back at a steady rate to keep landing the new word at the same size. Old words stay lit and simply become small.",
|
|
"tags": ["captions", "caption-style", "camera", "typography", "motion-primitive", "portrait"],
|
|
"files": [
|
|
{
|
|
"path": "caption-camera-follow.html",
|
|
"target": "compositions/components/caption-camera-follow.html",
|
|
"type": "hyperframes:snippet"
|
|
}
|
|
],
|
|
"variables": [
|
|
{
|
|
"id": "accent",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Accent",
|
|
"description": "Colour of the highlighted words. gold is the original.",
|
|
"default": "gold",
|
|
"options": [
|
|
{ "value": "gold", "label": "Gold" },
|
|
{ "value": "green", "label": "Green" },
|
|
{ "value": "blue", "label": "Blue" },
|
|
{ "value": "violet", "label": "Violet" }
|
|
]
|
|
},
|
|
{
|
|
"id": "framing",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Framing",
|
|
"description": "Air the camera leaves around the written block, so the words land larger or smaller in frame.",
|
|
"default": "standard",
|
|
"options": [
|
|
{ "value": "tight", "label": "Tight" },
|
|
{ "value": "standard", "label": "Standard" },
|
|
{ "value": "wide", "label": "Wide" }
|
|
]
|
|
},
|
|
{
|
|
"id": "smear",
|
|
"type": "enum",
|
|
"role": "style",
|
|
"label": "Smear",
|
|
"description": "Scales the radial motion blur each camera move carries, from none to a heavy streak.",
|
|
"default": "standard",
|
|
"options": [
|
|
{ "value": "off", "label": "Off" },
|
|
{ "value": "subtle", "label": "Subtle" },
|
|
{ "value": "standard", "label": "Standard" },
|
|
{ "value": "heavy", "label": "Heavy" }
|
|
]
|
|
}
|
|
]
|
|
}
|