remotion-to-hyperframes
heygen-com/hyperframes
Port existing Remotion (React) video compositions to HyperFrames HTML—one-way translation only.
What is remotion-to-hyperframes?
Translates Remotion (React-based) video compositions into HyperFrames (HTML + GSAP) compositions. Use this skill ONLY when a user explicitly asks to migrate, port, convert, or translate a Remotion source. Do not use for authoring new HyperFrames compositions, non-Remotion sources, or passing Remotion mentions.
- Lints Remotion source to detect blockers (useState, useEffect, async calculateMetadata, third-party React UI libs) and warnings (@remotion/lambda, delayRender, custom hooks)
- Maps Remotion APIs to HyperFrames equivalents using tiered reference guides (parameters, sequencing, timing, media, transitions, lottie, fonts)
- Generates index.html with root stage div, scene divs with timing data, inline CSS, and GSAP timeline registered to HyperFrames runtime
- Validates translations against SSIM thresholds using a tiered test corpus (T1–T4) to catch silent rendering divergence
- Recommends runtime interop pattern (PR #214) when patterns cannot translate cleanly
How to install remotion-to-hyperframes
npx skills add https://github.com/heygen-com/hyperframes --skill remotion-to-hyperframes- Remotion source code (composition file with explicit migration request)
- npm or equivalent package manager to install the skill
- Access to scripts/lint_source.py, references/ guides, and eval harness for validation
How to use remotion-to-hyperframes
- 1.Run scripts/lint_source.py on the Remotion source directory to detect blockers (useState, useEffect, async calculateMetadata, third-party React libs) and warnings (@remotion/lambda, delayRender)
- 2.If blockers are found, stop and recommend the runtime interop pattern from PR #214 instead of translation
- 3.Consult references/api-map.md to identify which topic references (parameters.md, sequencing.md, timing.md, media.md, transitions.md, lottie.md, fonts.md) apply to the source
- 4.Generate index.html with root stage div (data-composition-id, data-duration, data-fps, data-width, data-height, scalar props), scene divs with timing data, inline CSS, and GSAP timeline registered to window.__timelines
- 5.Run the eval harness (render Remotion baseline, render HF translation, compute SSIM diff) to validate against tier-specific thresholds; use frame_strip.sh to debug divergence
Use cases
- Migrate a complete Remotion project to HyperFrames by translating React composition to HTML + GSAP
- Convert a Remotion animation using Sequence, Loop, and interpolate to equivalent HyperFrames timeline structure
- Port a Remotion composition with Video, Audio, and Img assets to HyperFrames media elements
- Translate Remotion parameter schemas and defaultProps to HyperFrames data-* attributes on the stage div
- Rewrite Remotion transitions and Lottie animations as HyperFrames GSAP tweens
- Video engineers migrating from Remotion to HyperFrames
- Teams porting existing Remotion compositions to HyperFrames for performance or integration reasons
- Developers translating React-based video logic to HTML + GSAP-driven animations
remotion-to-hyperframes FAQ
Use this skill ONLY when the user explicitly asks to migrate/port/convert/translate a Remotion source. Use /general-video for authoring new HyperFrames compositions or re-creating non-Remotion sources (After Effects, Framer Motion, plain React/CSS). Use /hyperframes for general HyperFrames authoring questions.
These are blockers — stop translation and recommend the runtime interop pattern from PR #214 instead. These patterns don't fit HyperFrames' seek-driven model and cannot translate cleanly.
No. This skill is one-way only: Remotion → HyperFrames. Reverse export (HyperFrames → Remotion or any other framework) is not supported.
@remotion/lambda is a warning — drop the import and renderMediaOnLambda() calls but translate the rest. Third-party React UI libraries (MUI, Chakra, Mantine, antd, shadcn, Radix, NextUI) are blockers — stop and recommend interop.
Run the eval harness: render the Remotion baseline, render the HF translation, compute SSIM diff against tier-specific thresholds. Use frame_strip.sh to identify which frames diverged if the diff fails.
Full instructions (SKILL.md)
Source of truth, from heygen-com/hyperframes.
name: remotion-to-hyperframes
description: 'Port an existing Remotion (React) composition to HyperFrames HTML. Use ONLY when the user explicitly asks to port/convert/migrate/translate a Remotion source. Do NOT use: (a) authoring a new HyperFrames composition; (b) Remotion mentioned in passing; (c) Remotion code shared as reference only; (d) "same video as my Remotion one" without explicit migrate request — treat as fresh build. Doubt → /general-video. One-way, Remotion-only: no reverse export (HyperFrames→Remotion or any framework), no non-Remotion source (After Effects, Framer Motion, plain React/CSS) → out of scope, re-create via /general-video. Flags unsupported patterns (useState, useEffect, async calculateMetadata, third-party React libs, @remotion/lambda) and recommends runtime interop over lossy translation. Unsure whether to port vs. build fresh, or only a passing Remotion mention? → /hyperframes.'
Remotion to HyperFrames
Confirm the route before you build. Use this only to port an existing Remotion (React) composition's source into HyperFrames. Authoring a new composition (even one inspired by a Remotion video) → the creation workflows /
/general-video. Out of scope (one-way, Remotion-only): no reverse export (HyperFrames → Remotion or any framework), and a non-Remotion source (After Effects, Framer Motion, plain React / CSS) has no Remotion source to translate → re-create via/general-video. Unsure, or only a passing Remotion mention? Read/hyperframesfirst.
Overview
Translate Remotion (React-based) video compositions into HyperFrames (HTML + GSAP) compositions. Most Remotion idioms have direct HyperFrames equivalents — the translation is mechanical for ~80% of typical compositions. This skill encodes the mapping and guards against the lossy 20% by refusing to translate patterns that don't fit HF's seek-driven model and recommending the runtime interop pattern from PR #214 instead.
The skill ships with a tiered test corpus (T1–T4, 4 fixtures total) that grades translations against measured SSIM thresholds. Don't translate without running the eval — a translation that "looks right" but renders 0.05 SSIM lower than the validated baseline is silently wrong.
When to use
Use this skill ONLY when the user explicitly asks to migrate from Remotion. Example trigger phrases:
- "port my Remotion project to HyperFrames"
- "convert this Remotion code to HyperFrames"
- "migrate from Remotion"
- "translate this Remotion comp"
- "rewrite this as HyperFrames HTML"
Do NOT use this skill when:
- (a) The user is authoring a new HyperFrames composition, even if they have or are A/B-testing a similar Remotion video.
- (b) The user mentions Remotion in passing without asking for migration.
- (c) The user shares Remotion code as reference material rather than asking for a translation.
- (d) The user asks for "the same video as my Remotion one" without explicitly asking to migrate the source — treat that as a fresh HyperFrames build.
NOT SUPPORTED (decline — this is not what this skill does):
- The reverse direction. Exporting a HyperFrames composition back out to Remotion (or to any other framework) is not a workflow — the translation is Remotion → HyperFrames only. Say so plainly.
- Non-Remotion sources. An After Effects project (
.aep), a Framer Motion / plain-React / CSS animation, or any other tool's source is not a Remotion composition — there is no Remotion source to translate. Re-create it natively via/general-video, or decline if HyperFrames can't represent it.
When in doubt, default to authoring a native HyperFrames composition with /general-video (the general HyperFrames authoring flow) instead.
Workflow
Step 1: Lint the source
Run scripts/lint_source.py over the Remotion source directory. The lint detects patterns that can't translate cleanly:
- Blockers (refuse + recommend interop):
useState,useReducer,useEffect/useLayoutEffectwith non-empty deps, asynccalculateMetadata, third-party React UI libraries (MUI, Chakra, Mantine, antd, shadcn, Radix, NextUI). - Warnings (translate after dropping the construct):
@remotion/lambdaconfig,delayRender,useCallback,useMemo, custom hooks. - Info (translate with note):
staticFile,interpolateColors.
If any blocker fires, stop. Read references/escape-hatch.md and surface the recommendation message. Warnings don't stop translation — drop the offending construct in step 3 and note the gap in TRANSLATION_NOTES.md. @remotion/lambda config is the canonical warning case: the skill drops the import + renderMediaOnLambda(...) calls but translates the rest of the composition.
Step 2: Plan the translation
Read references/api-map.md — the index of every Remotion API and its HF equivalent or per-topic reference. Identify which topic references you'll need based on what the source uses:
| Source contains | Load reference |
|---|---|
Composition, defaultProps, schema, calculateMetadata | parameters.md |
Sequence, Series, Loop, AbsoluteFill, Freeze | sequencing.md |
useCurrentFrame, interpolate, spring, Easing, interpolateColors | timing.md |
Audio, Video, Img, IFrame, staticFile, delayRender | media.md |
TransitionSeries, @remotion/transitions | transitions.md |
@remotion/lottie | lottie.md |
@remotion/google-fonts/<Family>, Font.loadFont, @font-face | fonts.md |
Don't load all of them — load only what the specific source needs.
Step 3: Generate the HF composition
Emit index.html with:
- Root
<div id="stage">carrying the composition'sdata-composition-id,data-start="0",data-duration(in seconds),data-fps,data-width,data-height, plus onedata-*per scalar prop. - A flat list of scene divs with
data-start/data-duration/data-track-index. - Inline
<style>for layout; CSS sets thefromstate of every animated property. - A single
<script>tag at the bottom containing one pausedgsap.timeline({paused: true}). Every RemotionuseCurrentFrame()derivation becomes a tween on this timeline at the right offset. window.__timelines["<composition-id>"] = tl;registers the timeline with HF's runtime.
Custom React subcomponents inline as repeated HTML using the prop interface as the template (see parameters.md for the per-instance data-* pattern).
Step 4: Validate
Run the eval harness — references/eval.md for the full guide. Quick path:
# Render Remotion baseline (after npm install in the fixture)
cd remotion-src && npx remotion render <CompositionId> out/baseline.mp4
# Render HF translation
cd ../hf-src && npx hyperframes render --skill=remotion-to-hyperframes --output ../hf.mp4
# SSIM diff
../../scripts/render_diff.sh ./remotion-src/out/baseline.mp4 ./hf.mp4 ./diff
Threshold: ~0.02 below p05 of the source's complexity tier (see eval.md's validated thresholds table). If the diff fails, run scripts/frame_strip.sh to see which frames diverged, then re-read the relevant timing/sequencing/media reference.
Critical: both renders must use matching pixel format. Set Config.setVideoImageFormat("png") + Config.setColorSpace("bt709") in the Remotion source's remotion.config.ts — otherwise the diff measures encoder differences (~0.05 SSIM hit), not translation fidelity.
Step 5: Document gaps
Anything that didn't translate cleanly (volume ramps dropped, custom presentations approximated, fonts substituted) gets a TRANSLATION_NOTES.md written next to the HF output. See references/limitations.md for the format.
What this skill explicitly does NOT do
- Translate React state machines. Compositions that drive animation via
useState+useEffectare not deterministic frame-capture targets in HyperFrames' seek-driven model. Recommend the runtime interop pattern. - Run Remotion's render pipeline alongside HyperFrames. That's the runtime interop pattern from PR #214 — a separate solution for compositions that fail this skill's lint.
(@remotion/lambda is not a blocker — Lambda config is deployment, not animation. The skill drops it as a warning and translates the rest. See references/escape-hatch.md.)
How to grade your own translation
Run the test corpus orchestrator:
./assets/test-corpus/run.sh
It runs T1, T2, T3 (render + diff) and T4 (lint validation), prints a per-tier pass/fail table, and emits an aggregate JSON report. Use this to verify the skill is working end-to-end on a clean checkout — and as a regression check after editing any reference.
Validated baseline (as of 2026-04-27):
| Tier | Composition shape | Mean SSIM | Threshold |
|---|---|---|---|
| T1 | single-element fade-in | 0.974 | 0.95 |
| T2 | multi-scene + spring + audio + image | 0.985 | 0.95 |
| T3 | data-driven, custom subcomponents, count-up | 0.953 | 0.90 |
| T4 | escape-hatch (8 lint cases) | 8/8 pass | n/a |
Related skills
More from heygen-com/hyperframes and the wider catalog.
hyperframes
Router and entry skill for video authoring—renders video from HTML with intent-based workflow selection.
hyperframes-cli
CLI for HyperFrames video composition: scaffold, lint, validate, render locally or on AWS Lambda.
hyperframes-registry
Install and wire reusable blocks and components into HyperFrames compositions via registry.
hyperframes-media
Audio and media engine for HyperFrames: TTS, background music, sound effects, transcription, captions, and background removal.
gsap
GSAP animation reference for HyperFrames compositions with timelines, easing, and performance optimization.
website-to-hyperframes
Capture a website and create professional HyperFrames videos from it.