media-processing

Media processing utilities for images, audio, and video using FFmpeg and ImageMagick. Use when working with media conversion, optimization, or batch processing tasks.

8 stars

Best use case

media-processing is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Media processing utilities for images, audio, and video using FFmpeg and ImageMagick. Use when working with media conversion, optimization, or batch processing tasks.

Teams using media-processing should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/media-processing/SKILL.md --create-dirs "https://raw.githubusercontent.com/siviter-xyz/dot-agent/main/skills/media-processing/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/media-processing/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How media-processing Compares

Feature / Agentmedia-processingStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Media processing utilities for images, audio, and video using FFmpeg and ImageMagick. Use when working with media conversion, optimization, or batch processing tasks.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Media Processing

Tools and workflows for working with images, audio, and video in a repeatable, scriptable way using standard CLI tools (FFmpeg, ImageMagick) and Python helpers.

## When to Use

- Working with image batches (thumbnails, resizing, format conversion)
- Converting media between formats (video ↔ audio ↔ image)
- Optimizing video size while maintaining acceptable quality
- Preparing assets for web, mobile, or archival use
- Designing or refining CLI workflows around FFmpeg/ImageMagick

## Key Principles

- **CLI-first workflows**: Prefer command-line tools (FFmpeg, ImageMagick) and scripts that can be automated in CI or local tooling.
- **Deterministic scripts**: Scripts should be safe to run repeatedly with predictable output paths and options.
- **Non-destructive defaults**: Default to writing outputs to new files/directories rather than overwriting originals.
- **Cross-platform friendly**: Keep examples and scripts usable on Linux, macOS, and Windows where possible.
- **Agent-agnostic**: Guidance should work with any coding agent (Cursor, Claude, Copilot, etc.), not one specific environment.

## Capabilities

- **Image workflows**
  - Batch resize and thumbnail generation
  - Aspect-ratio–aware resizing (fit, fill, cover, exact)
  - Optional watermarking
  - Format conversion (e.g., PNG → WebP, JPEG)

- **Media conversion**
  - Detects media type (video, audio, image) from extension
  - Uses FFmpeg for video/audio, ImageMagick for images
  - Quality presets for `web`, `archive`, and `mobile` use cases
  - Batch conversion with dry-run and verbose modes

- **Video optimization**
  - Resolution and frame-rate adjustments
  - Single-pass (CRF) or two-pass encoding
  - Audio bitrate tuning
  - Basic before/after comparison (size, bitrate, resolution, FPS)

## Scripts

Scripts live in `scripts/` and are intended to be run directly from a shell:

- `batch_resize.py`
  - Batch image resizing with multiple strategies (`fit`, `fill`, `cover`, `exact`, `thumbnail`)
  - Optional watermark overlay
  - Supports parallel processing and dry-run mode

- `media_convert.py`
  - Unified conversion tool for video, audio, and images
  - Automatically picks FFmpeg or ImageMagick
  - Uses quality presets (`web`, `archive`, `mobile`)
  - Supports batch conversion and format changes (e.g., `.mov` → `.mp4`, `.wav` → `.mp3`)

- `video_optimize.py`
  - Focused on video size/quality trade-offs
  - Resolution caps, FPS reduction, CRF tuning, optional two-pass encoding
  - Optional comparison summary between original and optimized outputs

See `scripts/requirements.txt` for environment expectations (Python 3.10+, FFmpeg, ImageMagick) and system installation hints.

## Usage Guidelines

- **Check dependencies first**
  - Ensure `ffmpeg` and `ffprobe` are installed and on `PATH` for video/audio tasks.
  - Ensure `magick` (ImageMagick) is installed and on `PATH` for image tasks.

- **Prefer dry-runs when exploring**
  - Use `--dry-run` and/or `--verbose` flags on scripts to inspect generated commands before running them.

- **Keep originals**
  - Point outputs to a separate directory on first runs (e.g., `--output ./out/`) to avoid accidental overwrites.

