Token导航 LogoToken导航TokenDH.com
AI 工具需要联网github未标认证来源可访问clear审计异常

video-downloader视频下载器

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

235

周安装

10

GitHub Stars

1

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:video-downloader(视频下载器)
来源仓库:https://github.com/qiaoshouqing/skills
仓库路径:skills/video-downloader
安装命令:
npx skills add https://github.com/qiaoshouqing/skills --skill video-downloader
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/qiaoshouqing/skills --skill video-downloader

简介

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。

  • 适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。
  • 使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。
  • video-downloader 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Video Downloader - Download Videos with yt-dlp

Download videos, audio, or subtitles from YouTube, Bilibili, Twitter, and 1000+ other sites using yt-dlp.

When to Use

  • User asks to download a video
  • User asks to download or extract audio
  • User asks to download subtitles
  • User provides a video URL (YouTube, Bilibili, Twitter, etc.)
  • User wants to specify video quality (720p, 1080p, etc.)

Prerequisites - Auto Install

IMPORTANT: Before any download, check and install dependencies automatically.

Step 0: Check and Install Dependencies

# Check if yt-dlp is installed, install if missing
if ! command -v yt-dlp &>/dev/null; then
  echo "Installing yt-dlp..."
  brew install yt-dlp
fi

# Check if ffmpeg is installed, install if missing
if ! command -v ffmpeg &>/dev/null; then
  echo "Installing ffmpeg..."
  brew install ffmpeg
fi

# Verify installation
yt-dlp --version && echo "yt-dlp: ready"
ffmpeg -version 2>&1 | head -1 && echo "ffmpeg: ready"

Run this check every time before downloading. Install automatically without asking user.

Instructions for Agent

Step 1: Ensure Dependencies Installed

Run the prerequisite check above. If yt-dlp or ffmpeg is missing, install via brew install yt-dlp ffmpeg.

Step 2: Parse User Intent

Identify what the user wants:

User IntentKeywords
Video (default)"download", "video"
Audio only"audio", "mp3", "music", "extract audio"
Video + Subtitles"with subtitles", "embed subtitles"
Subtitles only"only subtitles", "subtitles only", "just subtitles"
Specific quality"720p", "1080p", "4k", "best", "worst"

Step 3: Build Command

Base command structure:

yt-dlp [OPTIONS] "URL"

Common options by intent:

  1. Basic video download (best quality):
yt-dlp -o "%(title)s.%(ext)s" "URL"
  1. Audio only (MP3):
yt-dlp -x --audio-format mp3 -o "%(title)s.%(ext)s" "URL"
  1. Specific quality (e.g., 720p):
yt-dlp -f "bestvideo[height<=720]+bestaudio/best[height<=720]" -o "%(title)s.%(ext)s" "URL"
  1. Video with embedded subtitles:
yt-dlp --write-subs --sub-lang en,zh-Hans,zh-Hant --embed-subs -o "%(title)s.%(ext)s" "URL"
  1. Subtitles only (no video):
yt-dlp --write-subs --write-auto-subs --sub-lang en,zh-Hans,zh-Hant --skip-download -o "%(title)s" "URL"

Step 4: Execute and Report

Run the command and report:

  • File name and location
  • File size (if available)
  • Any warnings or errors

Command Reference

TaskCommand
Best quality videoyt-dlp "URL"
Audio (MP3)yt-dlp -x --audio-format mp3 "URL"
Audio (M4A)yt-dlp -x --audio-format m4a "URL"
720p videoyt-dlp -f "bv[height<=720]+ba/b[height<=720]" "URL"
1080p videoyt-dlp -f "bv[height<=1080]+ba/b[height<=1080]" "URL"
4K videoyt-dlp -f "bv[height<=2160]+ba/b[height<=2160]" "URL"
With subtitlesyt-dlp --write-subs --embed-subs "URL"
Subtitles onlyyt-dlp --write-subs --write-auto-subs --skip-download "URL"
List formatsyt-dlp -F "URL"
Playlistyt-dlp -o "%(playlist_index)s-%(title)s.%(ext)s" "PLAYLIST_URL"

Response Guidelines

  • Always confirm what will be downloaded before starting
  • Show download progress or final result
  • Report the output file name and location
  • If download fails, explain the error and suggest solutions

Error Handling

ErrorSolution
yt-dlp: command not foundAuto-install: brew install yt-dlp
ffmpeg not foundAuto-install: brew install ffmpeg
Video unavailableCheck if URL is correct or video is region-locked
Private videoCannot download private videos without authentication
Format not availableUse yt-dlp -F URL to list available formats
No subtitles foundTry --write-auto-subs for auto-generated subtitles
brew: command not foundInstall Homebrew first: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Gemini CLI

28.75%
按下载量换算24

Claude Code

20.94%
按下载量换算17

Codex

16.97%
按下载量换算14

OpenCode

11.28%
按下载量换算9

trae

7.67%
按下载量换算6

Cursor

3.28%
按下载量换算3

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills