Media processing = ffmpeg + imagemagick + sox.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill media --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Media?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-media-asi)More formats (shields.io, HTML) on the badges page.
---
name: media
description: Media processing = ffmpeg + imagemagick + sox.
metadata:
trit: 1
---
# media
Media processing = ffmpeg + imagemagick + sox.
## Atomic Skills
| Skill | Domain |
|-------|--------|
| ffmpeg | Video/audio |
| imagemagick | Images |
| sox | Audio |
## Video
```bash
# Convert
ffmpeg -i in.mov -c:v libx264 out.mp4
# Resize
ffmpeg -i in.mp4 -vf scale=1280:-1 out.mp4
# GIF
ffmpeg -i in.mp4 -vf "fps=10,scale=320:-1" out.gif
```
## Audio
```bash
# Extract
ffmpeg -i video.mp4 -vn -c:a aac audio.m4a
# Convert
sox in.wav -r 44100 out.wav
```
## Image
```bash
# Resize
convert in.png -resize 800x600 out.png
# Format
convert in.png out.jpg
```
## Pipeline
```bash
ffmpeg -i in.mp4 -f image2pipe - | convert - -resize 50% out.gif
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!