mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +00:00
* docs(readme): swap hero media to hyperframes-logo-motion
Replaces the prior hfgif-1280.webp hero with a new logo-motion clip
Bin trimmed for the launch. Converted the source MP4 to animated webp
(the existing hero's format) so it auto-plays in the GitHub README the
same way the old one did - MP4 sources don't render inline or autoplay
in <img> tags.
- New asset: static.heygen.ai/hyperframes-oss/docs/images/
hyperframes-logo-motion-1280.webp (1280x720, 85 frames, 199KB)
- ffmpeg conversion: scale=1280, libwebp_anim, q=80, loop=0
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* fix(studio): format 5 hooks files (oxfmt)
* style: remove unused imports in studio hooks (pre-existing lint failures)
CI Lint on main was already failing with 5 unused-import errors in
packages/studio/src/hooks/. Removed the unused symbols to unblock the
README hero PR's CI:
- gsapRuntimeBridge.ts: resolveTweenStart, resolveTweenDuration
- useGsapScriptCommits.ts: usePlayerStore
- useTimelineEditing.ts: PatchTarget (type-only)
- gsapDragCommit.ts: readGsapProperty
Bundled into the README PR per James's request to fix CI in-place.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* test(studio): add childRects: [] to DomEditOverlay test mock
useDomEditOverlayRects' return type added a childRects: OverlayRect[]
field; the DomEditOverlay test's mock didn't get updated and was
returning an object without it, so DomEditOverlay.tsx's
'childRects.length > 0' check threw TypeError on undefined.
One-line mock-vs-hook contract realignment.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
* test(studio): drive player-store currentTime in selection-hydration test (#1311 follow-up)
The 'hydrates seek first, preserves the initial url state, then restores
selection' test was failing because PR #1311 (keyframes feat) changed
useStudioUrlState to read currentTime from the player store via
usePlayerStore((s) => s.currentTime), removing it from the hook's prop
shape. The test was still trying to drive currentTime via the harness
prop, which is now a no-op — so the selection-hydration useEffect's
time-stability guard
Math.abs(currentTime - stableTimeRef.current!) > 0.05
never passed (store currentTime stayed at 0 while stableTimeRef caught
the 4.2 seek target). buildDomSelectionFromTarget was never reached,
applyDomSelection was never called, and the assertion got 0 calls.
Fix: setState the store's currentTime to 4.2 ahead of the rerender so
the hook's selector picks it up and the time-stability guard passes.
Harness prop kept as-is — it's a no-op but doesn't hurt.
Pre-existing failure on main HEAD 81416ab3; surfaced as CI gate on the
unrelated docs/readme-hero-motion-update PR.
* test(studio): stub getBoundingClientRect + flush RAF in DomEditOverlay test
The 'renders selected bounds right after clicking a movable selection'
test asserts the selection box appears after pointerdown, but happy-dom
returns 0 for newly-created elements' getBoundingClientRect. The
overlay's compRect updates via a RAF loop that early-returns when iframe
width is 0; the keyframes PR a468550f added a compRect.width > 0 guard
to the selection-box render path, so compRect=0 silently gates the box
off and the assertion fails.
Stub Element.prototype.getBoundingClientRect to return 800x450 for the
test, and flush two RAFs after render so the compRect state update lands
before the pointerdown assertion. Restore the prototype at test end.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
---------
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
Co-authored-by: Miguel Sierra <miguel.sierra@heygen.com>
287 lines
16 KiB
Markdown
287 lines
16 KiB
Markdown
<p align="center">
|
|
<picture>
|
|
<source media="(prefers-color-scheme: dark)" srcset="docs/logo/dark.svg">
|
|
<source media="(prefers-color-scheme: light)" srcset="docs/logo/light.svg">
|
|
<img alt="HyperFrames" src="docs/logo/light.svg" width="300">
|
|
</picture>
|
|
</p>
|
|
|
|
<p align="center">
|
|
<a href="https://www.npmjs.com/package/hyperframes"><img src="https://img.shields.io/npm/v/hyperframes.svg?style=flat" alt="npm version"></a>
|
|
<a href="https://www.npmjs.com/package/hyperframes"><img src="https://img.shields.io/npm/dm/hyperframes.svg?style=flat" alt="npm downloads"></a>
|
|
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License"></a>
|
|
<a href="https://nodejs.org"><img src="https://img.shields.io/badge/node-%3E%3D22-brightgreen" alt="Node.js"></a>
|
|
<a href="https://discord.gg/EbK98HBPdk"><img src="https://img.shields.io/badge/Discord-Join-5865F2?logo=discord&logoColor=white" alt="Discord"></a>
|
|
</p>
|
|
|
|
<p align="center"><b>Write HTML. Render video. Built for agents.</b></p>
|
|
|
|
<p align="center">
|
|
<a href="https://hyperframes.heygen.com/quickstart">Quickstart</a> |
|
|
<a href="https://hyperframes.heygen.com/showcase">Showcase</a> |
|
|
<a href="https://www.hyperframes.dev/">Playground</a> |
|
|
<a href="https://hyperframes.heygen.com/catalog/blocks/data-chart">Catalog</a> |
|
|
<a href="https://hyperframes.heygen.com/introduction">Docs</a> |
|
|
<a href="https://discord.gg/EbK98HBPdk">Discord</a>
|
|
</p>
|
|
|
|
<p align="center">
|
|
<img src="https://static.heygen.ai/hyperframes-oss/docs/images/hyperframes-logo-motion-1280.webp" alt="HyperFrames demo: HTML code on the left transforms into a rendered video on the right" width="800">
|
|
</p>
|
|
|
|
HyperFrames is an open-source framework for turning HTML, CSS, media, and seekable animations into deterministic MP4 videos. Use it locally with the CLI, from AI coding agents with skills, or as the rendering core behind hosted authoring workflows.
|
|
|
|
## Quick Start
|
|
|
|
### With an AI coding agent
|
|
|
|
Install the HyperFrames skills, then describe the video you want:
|
|
|
|
```bash
|
|
npx skills add heygen-com/hyperframes
|
|
```
|
|
|
|
Try a prompt like:
|
|
|
|
> Using `/hyperframes`, create a 10-second product intro with a fade-in title, a background video, and subtle background music.
|
|
|
|
The skills teach agents the HyperFrames production loop: plan the video, write valid HTML, wire seekable animations, add media, lint, preview, and render. They work with Claude Code, Cursor, Gemini CLI, Codex, and other coding agents that support skills.
|
|
|
|
For visual design handoff workflows, see the [Claude Design guide](https://hyperframes.heygen.com/guides/claude-design) and [Open Design guide](https://hyperframes.heygen.com/guides/open-design).
|
|
|
|
### Manually with the CLI
|
|
|
|
```bash
|
|
npx hyperframes init my-video
|
|
cd my-video
|
|
npx hyperframes preview # preview in browser with live reload
|
|
npx hyperframes render # render to MP4
|
|
```
|
|
|
|
**Requirements:** Node.js 22+, FFmpeg
|
|
|
|
## What You Can Build
|
|
|
|
Need ideas? Browse the [Showcase](https://hyperframes.heygen.com/showcase) for finished videos you can watch, read, run, and remix.
|
|
|
|
- Product launch videos and feature announcements
|
|
- PR walkthroughs with animated code diffs, narration, and captions
|
|
- Data visualizations, chart races, and map animations
|
|
- Social videos with kinetic captions, overlays, and music
|
|
- Docs-to-video, PDF-to-video, and website-to-video explainers
|
|
- Reusable motion graphics for automated content pipelines
|
|
|
|
## Frame.md
|
|
|
|
**frame.md — your design system, ready for video.**
|
|
|
|
Every brand has a `design.md`. None of them were written for a camera. `frame.md` is the missing translation layer: it takes your web-context design spec and inverts it for the frame — the same tokens, the same rules, but rewritten so an AI agent can compose a promo video without guessing at scale or reaching for web chrome.
|
|
|
|
The output is a `DESIGN.md` superset your whole toolchain can read. Atoms stay sacred. Composition stays free. Numbers come from the script.
|
|
|
|
<table>
|
|
<tr>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/biennale-yellow"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/biennale-yellow.png" alt="Biennale Yellow" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/biennale-yellow">Biennale Yellow</a></b>
|
|
</td>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/blockframe"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/blockframe.png" alt="BlockFrame" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/blockframe">BlockFrame</a></b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/blue-professional"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/blue-professional.png" alt="Blue Professional" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/blue-professional">Blue Professional</a></b>
|
|
</td>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/bold-poster"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/bold-poster.png" alt="Bold Poster" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/bold-poster">Bold Poster</a></b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/broadside"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/broadside.png" alt="Broadside" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/broadside">Broadside</a></b>
|
|
</td>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/capsule"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/capsule.png" alt="Capsule" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/capsule">Capsule</a></b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/cartesian"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/cartesian.png" alt="Cartesian" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/cartesian">Cartesian</a></b>
|
|
</td>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/cobalt-grid"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/cobalt-grid.png" alt="Cobalt Grid" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/cobalt-grid">Cobalt Grid</a></b>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/coral"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/coral.png" alt="Coral" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/coral">Coral</a></b>
|
|
</td>
|
|
<td width="50%" align="center">
|
|
<a href="https://www.hyperframes.dev/design/creative-mode"><img src="https://static.heygen.ai/hyperframes-oss/docs/images/design-templates/creative-mode.png" alt="Creative Mode" width="100%"></a>
|
|
<br><b><a href="https://www.hyperframes.dev/design/creative-mode">Creative Mode</a></b>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
Browse and remix them all at [hyperframes.dev/design](https://www.hyperframes.dev/design).
|
|
|
|
## How It Works
|
|
|
|
Define a video as HTML. Add data attributes for timing and tracks. Use GSAP, CSS, Lottie, Three.js, Anime.js, WAAPI, or your own frame adapter for seekable animation.
|
|
|
|
```html
|
|
<div id="stage" data-composition-id="launch" data-start="0" data-width="1920" data-height="1080">
|
|
<video
|
|
class="clip"
|
|
data-start="0"
|
|
data-duration="6"
|
|
data-track-index="0"
|
|
src="intro.mp4"
|
|
muted
|
|
playsinline
|
|
></video>
|
|
|
|
<h1 id="title" class="clip" data-start="1" data-duration="4" data-track-index="1">Launch day</h1>
|
|
|
|
<audio
|
|
data-start="0"
|
|
data-duration="6"
|
|
data-track-index="2"
|
|
data-volume="0.5"
|
|
src="music.wav"
|
|
></audio>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/gsap@3/dist/gsap.min.js"></script>
|
|
<script>
|
|
const tl = gsap.timeline({ paused: true });
|
|
tl.from("#title", { opacity: 0, y: 40, duration: 0.8 }, 1);
|
|
window.__timelines = window.__timelines || {};
|
|
window.__timelines.launch = tl;
|
|
</script>
|
|
</div>
|
|
```
|
|
|
|
Preview instantly in the browser. Render locally or in Docker. The renderer seeks each frame in headless Chrome and encodes the result with FFmpeg, so the same input produces the same video.
|
|
|
|
## HyperFrames Stack
|
|
|
|
HyperFrames is the open-source rendering engine, plus a growing set of tools around HTML-native video creation.
|
|
|
|
| Piece | Status | What it does |
|
|
| ----------------------------------------------- | ------------------- | ------------------------------------------------------------------------------------------------- |
|
|
| CLI | Available | Scaffold, preview, lint, inspect, and render local video projects |
|
|
| Core / Engine / Producer | Available | Parse compositions, drive headless Chrome, encode video, and mix audio |
|
|
| Catalog | Available | Reusable blocks and components for transitions, overlays, captions, charts, maps, and effects |
|
|
| Agent skills | Available | Teach coding agents the video-production patterns that generic web docs miss |
|
|
| Studio | Available, evolving | Browser surface for previewing and editing compositions |
|
|
| AWS Lambda rendering | Available | Deploy a distributed render stack and drive renders from your laptop or CI |
|
|
| [hyperframes.dev](https://www.hyperframes.dev/) | Available | Community playground for previewing, iterating, sharing, and rendering HTML-native video projects |
|
|
| [frame.md](https://www.hyperframes.dev/design) | Available | Invert your design system for the camera — a DESIGN.md superset an agent can compose video from |
|
|
|
|
## Catalog
|
|
|
|
Install ready-to-use blocks and components:
|
|
|
|
```bash
|
|
npx hyperframes add flash-through-white # shader transition
|
|
npx hyperframes add instagram-follow # social overlay
|
|
npx hyperframes add data-chart # animated chart
|
|
```
|
|
|
|
Browse the catalog at [hyperframes.heygen.com/catalog](https://hyperframes.heygen.com/catalog/blocks/data-chart).
|
|
|
|
## Why HyperFrames?
|
|
|
|
- **HTML-native:** compositions are HTML files with data attributes. No React requirement, no proprietary timeline format.
|
|
- **Agent-friendly:** agents already write HTML, and the CLI is non-interactive by default.
|
|
- **Deterministic:** same input, same frames, same output. Built for CI, regression tests, and automated rendering.
|
|
- **No build step:** an `index.html` composition plays as-is and can be previewed directly in the browser.
|
|
- **Adapter-based animation:** bring GSAP, CSS animations, Lottie, Three.js, Anime.js, WAAPI, or a custom runtime.
|
|
- **Open source:** Apache 2.0 license, with no per-render fees or commercial-use thresholds.
|
|
|
|
## HyperFrames vs Remotion
|
|
|
|
HyperFrames is inspired by [Remotion](https://www.remotion.dev). Both tools render video with headless Chrome and FFmpeg. The main difference is the authoring model: Remotion's bet is React components; HyperFrames' bet is plain HTML that humans and agents can both write easily.
|
|
|
|
| | **HyperFrames** | **Remotion** |
|
|
| ------------------------ | ------------------------------------- | --------------------------------------- |
|
|
| Authoring | HTML + CSS + seekable animation | React components |
|
|
| Build step | None; `index.html` plays as-is | Bundler required |
|
|
| Agent handoff | Plain HTML files | JSX / React project |
|
|
| Library-clock animations | Seekable, frame-accurate via adapters | Wall-clock animation patterns need care |
|
|
| Distributed rendering | Local and AWS Lambda render paths | Remotion Lambda, mature cloud renderer |
|
|
| License | Apache 2.0 | Source-available Remotion License |
|
|
|
|
Read the full comparison in the [HyperFrames vs Remotion guide](https://hyperframes.heygen.com/guides/hyperframes-vs-remotion).
|
|
|
|
## Documentation
|
|
|
|
Full documentation: [hyperframes.heygen.com/introduction](https://hyperframes.heygen.com/introduction)
|
|
|
|
- [Quickstart](https://hyperframes.heygen.com/quickstart)
|
|
- [Showcase](https://hyperframes.heygen.com/showcase)
|
|
- [Guides](https://hyperframes.heygen.com/guides/gsap-animation)
|
|
- [API Reference](https://hyperframes.heygen.com/packages/core)
|
|
- [Catalog](https://hyperframes.heygen.com/catalog/blocks/data-chart)
|
|
- [Examples](https://hyperframes.heygen.com/examples)
|
|
- [AWS Lambda rendering](https://hyperframes.heygen.com/deploy/aws-lambda)
|
|
|
|
## Packages
|
|
|
|
| Package | Description |
|
|
| ---------------------------------------------------------------- | ----------------------------------------------------------------- |
|
|
| [`hyperframes`](packages/cli) | CLI for creating, previewing, linting, and rendering compositions |
|
|
| [`@hyperframes/core`](packages/core) | Types, parsers, generators, linter, runtime, and frame adapters |
|
|
| [`@hyperframes/engine`](packages/engine) | Seekable page-to-video capture engine using Puppeteer and FFmpeg |
|
|
| [`@hyperframes/producer`](packages/producer) | Full rendering pipeline for capture, encode, and audio mix |
|
|
| [`@hyperframes/studio`](packages/studio) | Browser-based composition editor UI |
|
|
| [`@hyperframes/player`](packages/player) | Embeddable `<hyperframes-player>` web component |
|
|
| [`@hyperframes/shader-transitions`](packages/shader-transitions) | WebGL shader transitions for compositions |
|
|
| [`@hyperframes/aws-lambda`](packages/aws-lambda) | AWS Lambda SDK and deployment surface for distributed renders |
|
|
|
|
## Community
|
|
|
|
HyperFrames is used in production at [HeyGen](https://www.heygen.com), with community examples from teams like [tldraw](https://tldraw.com), [TanStack](https://tanstack.com), and others in [ADOPTERS.md](ADOPTERS.md). Open a PR if your team is using HyperFrames.
|
|
|
|
- Questions and ideas: [Discord](https://discord.gg/EbK98HBPdk)
|
|
- Bugs and feature requests: [GitHub Issues](https://github.com/heygen-com/hyperframes/issues)
|
|
- Security reports: [SECURITY.md](SECURITY.md)
|
|
- Contributions: [CONTRIBUTING.md](CONTRIBUTING.md)
|
|
|
|
## Development Note
|
|
|
|
The repo uses [Git LFS](https://git-lfs.com) for golden regression-test baselines under `packages/producer/tests/**/output.mp4` (about 240 MB of `.mp4` files). If you're cloning the full repo for development, install Git LFS first:
|
|
|
|
```bash
|
|
# macOS
|
|
brew install git-lfs
|
|
|
|
# Ubuntu / Debian
|
|
sudo apt install git-lfs
|
|
|
|
# Windows
|
|
winget install GitHub.GitLFS
|
|
|
|
# Then, once per machine
|
|
git lfs install
|
|
```
|
|
|
|
If you only need source files, you can skip LFS content:
|
|
|
|
```bash
|
|
GIT_LFS_SKIP_SMUDGE=1 git clone https://github.com/heygen-com/hyperframes.git
|
|
```
|
|
|
|
## License
|
|
|
|
[Apache 2.0](LICENSE)
|