| 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
yt-dlp "https://youtube.com/watch?v=ID"
yt-dlp -x --audio-format mp3 "https://youtube.com/watch?v=ID"
yt-dlp -f "bestvideo[height<=1080]+bestaudio" "URL"
yt-dlp -o "~/Downloads/%(title)s.%(ext)s" "URL"
yt-dlp -F "URL"
ffmpeg — Processing & Conversion
ffmpeg -i input.mp4 output.webm
ffmpeg -i input.mp4 -vn -acodec mp3 output.mp3
ffmpeg -i input.mp4 -ss 00:01:30 -t 00:00:45 -c copy clip.mp4
ffmpeg -i input.mp4 -vf scale=1280:720 output.mp4
Usage Guidelines
- Confirm the output directory before downloading large files
- Use
-x with yt-dlp for audio-only extraction instead of downloading video first
Notes
- Only download content you have rights to use
yt-dlp may need periodic updates: pip install -U yt-dlp