video-render

video-render is a command for Claude Code from cnadiminti/remotion-video-studio. It costs 8 tokens per session (2,356 once invoked), scanned B, original, MIT.

A command that turns a Remotion video project into a finished video file, such as MP4, WebM, or MOV. It also lets you choose the quality, codec, size, and output location.

In plain words
What is it for?
Use it to create drafts or final videos, choose formats such as MP4, and adjust quality or rendering speed.
Why use it?
It handles the export settings needed to move from an editable project to a video you can preview or deliver.

Command for Claude Code

Written for Claude Code: argument-hint in frontmatter. Also seen: positional $N argument.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is Output: ./out/MainVideo.mp4.

Part of the remotion-video-studio plugin — 2 skills, 6 commands, 1 agent shipped together

Good fit Use it to create drafts or final videos, choose formats such as MP4, and adjust quality or rendering speed.

Compare 6 commands from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/cnadiminti/remotion-video-studio
agentmods
npx agentmods add commands/cnadiminti/remotion-video-studio/video-render

Made for: Claude Code.

Or install remotion-video-studio, the plugin that ships this one along with the rest of its 2 skills, 6 commands, 1 agent.

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 video-render

README.md
[![agentmods](https://agentmods.dev/badge/commands/cnadiminti/remotion-video-studio/video-render/github.svg)](https://agentmods.dev/commands/cnadiminti/remotion-video-studio/video-render)
Your own site
<a href="https://agentmods.dev/commands/cnadiminti/remotion-video-studio/video-render"><img src="https://agentmods.dev/badge/commands/cnadiminti/remotion-video-studio/video-render/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for video-render

Your own site · 80×15
<a href="https://agentmods.dev/commands/cnadiminti/remotion-video-studio/video-render"><img src="https://agentmods.dev/badge/commands/cnadiminti/remotion-video-studio/video-render.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 8 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,356 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 1 finding. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00008 $0.02356
Opus 5 $0.00004 $0.01178
Sonnet 5 $0.00002 $0.00471
Haiku 4.5 $0.00001 $0.00236

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

Security

Grade B, and why

video-render scanned grade B with 1 finding 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 8d 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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

await fetch('https://api.example.com/webhook', { method: 'POST',
commands/video-render.md · 486 lines

How it starts

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

Render Final Video

Render your Remotion video project to a final MP4 file.

Arguments

$ARGUMENTS

Parse arguments:

/video-render
/video-render --quality=high --output=./final.mp4
/video-render --format=mp4 --codec=h264
/video-render --help

Options

  • --quality=<low|medium|high|max> - Render quality preset
  • --output=<path> - Output file path (default: ./out/video.mp4)
  • --format=<mp4|webm|mov> - Output format
  • --codec=<h264|h265|vp9> - Video codec
  • --scale=<number> - Scale factor (default: 1)
  • --concurrency=<number> - Parallel rendering threads
  • --help - Show help

Quality Presets

Low (Fast, smaller files):

  • Resolution: 720p
  • Bitrate: 2 Mbps
  • Use case: Previews, drafts

Medium (Balanced):

  • Resolution: 1080p
  • Bitrate: 5 Mbps
  • Use case: Most projects

High (Recommended):

  • Resolution: 1080p
  • Bitrate: 10 Mbps
  • Use case: Professional content

Max (Best quality):

  • Resolution: Native (4K if configured)
  • Bitrate: 20 Mbps
  • Use case: Final deliverables

Pre-Render Checks

Before rendering, verify:

  1. All assets exist

    • Audio files in public/audio/
    • Images in public/assets/
    • Videos in public/recordings/
  2. Timing is correct

    • Preview video first
    • Check audio sync
    • Verify scene transitions
  3. Disk space available

    • Calculate estimated size
    • Ensure 2-3x size for temp files
  4. No errors in console

    • Run npm run dev
    • Check browser console
    • Fix any warnings

Rendering Process

Display a progress interface:

🎬 Rendering Video...

Composition: MainVideo
Resolution: 1920x1080 @ 30fps
Duration: 300 frames (10 seconds)
Quality: High

Progress: [████████████--------] 60% (180/300 frames)
Time elapsed: 2m 30s
Estimated remaining: 1m 40s

Current: Rendering scene 3 of 4

Render Command

npx remotion render src/index.ts MainVideo output.mp4 \
  --codec=h264 \
  --quality=90 \
  --scale=1 \
  --concurrency=4

Quality Settings

Read the full file on GitHub · 486 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. 8d ago First seen · 486 lines · 8 tokens per session scan B 54740737b0e3

Subscribe to this mod's changes

video-render is a command published in the GitHub repository cnadiminti/remotion-video-studio (2 stars, last pushed 8mo ago), licensed MIT. It adds 8 tokens to every session and 2,356 once invoked, about $0.0000 per session on Opus 5. A static security scan graded it B with 1 finding (sends data to an external url). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.