--- id: daxaur/openpaw/c-video version: "a57e3adc" license: MIT install: manual updated: 2026-05-23 --- # c-video — c-video equips Claude with command-line tools to fetch videos from YouTube, Vimeo, and other platforms, then process them locally. Extract audio tracks, transcode between formats, or trim specific segments—all through yt-dlp and ffmpeg integration. Publisher: daxaur · Stars: 153 · Updated: 2026-05-23 Install (manual): `git clone https://github.com/daxaur/openpaw` ## 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 ```bash # 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 ```bash # 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 `-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` [View on SkillFed](https://skillfed.io/daxaur/openpaw/c-video) · [View on GitHub](https://github.com/daxaur/openpaw)