transcribe

transcribe is a command for coding agents from DojoCodingLabs/remotion-superpowers. It costs 38 tokens per session (816 once invoked), scanned A, original, MIT.

A command that turns an audio or video file into text with timestamps, using Whisper, a speech-recognition system.

In plain words
What is it for?
Use it to create SRT subtitle files or JSON captions for Remotion videos, then review the transcript with its timing.
Why use it?
It removes the need to transcribe recordings manually and prepares timed text for subtitles.

Command

Part of the remotion-superpowers plugin — 2 skills, 13 commands, 3 agents, 2 hooks, 5 MCP servers shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add commands/dojocodinglabs/remotion-superpowers/transcribe
Clone the repo
git clone --depth 1 https://github.com/DojoCodingLabs/remotion-superpowers

Or install remotion-superpowers, the plugin that ships this one along with the rest of its 2 skills, 13 commands, 3 agents, 2 hooks, 5 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for transcribe

README.md
[![agentmods](https://agentmods.dev/badge/commands/dojocodinglabs/remotion-superpowers/transcribe.svg)](https://agentmods.dev/commands/dojocodinglabs/remotion-superpowers/transcribe)
Your own site
<a href="https://agentmods.dev/commands/dojocodinglabs/remotion-superpowers/transcribe"><img src="https://agentmods.dev/badge/commands/dojocodinglabs/remotion-superpowers/transcribe.svg" alt="Measured on agentmods" height="20"></a>
Per session 38 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 816 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00038 $0.00816
Opus 5 $0.00019 $0.00408
Sonnet 5 $0.00008 $0.00163
Haiku 4.5 $0.00004 $0.00082

Measured 3d ago against content hash 8c1fb82a38a0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

transcribe scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

commands/transcribe.md · 113 lines

How it starts

The opening of the file, as written. The whole thing — 113 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Transcribe — Audio/Video to Text

You are helping the user transcribe audio or video files into text with precise timestamps.

Workflow

1. Identify the Source File

Find audio/video files to transcribe:

# Check common locations
ls public/audio/ public/footage/ public/ 2>/dev/null | grep -E '\.(mp3|wav|m4a|ogg|mp4|mov|webm)$'

Ask the user which file to transcribe if multiple exist.

2. Transcribe with Whisper

Use remotion-media generate_subtitles:
- input: [path to audio/video file]
- project_path: [project root path]

This generates an SRT file with timestamps saved to the project.

3. Present the Transcript

Show the transcription with timestamps:

📝 Transcription: [filename]

[00:00:00 → 00:00:03] Welcome to our product demo
[00:00:03 → 00:00:07] Today we're going to show you how easy it is
[00:00:07 → 00:00:11] to create professional videos with code
...

Total duration: [X]s
Word count: [X] words

4. Output Formats

Ask what format the user needs:

SRT (default) — Standard subtitle format:

1
00:00:00,000 --> 00:00:03,200
Welcome to our product demo

2
00:00:03,200 --> 00:00:07,100
Today we're going to show you how easy it is

JSON Captions — For Remotion's @remotion/captions:

[
  { "text": " Welcome", "startMs": 0, "endMs": 800, "confidence": 0.95 },
  { "text": " to", "startMs": 800, "endMs": 1000, "confidence": 0.98 },
  { "text": " our", "startMs": 1000, "endMs": 1200, "confidence": 0.97 }
]

Plain text — Just the words, no timestamps:

Welcome to our product demo. Today we're going to show you how easy it is to create professional videos with code.

5. Common Use Cases

After transcription, suggest next steps:

  • Add captions → Run /add-captions to create TikTok-style animated subtitles
  • Sync animations → Use timestamps to trigger visual elements at specific words
  • Create a script → Edit the transcript as the basis for a new voiceover
  • Translate → Use the transcript to create versions in other languages
  • Content repurpose → Extract key quotes for social media clips

Read the full file on GitHub · 113 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 113 lines · 38 tokens per session scan A 8c1fb82a38a0

Subscribe to this mod's changes

transcribe is a command published in the GitHub repository DojoCodingLabs/remotion-superpowers (116 stars, last pushed 6mo ago), licensed MIT. It adds 38 tokens to every session and 816 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.