- **Document workflows**
  - When you find good command lines or script invocations, promote them into project scripts (e.g., `just`, `npm scripts`, or CI jobs) so they’re repeatable.

## References

For deeper tool-specific notes (placeholders for now, extend as needed), see:
- `references/ffmpeg-encoding.md` – FFmpeg encoding patterns and flags
- `references/ffmpeg-filters.md` – Common filter graphs (scale, crop, audio filters)
- `references/ffmpeg-streaming.md` – Streaming-friendly settings and HLS/DASH tips
- `references/format-compatibility.md` – Container/codec compatibility notes (web, mobile, desktop)
- `references/imagemagick-batch.md` – Batch image processing patterns with ImageMagick
- `references/imagemagick-editing.md` – Image editing operations (crop, resize, composite, text, etc.)

Related Skills

typescript

8
from siviter-xyz/dot-agent

TypeScript standards and best practices with modern tooling. Use when working with TypeScript or TypeScript React files.

software-engineer

8
from siviter-xyz/dot-agent

Core software engineering principles for code style, documentation, and development workflow. Applies when editing code, working in software repositories, or performing software development tasks.

semantic-git

8
from siviter-xyz/dot-agent

Manage Git commits using conventional commit format with atomic staging. Always generate plain git commands before running them and offer to let the user run them manually.

python

8
from siviter-xyz/dot-agent

Python development guidelines and best practices. Use when working with Python code.

psi

8
from siviter-xyz/dot-agent

Plan-spec-implement workflow for structured development. Only use when explicitly directed by user or when mentioned in project AGENTS.md file. Generates ephemeral plans in ~/.dot-agent/, applies specs to project docs, then implements test-first.

frontend-engineer

8
from siviter-xyz/dot-agent

Frontend development guidelines for React/TypeScript applications. Modern patterns including Suspense, lazy loading, useSuspenseQuery, file organization with features directory, MUI v7 styling, TanStack Router, performance optimization, and TypeScript best practices. Use when creating components, pages, features, fetching data, styling, routing, or working with frontend code.

create-skill

8
from siviter-xyz/dot-agent

Guide for creating effective skills following best practices. Use when creating or updating skills that extend agent capabilities.

create-agents-md

8
from siviter-xyz/dot-agent

Create AGENTS.md files for project-specific inline rules. Use when adding small, project-specific instructions that should be committed in repos.

context-engineering

8
from siviter-xyz/dot-agent

Master context engineering for AI agent systems. Use when designing agent architectures, debugging context failures, optimizing token usage, implementing memory systems, building multi-agent coordination, evaluating agent performance, or developing LLM-powered pipelines. Covers context fundamentals, degradation patterns, optimization techniques, compression strategies, memory architectures, multi-agent patterns, evaluation, tool design, and project development.

code-review

8
from siviter-xyz/dot-agent

Code review practices emphasizing technical rigor, evidence-based claims, and verification. Use when receiving code review feedback, completing tasks requiring review, or before making completion claims.

cli-building

8
from siviter-xyz/dot-agent

Build command-line interfaces with async-first design, composable commands, and proper output formatting. Use when creating CLI tools, commands, or interactive terminal applications.

backend-engineer

8
from siviter-xyz/dot-agent

Build robust backend systems with modern technologies (Node.js, Python, Go, Rust), frameworks (NestJS, FastAPI, Django), databases (PostgreSQL, MongoDB, Redis), APIs (REST, GraphQL, gRPC), authentication (OAuth 2.1, JWT), testing strategies, security best practices (OWASP Top 10), performance optimization, scalability patterns (microservices, caching, sharding), DevOps practices (Docker, Kubernetes, CI/CD), and monitoring. Use when designing APIs, implementing authentication, optimizing database queries, setting up CI/CD pipelines, handling security vulnerabilities, building microservices, or developing production-ready backend systems.