burn-graphics

burn-graphics is a skill for Claude Code from danielrosehill/Claude-Video-Editor-Plugin. It costs 86 tokens per session (1,705 once invoked), scanned A, original, MIT.

A tool that places images, logos, lower-thirds, or text titles on top of a video at chosen times. A lower-third is an on-screen name or label, and FFmpeg performs the video composition.

In plain words
What is it for?
Use it to add watermarks, logos, speaker labels, title cards, or timed image and text overlays with positions, sizes, opacity, and fade settings.
Why use it?
It removes the need to edit each overlay manually in a video editor and supports several overlays in one processing pass.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the video-editing plugin — 40 skills shipped together

Good fit Use it to add watermarks, logos, speaker labels, title cards, or timed image and text overlays with positions, sizes, opacity, and fade settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/danielrosehill/claude-video-editor-plugin/burn-graphics
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.

Any agent
npx skills add danielrosehill/Claude-Video-Editor-Plugin --skill burn-graphics
Clone the repo
git clone --depth 1 https://github.com/danielrosehill/Claude-Video-Editor-Plugin

Made for: Claude Code.

Or install video-editing, the plugin that ships this one along with the rest of its 40 skills.

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 burn-graphics

README.md
[![agentmods](https://agentmods.dev/badge/skills/danielrosehill/claude-video-editor-plugin/burn-graphics/github.svg)](https://agentmods.dev/skills/danielrosehill/claude-video-editor-plugin/burn-graphics)
Your own site
<a href="https://agentmods.dev/skills/danielrosehill/claude-video-editor-plugin/burn-graphics"><img src="https://agentmods.dev/badge/skills/danielrosehill/claude-video-editor-plugin/burn-graphics/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 burn-graphics

Your own site · 80×15
<a href="https://agentmods.dev/skills/danielrosehill/claude-video-editor-plugin/burn-graphics"><img src="https://agentmods.dev/badge/skills/danielrosehill/claude-video-editor-plugin/burn-graphics.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 86 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,705 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00086 $0.01705
Opus 5 $0.00043 $0.00852
Sonnet 5 $0.00017 $0.00341
Haiku 4.5 $0.00009 $0.00170

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

Security

Grade A, and why

burn-graphics 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 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.

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.

skills/burn-graphics/SKILL.md · 153 lines

How it starts

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

Burn Graphics

Compose one or more graphic overlays into a video in a single ffmpeg pass. Inputs can be images (PNG with alpha, JPEG), text titles (rendered via drawtext), or pre-built lower-third image cards.

This skill superseds commands/add-watermark.md (legacy single-image watermark only).

Procedure

1. Input model

The skill takes a list of overlay specs. The user can supply them inline, or via a JSON file:

{
  "overlays": [
    {
      "type": "image",
      "path": "/abs/path/logo.png",
      "position": "top-right",
      "margin": 24,
      "scale": 0.15,
      "start": "0",
      "end": "end",
      "opacity": 0.8
    },
    {
      "type": "lower-third",
      "image": "/abs/path/lower-third-card.png",
      "position": "bottom-left",
      "margin_x": 60,
      "margin_y": 80,
      "start": "00:00:05",
      "end": "00:00:12",
      "fade": 0.5
    },
    {
      "type": "text",
      "text": "Daniel Rosehill",
      "subtext": "Technology Communications",
      "position": "bottom-left",
      "font": "Inter",
      "size": 48,
      "color": "white",
      "box": true,
      "box_color": "[email protected]",
      "start": "00:00:05",
      "end": "00:00:12"
    }
  ]
}

Position keywords (top-left, top-right, bottom-left, bottom-right, top-center, bottom-center, center) resolve to ffmpeg expressions during graph build.

2. Resolve positions

top-left      : x=margin                          : y=margin
top-right     : x=W-w-margin                      : y=margin
bottom-left   : x=margin                          : y=H-h-margin
bottom-right  : x=W-w-margin                      : y=H-h-margin
top-center    : x=(W-w)/2                         : y=margin
bottom-center : x=(W-w)/2                         : y=H-h-margin
center        : x=(W-w)/2                         : y=(H-h)/2

(W,H = main video dims; w,h = overlay dims.)

3. Build the filtergraph

Each overlay becomes one overlay segment, optionally preceded by scale, format=rgba, and colorchannelmixer=aa=<opacity>. Time-gating uses enable='between(t,$start,$end)'.

Read the full file on GitHub · 153 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 · 153 lines · 86 tokens per session scan A 874b8e1f3569

Subscribe to this mod's changes

burn-graphics is a skill published in the GitHub repository danielrosehill/Claude-Video-Editor-Plugin (5 stars, last pushed 4mo ago), licensed MIT. It adds 86 tokens to every session and 1,705 once invoked, about $0.0004 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-31.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens