<< All versions
Skill v1.0.1
currentAutomated scan100/100daxaur/openpaw/c-video
2 files
──Details
PublishedMay 30, 2026 at 10:37 PM
Content Hashsha256:36a0156ad15fc48a...
Git SHAa2562d1c5cb2
Bump Typepatch
──Files
Files (1 file, 1.5 KB)
SKILL.md1.5 KBactive
SKILL.md · 58 lines · 1.5 KB
version: "1.0.1" name: c-video description: Download videos, extract audio, convert formats, and clip segments using yt-dlp and ffmpeg. Supports YouTube, Vimeo, and hundreds of other sites. tags: [video, audio, download, yt-dlp, ffmpeg, conversion]
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
bash
# Download a video (best quality)yt-dlp "https://youtube.com/watch?v=ID"# Download audio only as MP3yt-dlp -x --audio-format mp3 "https://youtube.com/watch?v=ID"# Download specific format/resolutionyt-dlp -f "bestvideo[height<=1080]+bestaudio" "URL"# Download to specific output pathyt-dlp -o "~/Downloads/%(title)s.%(ext)s" "URL"# List available formatsyt-dlp -F "URL"
ffmpeg — Processing & Conversion
bash
# Convert video formatffmpeg -i input.mp4 output.webm# Extract audio from videoffmpeg -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 videoffmpeg -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