Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
agricidaniel avatar

Claude Video Download

  • 6 installs
  • 23 repo stars
  • Updated April 6, 2026
  • agricidaniel/claude-video

claude-video-download is a Claude Code skill that downloads video and audio from 1000+ sites using yt-dlp.

About

claude-video-download is a Claude Code skill that downloads video with yt-dlp. It supports format selection, quality control, audio-only extraction, subtitle download, clip ranges, and playlists across YouTube, Vimeo, Twitter, TikTok, and over a thousand other sites. A developer uses it to fetch source video into a local media pipeline.

  • Downloads video via yt-dlp with format and quality control
  • Supports YouTube, Vimeo, Twitter, TikTok, and 1000+ sites
  • Audio-only extraction, subtitle download, and playlist support

Claude Video Download by the numbers

  • 6 all-time installs (skills.sh)
  • Ranked #1,096 of 1,335 Generative Media skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
At a glance

claude-video-download capabilities & compatibility

Free; uses yt-dlp locally with no API keys.

Capabilities
video download · audio extraction · playlist download · subtitle download
Pricing
Free
From the docs

What claude-video-download says it does

Video downloading via yt-dlp with format selection, quality control, subtitle
SKILL.md
Downloads from YouTube, Vimeo, Twitter, TikTok, and 1000+ other sites.
SKILL.md
npx skills add https://github.com/agricidaniel/claude-video --skill claude-video-download

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs6
repo stars23
Last updatedApril 6, 2026
Repositoryagricidaniel/claude-video

What it does

Download video or audio from YouTube, Vimeo, TikTok and 1000+ sites with yt-dlp, including playlists and clips.

Who is it for?

Downloading video or audio from YouTube, Vimeo, TikTok, and other sites with quality control

Skip if: Editing or transcoding downloaded files, which route to other sub-skills

When should I use this skill?

You need to download a video, audio, subtitles, or a playlist from a URL

What you get

Downloads the requested video, audio, or playlist locally in the chosen format.

  • Downloaded video files
  • Extracted audio files
  • Downloaded subtitles

By the numbers

  • Supports 1000+ sites

Files

SKILL.mdMarkdownGitHub ↗

claude-video-download — Video Downloading via yt-dlp

Pre-Flight

1. Check yt-dlp is installed: command -v yt-dlp || echo "Run /video setup" 2. Confirm user owns or has rights to download the content

Important: Content Rights

Always remind the user:

  • Only download content you own or have permission to use
  • Respect copyright and platform terms of service
  • Downloaded content is for personal use unless otherwise licensed

Common Operations

List Available Formats (no download)

yt-dlp -F "URL"

Shows all available video and audio formats with resolution, codec, bitrate, and file size.

Best Quality Download

# Best video + best audio, merged to MP4
yt-dlp -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best" \
  --merge-output-format mp4 -o "%(title)s.%(ext)s" "URL"

Specific Resolution

# 1080p max
yt-dlp -f "bestvideo[height<=1080]+bestaudio/best[height<=1080]" \
  --merge-output-format mp4 -o "%(title)s.%(ext)s" "URL"

# 720p max
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" \
  --merge-output-format mp4 -o "%(title)s.%(ext)s" "URL"

# 4K
yt-dlp -f "bestvideo[height<=2160]+bestaudio" \
  --merge-output-format mp4 -o "%(title)s.%(ext)s" "URL"

Audio-Only Download

# Best audio as MP3
yt-dlp -x --audio-format mp3 --audio-quality 0 -o "%(title)s.%(ext)s" "URL"

# Best audio as M4A (AAC)
yt-dlp -x --audio-format m4a -o "%(title)s.%(ext)s" "URL"

# Best audio as WAV (lossless)
yt-dlp -x --audio-format wav -o "%(title)s.%(ext)s" "URL"

# Best audio as Opus (most efficient)
yt-dlp -x --audio-format opus -o "%(title)s.%(ext)s" "URL"

Download with Subtitles

# Download video + all available subtitles
yt-dlp --write-subs --sub-langs all -o "%(title)s.%(ext)s" "URL"

# Download video + auto-generated subtitles
yt-dlp --write-auto-subs --sub-langs en -o "%(title)s.%(ext)s" "URL"

# Download subtitles only (no video)
yt-dlp --write-subs --sub-langs en --skip-download -o "%(title)s.%(ext)s" "URL"

# Embed subtitles into MP4
yt-dlp --write-subs --sub-langs en --embed-subs \
  --merge-output-format mp4 -o "%(title)s.%(ext)s" "URL"

Download with Metadata

# Embed thumbnail and metadata
yt-dlp --embed-thumbnail --embed-metadata \
  --merge-output-format mp4 -o "%(title)s.%(ext)s" "URL"

Playlist Download

# Download entire playlist
yt-dlp -o "%(playlist_title)s/%(playlist_index)03d - %(title)s.%(ext)s" "PLAYLIST_URL"

# Download specific range from playlist
yt-dlp --playlist-start 5 --playlist-end 10 \
  -o "%(playlist_title)s/%(playlist_index)03d - %(title)s.%(ext)s" "PLAYLIST_URL"

# Download playlist as audio only
yt-dlp -x --audio-format mp3 \
  -o "%(playlist_title)s/%(playlist_index)03d - %(title)s.%(ext)s" "PLAYLIST_URL"

Clip Download (specific time range)

# Download only a portion (requires ffmpeg)
yt-dlp --download-sections "*00:01:00-00:02:00" -o "%(title)s_clip.%(ext)s" "URL"

Output Templates

TemplateExample Output
%(title)s.%(ext)sVideo Title.mp4
%(uploader)s - %(title)s.%(ext)sChannel - Title.mp4
%(upload_date>%Y-%m-%d)s - %(title)s.%(ext)s2026-01-15 - Title.mp4
%(playlist_title)s/%(playlist_index)03d - %(title)s.%(ext)sPlaylist/001 - Title.mp4

Video Info (No Download)

# Print video info as JSON
yt-dlp --dump-json "URL" | jq '{title, duration, view_count, upload_date, resolution}'

# Just print title and duration
yt-dlp --print "%(title)s (%(duration_string)s)" "URL"

Rate Limiting and Safety

# Limit download speed (be nice to servers)
yt-dlp --limit-rate 10M -o "%(title)s.%(ext)s" "URL"

# Sleep between downloads in a playlist
yt-dlp --sleep-interval 5 --max-sleep-interval 15 -o "%(title)s.%(ext)s" "PLAYLIST_URL"

Supported Sites

yt-dlp supports 1000+ sites including: YouTube, Vimeo, Twitter/X, TikTok, Instagram, Reddit, Twitch, Dailymotion, SoundCloud, Bandcamp, and many more. Run yt-dlp --list-extractors for the full list.

Related skills

FAQ

Which sites does it support?

It downloads from YouTube, Vimeo, Twitter, TikTok, and over 1000 other sites via yt-dlp.

Can it download audio only?

Yes, it can extract best audio as MP3, M4A, WAV, or Opus.

Generative Mediaagentsautomation

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.