video-processing

video-processing is a skill for Claude Code, Codex from WingedGuardian/GENesis-AGI. It costs 21 tokens per session (1,715 once invoked), scanned A, original, MIT.

A workflow for downloading, transcribing, analysing and editing video, including making short vertical clips, captions and thumbnails.

In plain words
What is it for?
Use it to process local or online videos, create transcripts and clips, add captions, or prepare thumbnails.
Why use it?
It brings common video-processing tasks into one workflow instead of requiring separate manual tools.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to process local or online videos, create transcripts and clips, add captions, or prepare thumbnails.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/wingedguardian/genesis-agi/video-processing
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 WingedGuardian/GENesis-AGI --skill video-processing
Clone the repo
git clone --depth 1 https://github.com/WingedGuardian/GENesis-AGI

Made for: Claude Code, Codex.

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-processing

README.md
[![agentmods](https://agentmods.dev/badge/skills/wingedguardian/genesis-agi/video-processing/github.svg)](https://agentmods.dev/skills/wingedguardian/genesis-agi/video-processing)
Your own site
<a href="https://agentmods.dev/skills/wingedguardian/genesis-agi/video-processing"><img src="https://agentmods.dev/badge/skills/wingedguardian/genesis-agi/video-processing/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-processing

Your own site · 80×15
<a href="https://agentmods.dev/skills/wingedguardian/genesis-agi/video-processing"><img src="https://agentmods.dev/badge/skills/wingedguardian/genesis-agi/video-processing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,715 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 78
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
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.00021 $0.01715
Opus 5 $0.00010 $0.00857
Sonnet 5 $0.00004 $0.00343
Haiku 4.5 $0.00002 $0.00171

Measured 7d ago against content hash 71f99c2d7770, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

video-processing scanned grade A 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 7d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s https://api.groq.com/openai/v1/audio/transcriptions \
src/genesis/skills/video-processing/SKILL.md · 213 lines

How it starts

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

Video Processing

Purpose

Turn long-form video into processed outputs: transcripts, short clips, vertical format with captions, thumbnails. Uses FFmpeg, yt-dlp, and transcription services. All operations via shell commands.

When to Use

  • User requests video clipping, transcription, or processing.
  • An evaluation or research task involves video content.
  • Content creation requires extracting highlights from longer video.
  • A surplus compute task involves video analysis.

Prerequisites

Required tools (install if missing):

  • ffmpeg and ffprobe — video processing
  • yt-dlp — video downloading from 1000+ sites
  • Transcription: YouTube auto-subs (free), or Groq/OpenAI Whisper API

Check availability:

which ffmpeg ffprobe yt-dlp 2>/dev/null

Pipeline

Phase 1: Intake

From URL:

yt-dlp --dump-json "URL" 2>/dev/null | python3 -c "
import sys, json
d = json.load(sys.stdin)
print(f'Title: {d[\"title\"]}')
print(f'Duration: {d[\"duration\"]}s')
print(f'Resolution: {d.get(\"width\",\"?\")}x{d.get(\"height\",\"?\")}')
"

From local file:

ffprobe -v quiet -print_format json -show_format -show_streams "file.mp4"

If duration > 2 hours, ask user to specify a segment range.

Phase 2: Download

# Best quality up to 1080p with audio
yt-dlp -f "bv[height<=1080]+ba/b[height<=1080]" -o "source.mp4" "URL"

# Also grab auto-subtitles if available (avoids transcription entirely)
yt-dlp --write-auto-subs --sub-lang en --sub-format json3 \
  --skip-download -o "source" "URL"

If source.en.json3 exists, skip to Phase 4 (transcription already done).

Phase 3: Transcription

Priority order — use the first available:

  1. YouTube auto-subs (already downloaded in Phase 2) — free, instant
  2. Groq Whisper API — fast cloud, free tier available
    curl -s https://api.groq.com/openai/v1/audio/transcriptions \
      -H "Authorization: Bearer $API_KEY_GROQ" \
      -F [email protected] -F model=whisper-large-v3 \
      -F response_format=verbose_json -F timestamp_granularities[]=word
    
  3. OpenAI Whisper API — reliable, paid
  4. Local Whisper — if installed, slowest but free
    whisper source.mp4 --model small --output_format json \
      --output_dir . --language en
    

Read the full file on GitHub · 213 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. 7d ago First seen · 213 lines · 21 tokens per session scan A 71f99c2d7770

Subscribe to this mod's changes

video-processing is a skill published in the GitHub repository WingedGuardian/GENesis-AGI (96 stars, last pushed yesterday), licensed MIT. It adds 21 tokens to every session and 1,715 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

figure

Hybrid figure pipeline (Nano Banana raster + rembg background removal + TikZ vector assembly). Includes a TikZ template library covering quantum circuits (quantikz), Feynman diagrams (tikz-feynman), circuits (circuitikz), molecules (chemfig), 2D/3D plots (pgfplots), energy-level diagrams, phase-space trajectories…

Muuuun/luxas · 104 tokens

ideation-facilitation

Facilitate divergent and convergent ideation to turn a framed problem into a ranked shortlist of concepts.

andreibesleaga/GABBE · 28 tokens

audiocraft-audio-generation

PyTorch library for audio generation including text-to-music (MusicGen) and text-to-sound (AudioGen). Use when you need to generate music from text descriptions, create sound effects, or perform melody-conditioned music generation.

raphaelmansuy/edgecrab · 54 tokens

segment-anything-model

Foundation model for image segmentation with zero-shot transfer. Use when you need to segment any object in images using points, boxes, or masks as prompts, or automatically generate all object masks in an image.

raphaelmansuy/edgecrab · 45 tokens

ascii-video

Production pipeline for ASCII art video — any format. Converts video/audio/images/generative input into colored ASCII character video output (MP4, GIF, image sequence). Covers: video-to-ASCII conversion, audio-reactive music visualizers, generative ASCII art animations, hybrid video+audio reactive, text/lyrics…

raphaelmansuy/edgecrab · 118 tokens

stable-diffusion-image-generation

State-of-the-art text-to-image generation with Stable Diffusion models via HuggingFace Diffusers. Use when generating images from text prompts, performing image-to-image translation, inpainting, or building custom diffusion pipelines.

raphaelmansuy/edgecrab · 50 tokens