一键导入
yt-dlp-cli
Use yt-dlp to download videos and audio from YouTube, Vimeo, Twitter, and 1000+ other sites. Extract metadata, select formats, and convert media.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use yt-dlp to download videos and audio from YouTube, Vimeo, Twitter, and 1000+ other sites. Extract metadata, select formats, and convert media.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
| name | yt-dlp-cli |
| description | Use yt-dlp to download videos and audio from YouTube, Vimeo, Twitter, and 1000+ other sites. Extract metadata, select formats, and convert media. |
Feature-rich video/audio downloader. Supports YouTube, Vimeo, Twitter, and 1000+ sites.
yt-dlp "https://youtube.com/watch?v=VIDEO_ID" # Default best quality
yt-dlp -f "bestvideo+bestaudio" URL # Best video + audio
yt-dlp -f "bestvideo[height<=720]+bestaudio" URL # Max 720p
yt-dlp -f "best[height<=480]" URL # Max 480p single file
yt-dlp -x URL # Extract audio (best format)
yt-dlp -x --audio-format mp3 URL # Convert to MP3
yt-dlp -x --audio-format wav URL # Convert to WAV
yt-dlp -x --audio-quality 0 URL # Best audio quality
yt-dlp -F URL # List available formats
yt-dlp -f 22 URL # Download specific format ID
yt-dlp -o "%(title)s.%(ext)s" URL # Title as filename
yt-dlp -o "%(uploader)s/%(title)s.%(ext)s" URL # Organize by uploader
yt-dlp -o "/tmp/%(title)s.%(ext)s" URL # Specific directory
yt-dlp --print title URL # Print title only
yt-dlp --print duration URL # Print duration
yt-dlp -j URL # Full metadata as JSON
yt-dlp --write-info-json URL # Save metadata file
yt-dlp --write-thumbnail URL # Download thumbnail
yt-dlp --write-subs --sub-lang en URL # Download subtitles
yt-dlp --write-auto-subs --sub-lang en URL # Auto-generated subs
yt-dlp --flat-playlist -j URL # List playlist entries
yt-dlp --playlist-items 1-5 URL # Download first 5
yt-dlp -I 1:10 URL # Items 1 through 10
yt-dlp --sponsorblock-remove all URL # Remove sponsor segments
yt-dlp --embed-thumbnail --embed-subs URL # Embed metadata
yt-dlp --cookies-from-browser chrome URL # Use browser cookies
yt-dlp --download-archive archive.txt URL # Skip already downloaded
-j (JSON) for metadata extraction without downloading--print for specific fields: --print title, --print duration-x --audio-format mp3 for podcast/audio extraction--flat-playlist -j to list playlist contents without downloading-f "bestvideo[height<=720]+bestaudio" to balance quality and size--download-archive for incremental downloadsyt-dlp -j "URL" | jq '{title, duration, view_count, upload_date}'
yt-dlp -x --audio-format mp3 -o "%(playlist_index)s-%(title)s.%(ext)s" "PLAYLIST_URL"