From asi
Provides bash commands for media processing: ffmpeg for video/audio conversion/resizing/GIFs/extraction, imagemagick for image resize/format, sox for audio, plus pipelines.
How this skill is triggered — by the user, by Claude, or both
Slash command
/asi:mediaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Media processing = ffmpeg + imagemagick + sox.
Media processing = ffmpeg + imagemagick + sox.
| Skill | Domain |
|---|---|
| ffmpeg | Video/audio |
| imagemagick | Images |
| sox | Audio |
# 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
# Extract
ffmpeg -i video.mp4 -vn -c:a aac audio.m4a
# Convert
sox in.wav -r 44100 out.wav
# Resize
convert in.png -resize 800x600 out.png
# Format
convert in.png out.jpg
ffmpeg -i in.mp4 -f image2pipe - | convert - -resize 50% out.gif
This skill connects to the K-Dense-AI/claude-scientific-skills ecosystem:
general: 734 citations in bib.duckdbThis skill maps to Cat# = Comod(P) as a bicomodule in the equipment structure:
Trit: 0 (ERGODIC)
Home: Prof
Poly Op: ⊗
Kan Role: Adj
Color: #26D826
The skill participates in triads satisfying:
(-1) + (0) + (+1) ≡ 0 (mod 3)
This ensures compositional coherence in the Cat# equipment structure.
npx claudepluginhub plurigrid/asi --plugin asiProvides ffmpeg CLI commands for media conversion, audio extraction, video resizing, GIF creation, concatenation, screen capture, and streaming.
FFmpeg CLI reference for video/audio processing: format conversion, resizing/cropping/trimming, audio mixing/extraction, overlays/text/subtitles, GIFs/thumbnails, GPU encoding, ffprobe inspection.
Translates natural language descriptions of video/audio operations into correct FFmpeg commands for transcoding, trimming, filtering, and more.