reelcn
Social

Social

Captions: Bold Pop

Heavy centered captions where the spoken word grows and lifts.

Install

Usage

<CaptionsBoldPop captions={captions} emphasize={["free"]} />

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

  • Shorts and reels that need captions to carry the edit

Dependencies

Source

registry/items/captions-bold-pop.tsx
/**
 * @title Captions: Bold Pop
 * @category social
 * @description Heavy centered captions where the spoken word grows and lifts.
 * @duration data-driven
 * @preset captions
 * @use Shorts and reels that need captions to carry the edit
 * @tags captions, shorts, bold
 * @example
 * <CaptionsBoldPop captions={captions} emphasize={["free"]} />
 */
import { Captions, type CaptionsProps } from "./captions";

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

export function CaptionsBoldPop(props: CaptionsBoldPopProps) {
  return <Captions {...props} variant="bold-pop" />;
}

Related