Agent skill
c-video
Download videos, extract audio, convert formats, and clip segments using `yt-dlp` and `ffmpeg`. Supports YouTube, Vimeo, and hundreds of other sites.
Install this agent skill to your Project
npx add-skill https://github.com/daxaur/openpaw/tree/main/skills/c-video
SKILL.md
What This Skill Does
Enables Claude to download online videos, extract audio tracks, convert between formats, and cut/clip video segments using yt-dlp and ffmpeg.
Available CLI Tools
yt-dlp — Video Downloading
# Download a video (best quality)
yt-dlp "https://youtube.com/watch?v=ID"
# Download audio only as MP3
yt-dlp -x --audio-format mp3 "https://youtube.com/watch?v=ID"
# Download specific format/resolution
yt-dlp -f "bestvideo[height<=1080]+bestaudio" "URL"
# Download to specific output path
yt-dlp -o "~/Downloads/%(title)s.%(ext)s" "URL"
# List available formats
yt-dlp -F "URL"
ffmpeg — Processing & Conversion
# Convert video format
ffmpeg -i input.mp4 output.webm
# Extract audio from video
ffmpeg -i input.mp4 -vn -acodec mp3 output.mp3
# Clip a segment (start time, duration)
ffmpeg -i input.mp4 -ss 00:01:30 -t 00:00:45 -c copy clip.mp4
# Resize video
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4
Usage Guidelines
- Confirm the output directory before downloading large files
- Use
-xwithyt-dlpfor audio-only extraction instead of downloading video first
Notes
- Only download content you have rights to use
yt-dlpmay need periodic updates:pip install -U yt-dlp
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
c-slack
Send messages and upload files to Slack channels using the `slack` CLI. Supports direct messages, channel posts, file uploads, and thread replies.
c-timer
Timers, alarms, and pomodoro — set countdowns with native notifications.
c-telegram
Bidirectional Telegram bridge — talk to Claude from your phone. Built into OpenPaw.
c-system
macOS Swiss Army Knife — control volume, wifi, battery, dock, display, trash, firewall, screensaver, shutdown, and more via m-cli.
c-tracking
Track packages across UPS, FedEx, USPS, and DHL using the `ordercli` CLI. Look up tracking numbers, get current status, estimated delivery dates, and shipment history without visiting carrier websites.
c-network
DNS lookups with doggo and readable HTTP requests with httpie — modern networking tools for the terminal.
Didn't find tool you were looking for?