reelcn
Social

Social

Captions: Minimal

Quiet captions: one line, no effects, with only the spoken word brightening.

Install

Usage

<CaptionsMinimal captions={captions} />

Props

NameTypeDefaultDescription
style?CSSProperties
className?string
captionsCaption[]Word-level captions, as `@remotion/captions` defines them. `pnpm reelcn-transcribe` writes this shape.
size?numberFont size in design units; long pages shrink from here.
color?string
pageMs?numberHow much speech goes on one page, in milliseconds. Lower means fewer words at a time.
maxWords?numberHard cap on words per page; long pages are split.
emphasize?string[]Words painted in the emphasis color. Case and punctuation are ignored.
position?"auto" | "top" | "bottom" | "middle"`auto` sits above the platform UI in portrait and in the lower third elsewhere.
activeColor?string
emphasisColor?string
background?string

Use

  • Interviews and documentary footage where captions should stay out of the way

Dependencies

Source

registry/items/captions-minimal.tsx
/**
 * @title Captions: Minimal
 * @category social
 * @description Quiet captions: one line, no effects, with only the spoken word brightening.
 * @duration data-driven
 * @preset captions
 * @use Interviews and documentary footage where captions should stay out of the way
 * @tags captions, minimal, interview
 * @example
 * <CaptionsMinimal captions={captions} />
 */
import { Captions, type CaptionsProps } from "./captions";

export type CaptionsMinimalProps = Omit<CaptionsProps, "variant">;

export function CaptionsMinimal(props: CaptionsMinimalProps) {
  return <Captions {...props} variant="minimal" />;
}

Related