Social
Social
Captions: Subtitle Bar
Broadcast-style subtitles on a translucent bar, readable over anything.
Install
Usage
<CaptionsSubtitleBar captions={captions} position="bottom" />Props
| Name | Type | Default | Description |
|---|---|---|---|
style? | CSSProperties | — | |
className? | string | — | |
captions | Caption[] | — | Word-level captions, as `@remotion/captions` defines them. `pnpm reelcn-transcribe` writes this shape. |
size? | number | — | Font size in design units; long pages shrink from here. |
color? | string | — | |
pageMs? | number | — | How much speech goes on one page, in milliseconds. Lower means fewer words at a time. |
maxWords? | number | — | Hard 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
- Long-form video, webinars and anything with a wide audience
Dependencies
Source
registry/items/captions-subtitle-bar.tsx
/**
* @title Captions: Subtitle Bar
* @category social
* @description Broadcast-style subtitles on a translucent bar, readable over anything.
* @duration data-driven
* @preset captions
* @use Long-form video, webinars and anything with a wide audience
* @tags captions, subtitles, broadcast, accessibility
* @example
* <CaptionsSubtitleBar captions={captions} position="bottom" />
*/
import { Captions, type CaptionsProps } from "./captions";
export type CaptionsSubtitleBarProps = Omit<CaptionsProps, "variant">;
export function CaptionsSubtitleBar(props: CaptionsSubtitleBarProps) {
return <Captions {...props} variant="subtitle-bar" />;
}