From open-agent-hub
Processes, generates, and displays captions in Remotion videos using JSON with the Caption type. References transcription, display, and SRT import workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/open-agent-hub:remotion-captionsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
All captions must be processed in JSON. The captions must use the [`Caption`](https://www.remotion.dev/docs/captions/caption.md) type which is the following:
All captions must be processed in JSON. The captions must use the Caption type which is the following:
import type { Caption } from "@remotion/captions";
This is the definition:
type Caption = {
text: string;
startMs: number;
endMs: number;
timestampMs: number | null;
confidence: number | null;
};
To transcribe video and audio files to generate captions, load the transcribe-captions.md file for more instructions.
To display captions in your video, load the display-captions.md file for more instructions.
To import captions from a .srt file, load the import-srt-captions.md file for more instructions.
npx claudepluginhub guanyang/open-agent-hub --plugin open-agent-hub3plugins reuse this skill
First indexed Jul 12, 2026
Provides best practices for Remotion video creation in React, covering 3D, animations, audio, captions, charts, transitions, and more.
Provides best practices for Remotion video creation in React, covering 3D, animations, audio, captions, fonts, sequencing, and more.
Edits, processes, and renders videos using FFmpeg and Remotion. Handles stitching clips, transitions, captions, teasers, transcription via Whisper, and analysis with ffprobe.