smithery/plurigrid

media

Media processing = ffmpeg + imagemagick + sox.

Installation

$ npx skills add smithery/plurigrid --skill media

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/plurigrid · top by installs.

npx skills add smithery/plurigrid

Browse all from smithery/plurigrid

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
trit
1

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 772 B
  • docs SUMMARY.md 59 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

media

Media processing = ffmpeg + imagemagick + sox.

Atomic Skills

Skill Domain
ffmpeg Video/audio
imagemagick Images
sox Audio

Video

# 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

# Extract
ffmpeg -i video.mp4 -vn -c:a aac audio.m4a

# Convert
sox in.wav -r 44100 out.wav

Image

# Resize
convert in.png -resize 800x600 out.png

# Format
convert in.png out.jpg

Pipeline

ffmpeg -i in.mp4 -f image2pipe - | convert - -resize 50% out.gif