# Media Processing

> Process multimedia files with FFmpeg and ImageMagick for encoding, conversion, and manipulation. Use when working with video, audio, or image processing pipelines.

- **Type:** Skill
- **Install:** `agentstack add skill-ihatesea69-kiro-kit-media-processing`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ihatesea69](https://agentstack.voostack.com/s/ihatesea69)
- **Installs:** 0
- **Category:** [Content & Media](https://agentstack.voostack.com/c/content-and-media)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [ihatesea69](https://github.com/ihatesea69)
- **Source:** https://github.com/ihatesea69/kiro-kit/tree/main/.kiro/skills/media-processing
- **Website:** https://www.npmjs.com/package/kiro-kit

## Install

```sh
agentstack add skill-ihatesea69-kiro-kit-media-processing
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Media Processing

Activate this skill when processing media files (video, audio, images).

## When to Use

- Converting media formats
- Encoding video with specific codecs
- Extracting audio from video
- Resizing or cropping images
- Generating thumbnails
- Creating streaming manifests (HLS/DASH)
- Batch processing media files

## FFmpeg Common Operations

```bash
# Convert format
ffmpeg -i input.mp4 -c:v libx264 -crf 23 output.mp4

# Extract audio
ffmpeg -i video.mp4 -vn -acodec libmp3lame audio.mp3

# Generate thumbnail
ffmpeg -i video.mp4 -ss 00:00:05 -frames:v 1 thumb.jpg

# HLS streaming
ffmpeg -i input.mp4 -codec: copy -start_number 0 -hls_time 10 -f hls output.m3u8
```

## ImageMagick Common Operations

```bash
# Resize
convert input.jpg -resize 800x600 output.jpg

# Format conversion
convert input.png output.webp

# Batch processing
mogrify -resize 50% -format webp *.png
```

## Rules

- Always specify output codec explicitly
- Use hardware acceleration when available
- Set quality parameters appropriate for use case
- Validate output files after processing
- Handle large files with streaming (avoid loading into memory)

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ihatesea69](https://github.com/ihatesea69)
- **Source:** [ihatesea69/kiro-kit](https://github.com/ihatesea69/kiro-kit)
- **License:** MIT
- **Homepage:** https://www.npmjs.com/package/kiro-kit

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-ihatesea69-kiro-kit-media-processing
- Seller: https://agentstack.voostack.com/s/ihatesea69
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
