Media processing (10 man pages).
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill ffmpeg --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ffmpeg?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-ffmpeg-asi)More formats (shields.io, HTML) on the badges page.
---
name: ffmpeg
description: Media processing (10 man pages).
metadata:
trit: 0
---
# ffmpeg
Media processing (10 man pages).
## Convert
```bash
ffmpeg -i input.mov -c:v libx264 output.mp4
ffmpeg -i input.mp4 -c:v libvpx-vp9 output.webm
```
## Audio
```bash
ffmpeg -i video.mp4 -vn -c:a aac audio.m4a
ffmpeg -i input.mp3 -ar 44100 output.wav
```
## Resize
```bash
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4
ffmpeg -i input.mp4 -vf scale=-1:480 output.mp4
```
## GIF
```bash
ffmpeg -i input.mp4 -vf "fps=10,scale=320:-1" output.gif
```
## Concat
```bash
ffmpeg -f concat -i list.txt -c copy output.mp4
```
## Capture
```bash
ffmpeg -f avfoundation -i "1" -t 10 capture.mp4
```
## Stream
```bash
ffmpeg -i input.mp4 -f mpegts - | mpv -
```
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!