85453da49f
regression / regression-shards (style-16-prod style-9-prod style-17-prod iframe-render-compat variables-prod mp4-h265-sdr, shard-4) (push) Has been cancelled
regression / regression-shards (style-4-prod style-11-prod style-2-prod animejs-adapter typegpu-adapter parallel-capture-regression, shard-5) (push) Has been cancelled
regression / regression-shards (style-7-prod style-8-prod style-10-prod css-spinner-render-compat webm-transparency mp4-h264-sdr webm-vp9, shard-3) (push) Has been cancelled
regression / regression-shards (sub-composition-video style-18-prod raf-ball-render-compat font-variant-numeric sub-comp-t0 sub-comp-id-selector, shard-7) (push) Has been cancelled
Windows render verification / Detect changes (push) Has been cancelled
Windows render verification / Preflight (lint + format) (push) Has been cancelled
Windows render verification / Render on windows-latest (push) Has been cancelled
Windows render verification / Tests on windows-latest (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Fallow audit (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Producer: integration tests (push) Has been cancelled
CI / Producer: unit tests (push) Has been cancelled
CI / File size check (push) Has been cancelled
CI / Test: skills (push) Has been cancelled
CI / Skills: manifest in sync (push) Has been cancelled
CI / CLI: npx shim (macos-latest) (push) Has been cancelled
CI / CLI: npx shim (ubuntu-latest) (push) Has been cancelled
CI / CLI: npx shim (windows-latest) (push) Has been cancelled
CI / SDK: unit + contract + smoke (push) Has been cancelled
CI / Test: runtime contract (push) Has been cancelled
CI / Studio: load smoke (push) Has been cancelled
CI / Smoke: global install (push) Has been cancelled
CI / CLI smoke (required) (push) Has been cancelled
CI / Semantic PR title (push) Has been cancelled
Player perf / Detect changes (push) Has been cancelled
Player perf / Preflight (lint + format) (push) Has been cancelled
Player perf / player-perf (push) Has been cancelled
Player perf / Perf: drift (push) Has been cancelled
Player perf / Perf: fps (push) Has been cancelled
Player perf / Perf: parity (push) Has been cancelled
Player perf / Perf: scrub (push) Has been cancelled
Player perf / Perf: load (push) Has been cancelled
preview-regression / Detect changes (push) Has been cancelled
preview-regression / Preflight (lint + format) (push) Has been cancelled
preview-regression / Preview parity (push) Has been cancelled
preview-regression / preview-regression (push) Has been cancelled
regression / regression (push) Has been cancelled
regression / Detect changes (push) Has been cancelled
regression / Preflight (lint + format) (push) Has been cancelled
regression / regression-shards (hdr-regression style-5-prod style-3-prod mov-prores, shard-1) (push) Has been cancelled
regression / regression-shards (overlay-montage-prod style-12-prod chat missing-host-comp-id png-sequence portrait-edge-bleed, shard-6) (push) Has been cancelled
regression / regression-shards (style-13-prod style-6-prod vignelli-stacking gsap-letters-render-compat audio-mux-parity, shard-8) (push) Has been cancelled
regression / regression-shards (style-15-prod hdr-hlg-regression style-1-prod many-cuts vfr-screen-recording render-symlinked-assets, shard-2) (push) Has been cancelled
CodeQL / Analyze (actions) (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Docs / Validate docs (push) Has been cancelled
Sync skills to ClawHub / Publish changed skills (push) Has been cancelled
150 lines
3.8 KiB
Markdown
150 lines
3.8 KiB
Markdown
# Media translation: Audio, Video, Img, IFrame, staticFile
|
|
|
|
## Asset paths
|
|
|
|
Remotion's `staticFile("x.png")` resolves to the project's `public/` directory.
|
|
HF uses relative paths from the composition's `index.html`, conventionally
|
|
`assets/`:
|
|
|
|
```tsx
|
|
<Img src={staticFile("logo.png")} />
|
|
```
|
|
|
|
```html
|
|
<img src="assets/logo.png" />
|
|
```
|
|
|
|
When translating, copy the asset from `remotion-src/public/x` to
|
|
`hf-src/assets/x`. Multiple files can be batched with a setup script;
|
|
see T2's `setup.sh` for an example pattern.
|
|
|
|
## `<Audio>`
|
|
|
|
```tsx
|
|
<Audio src={staticFile("music.wav")} volume={0.5} />
|
|
```
|
|
|
|
```html
|
|
<audio
|
|
data-start="0"
|
|
data-duration="6"
|
|
data-track-index="2"
|
|
data-volume="0.5"
|
|
src="assets/music.wav"
|
|
></audio>
|
|
```
|
|
|
|
`data-start` and `data-duration` are required — the runtime needs them to
|
|
schedule the audio. Default to the composition's full duration if Remotion
|
|
didn't specify trim.
|
|
|
|
### Volume ramps
|
|
|
|
```tsx
|
|
<Audio src={staticFile("music.wav")} volume={(f) => interpolate(f, [0, 30], [0, 1])} />
|
|
```
|
|
|
|
HF supports static `data-volume` only for now. Volume ramps need to be
|
|
applied to the audio file at translation time (with ffmpeg `afade`) or the
|
|
ramp is dropped with a translation note.
|
|
|
|
### Trim / playbackRate
|
|
|
|
```tsx
|
|
<Audio src={staticFile("music.wav")} startFrom={60} endAt={180} playbackRate={1.5} />
|
|
```
|
|
|
|
```html
|
|
<audio
|
|
data-start="0"
|
|
data-duration="<resolved from trim>"
|
|
data-trim-start="2"
|
|
data-trim-end="6"
|
|
data-playback-rate="1.5"
|
|
src="assets/music.wav"
|
|
></audio>
|
|
```
|
|
|
|
`startFrom` / `endAt` are frame indexes; convert to seconds.
|
|
|
|
## `<Video>` and `<OffthreadVideo>`
|
|
|
|
```tsx
|
|
<Video src={staticFile("intro.mp4")} muted playsInline />
|
|
<OffthreadVideo src={staticFile("intro.mp4")} muted />
|
|
```
|
|
|
|
```html
|
|
<video
|
|
muted
|
|
playsinline
|
|
data-start="0"
|
|
data-duration="5"
|
|
data-track-index="0"
|
|
src="assets/intro.mp4"
|
|
></video>
|
|
```
|
|
|
|
`<OffthreadVideo>` is a Remotion-specific optimization for headless
|
|
rendering. HF runs in headless Chrome already, so the off-thread variant
|
|
collapses to a regular `<video>`.
|
|
|
|
`muted` and `playsinline` are required for the runtime to autoplay
|
|
(browser policy). Always emit them.
|
|
|
|
## `<Img>`
|
|
|
|
```tsx
|
|
<Img src={staticFile("logo.png")} style={{ width: 200, height: 200 }} />
|
|
```
|
|
|
|
```html
|
|
<img src="assets/logo.png" style="width: 200px; height: 200px;" />
|
|
```
|
|
|
|
Width/height get rounded to integer px. If the original style has
|
|
animated dimensions, the GSAP tween animates them — see [timing.md](timing.md).
|
|
|
|
## `<IFrame>`
|
|
|
|
```tsx
|
|
<IFrame src="https://example.com" />
|
|
```
|
|
|
|
```html
|
|
<iframe src="https://example.com"></iframe>
|
|
```
|
|
|
|
When HF detects a nested iframe in a composition, it auto-falls back to
|
|
**screenshot mode** rather than the deterministic BeginFrame mode. This
|
|
costs render performance but produces visibly-correct output. See
|
|
[hyperframes-vs-remotion.mdx](https://github.com/heygen-com/hyperframes/blob/main/docs/guides/hyperframes-vs-remotion.mdx)
|
|
for details.
|
|
|
|
## `delayRender()` / `continueRender()`
|
|
|
|
```tsx
|
|
const handle = delayRender();
|
|
useEffect(() => {
|
|
loadAsset().then(() => continueRender(handle));
|
|
}, []);
|
|
```
|
|
|
|
Drop. HF waits on asset readiness via the [Frame Adapter pattern](https://hyperframes.heygen.com/concepts/frame-adapters)
|
|
— images, videos, fonts, and Lottie animations all signal load
|
|
completion natively. There's nothing to do at the application level.
|
|
|
|
## When the asset isn't a file
|
|
|
|
If Remotion's media source is a Buffer, dataURL, or URL.createObjectURL,
|
|
the asset doesn't exist on disk and can't be copied via setup.sh. Two
|
|
options:
|
|
|
|
1. Materialize the asset at translation time — write the buffer to a file
|
|
in `hf-src/assets/`.
|
|
2. Embed as a data URL directly in the HTML (`src="data:image/png;base64,..."`)
|
|
for small assets (< 100 KB).
|
|
|
|
For audio/video Buffers, option 1 is preferred — base64-encoded media
|
|
bloats the HTML and slows the renderer.
|