RemotionUI
Scenes

Talking Head Layout

Caption-safe creator layout for speaker clips.

SceneblocksAdvanced

Install
npx remotion-ui@latest add talking-head-layout

Frame speaker media with title copy, optional waveform, and reserved caption space.

Live preview
Advanced — installs @remotion/media and waveform-line for optional audio visuals.

AI usage

Install first, then import the copied source component locally.

AI guide

Install

npx remotion-ui@latest add talking-head-layout

Import after install

@/remotion/scenes/talking-head-layout
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: mediaSrc, audioSrc, title, subtitle, plus copied source for timing, layout, colors, and typography.
  • Rule: do not import this component from the remotion-ui npm package; it is copied into your project.

Usage

import { TalkingHeadLayout } from "@/remotion/scenes/talking-head-layout";

<TalkingHeadLayout
  mediaSrc={staticFile("speaker.mp4")}
  audioSrc={staticFile("voice.wav")}
  title="Put the speaker first"
/>

API Reference

PropTypeDescription
mediaSrcstringOptional image or video source for the speaker/media slot.
audioSrcstringOptional audio source for the waveform line.
titlestringPrimary title beside or below the media.
subtitlestringSupporting copy.
fit"cover" | "contain"Media object-fit behavior.

Related