RemotionUI

Comment Callout

A viewer comment answered on screen — marked up, hearted, and replied to.

SceneScenesAdvanced

comment-callout30fps · 960×540
Install
$ npx remotion-ui@latest add comment-callout

The comment lands from the feed, the marker sweeps the phrase named by highlight, the creator hearts it, and the composer opens and types out reply before it sends. Leave reply empty to end the scene on the comment itself, and drop highlight to skip the markup beat.

Agent notes

Install first, then import the copied source component locally. AI guide →

Import
@/remotion/scenes/comment-callout
  • Use when: full-frame scenes, overlays, cards, and reusable video sections.
  • Customize: body, author, handle, initials, 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

Example
import { CommentCallout } from "@/remotion/scenes/comment-callout"; <CommentCallout author="Mina Lee" handle="@minamakes" body="Can you turn this into a quick video breakdown?" highlight="a quick video breakdown" reply="Dropping it Thursday — here's the short version." />

API Reference

PropTypeDescription
bodystringThe viewer comment being answered.
authorstringDisplay name of the commenter.
handlestringSocial handle, also shown on the reply line.
initialsstringAvatar initials. Defaults to the first two letters of author.
timestampstringRelative time shown after the handle, e.g. "2h".
highlightstringSubstring of body the marker sweeps across. Matched case-insensitively; omit to skip the beat.
replystringAnswer typed into the composer and sent. Pass an empty string to end on the comment.
replyLabelstringLabel on the reply action. Defaults to "Reply".
likesnumberLike count before the creator hearts the comment. Default 128.
accentColorstringAvatar, marker, heart, and send colour.
backgroundColorstringOverrides the page background behind the card.
theme"dark" | "light"Card palette. Default "dark".
speednumberAnimation speed multiplier for fitting a fixed-length Sequence. Default 1.

Related