mcpbeat

Remotion Captions

remotion-dev/remotion-captions

Transcribing, displaying and animating captions

This is a copy. The original lives at remotion-dev/remotion-remotion-captions.

3k tokens
context cost
the whole folder, loaded on every use
6
files
instructions only
1
copies elsewhere
how many repositories repackaged it
4202
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/remotion-dev/skills --skill remotion-captions

What comes with it

11 250 bytes besides the instruction
agents/openai.yaml
assets/remotion-icon.png
display-captions.md
import-srt-captions.md
transcribe-captions.md

The instruction itself

3 sections, as written by the author

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;
};

Generating captions

To transcribe video and audio files to generate captions, load the transcribe-captions.md file for more instructions.

Displaying captions

To display captions in your video, load the display-captions.md file for more instructions.

Importing captions

To import captions from a .srt file, load the import-srt-captions.md file for more instructions.

Repackaged in 1 other repositories

same content, different owner
remotion-dev/remotion open on GitHub →

How to use it

Copy the folder

Take remotion-dev/remotion-captions from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.