Word-level captions
Also searched as: captions, animated subtitles, karaoke captions, word-by-word captions
Canonical Definition
Word-level captions are subtitles timed to individual words rather than full phrases, where each word dynamically scales, highlights, or enters at the exact millisecond it is spoken.
120ms - 250ms per word
spring({ damping: 14, stiffness: 220 }) or cubic-bezier(0.16, 1, 0.3, 1)
30fps or 60fps
Keep bottom 28% clear of UI buttons and top 15% clear of username bars in 9:16.
Word-level captions arose from speech-to-text models capable of producing word-level timestamps ({ text, start, end }). Rather than approximating a line over three seconds, video code can synchronize graphic changes to the vocal onset of every phoneme.
In short-form social video (9:16 vertical), captions function as primary retention drivers. Because over 70% of mobile feeds are browsed with sound muted, kinetic captions provide visual motion in the middle third of the screen, pulling the eye from word to word.
Kinetic Slams & Pop Animations
Punching words into view with instantaneous arrival and damped settle
A kinetic slam gives weight to key nouns and verbs. Rather than gently fading in, the word enters slightly oversized (scale 1.15 to 1.3) with high initial velocity and settles to 1.0 within 4 to 6 frames.
When combined with spring physics, the slam avoids mechanical harshness while preserving the percussive feel of spoken cadence.
How this works: The active word scales down from 1.25x with a sharp spring ease, synchronizing impact with speech spikes.
- Scale-down impact with instant onset
- Automatic word line-wrapping in safe area
- Zero latency between speech timestamp and frame reveal
import { spring, useCurrentFrame, useVideoConfig } from "remotion";
export const KineticWord = ({ word, active }: { word: string; active: boolean }) => {
const frame = useCurrentFrame();
const { fps } = useVideoConfig();
const scale = active
? spring({ frame, fps, config: { damping: 14, stiffness: 220, mass: 0.8 }, from: 1.25, to: 1 })
: 1;
return (
<span
style={{
transform: `scale(${scale})`,
display: "inline-block",
color: active ? "#38bdf8" : "#ffffff",
}}
>
{word}
</span>
);
};Karaoke Pill Highlights & Background Sweeps
Guiding the eye with continuous bounding boxes across multi-word lines
In continuous reading layouts, the entire phrase is visible in muted contrast while a luminous pill or high-contrast background sweeps behind the active word.
This technique prevents the jumpy visual noise of words appearing and disappearing rapidly, providing a stable visual anchor that guides comprehension.
How this works: A rounded accent pill smoothly interpolates horizontal position and width to wrap the current word.
- Smooth spring interpolation between word bounding boxes
- High contrast text inversion inside the pill
- Maintains paragraph stability while speech progresses
Engineering Guidelines & Common Pitfalls
Best Practices (What to do)
- Limit each caption line to 3-5 words maximum to maintain quick readability at phone distances.
- Use high-contrast fills (white on black or yellow on dark blue) with subtle text dropshadows.
- Reserve explosive animations (particle bursts, matrix decodes) for emphasized emotional beats.
Common Failure Modes (What to avoid)
- Over-styling every single word: if every conjunction and preposition slams, visual hierarchy collapses.
- Placing captions too low where TikTok/Instagram handle bars and captions cover them.
- Unsynchronized audio offsets: even a 2-frame (66ms) delay between speech and highlight feels disconnected.
Working catalog implementations
Typed Remotion components ready to drop into code.
Caption Kinetic Slam
Slamming, high-energy kinetic captions for punchy hooks and emphasis beats.
Pill Karaoke
Pill-shaped container with per-word karaoke color highlight
Highlight
Red background sweep behind each active word, TikTok-style
Editorial Emphasis
Dual-font system with dramatic size contrast for emphasis words
Build word-level captions in Animatiq
Prompt our motion agent in natural language. Get back typed Remotion React code with custom easing curves, brand palettes, and frame-accurate timing.
Related motion principles
Kinetic typography
Kinetic typography is the expressive animation of text itself — words and glyphs that move, scale, shear, or morph in rhythm with narrative meaning rather than merely labelling a shot.
Motion FundamentalsTiming, spacing & rhythm
Timing is the number of frames an action takes; spacing is the variation in position between successive frames; rhythm is the overarching cadence governing the pace of cuts and arrivals.
Motion FundamentalsAspect ratios & safe areas
Aspect ratio is the proportional relationship between a video frame's width and height (16:9 for landscape, 9:16 for vertical reels, 1:1 for square feeds), defining compositional margins and UI safe zones.