Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计提醒

video-download视频下载

Agent Skill

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

总安装

380

周安装

16

GitHub Stars

7

下载量

133
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/arcocodes/renoise-plugins-official --skill video-download

简介

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发,支持组织镜头、生成素材说明和维护合成代码。

  • 适用于 YouTube、TikTok 等平台视频下载,自动处理格式选择、去重及浏览器 fallback 机制。
  • 需预先安装 yt-dlp,可选 agent-browser 以支持 Douyin/TikTok 回退下载。
  • 安装命令为 npx skills add https://github.com/arcocodes/renoise-plugins-official --skill video-download。
  • 涉及人物肖像、商业发布或版权素材时,应先核对授权许可和内容审核要求。

SKILL.md

Video Download

Download videos from YouTube, TikTok, and other platforms to local MP4 files. Handles format selection, platform-prefixed dedup, TikTok cookie fallback, and Douyin/TikTok browser-based fallback automatically.

Quick Start

# Download any video
bash ${CLAUDE_SKILL_DIR}/scripts/download-video.sh '<URL>'

# Download to a custom directory
bash ${CLAUDE_SKILL_DIR}/scripts/download-video.sh '<URL>' 'path/to/output'

Prerequisites

yt-dlp --version   # Required. Install: brew install yt-dlp (macOS) or pip install yt-dlp

Optional (for Douyin/TikTok fallback):

  • agent-browser installed globally (npm install -g agent-browser)
  • Chrome for Testing installed (agent-browser install)

Usage

Single Video

bash ${CLAUDE_SKILL_DIR}/scripts/download-video.sh '<URL>'

The script handles everything automatically:

  • Extracts a platform-prefixed video ID (yt-dQw4w9WgXcQ, tk-7571284267028729101, vid-aHR0cHM6Ly93d3)
  • Saves to resources/references/<video_id>.mp4
  • Skips download if file already exists (dedup)
  • Retries TikTok downloads with --cookies-from-browser chrome on failure
  • Removes zero-byte leftovers from interrupted downloads

Batch Download

for URL in '<URL1>' '<URL2>' '<URL3>'; do
  bash ${CLAUDE_SKILL_DIR}/scripts/download-video.sh "$URL"
done

Script Output

OutputMeaning
ALREADY_EXISTS: <path>File already downloaded, skipped
DOWNLOADED: <path>Download succeeded
FAILED: <message>Download failed (exit code 1)

Post-Download Actions

After a successful download, the user may want to:

  1. Analyze the video — extract script, style, or rhythm: node ${CLAUDE_PLUGIN_ROOT}/skills/gemini-gen/scripts/gemini.mjs --file <path> --mode video-script
  2. Add to Material Pool — for use as reference material in video generation: node ${CLAUDE_PLUGIN_ROOT}/skills/renoise-gen/scripts/material-ingest.mjs <path>

Suggest these options to the user after download completes.

Douyin/TikTok Fallback

When yt-dlp fails for Douyin or TikTok URLs (common with 403 errors or region-restricted content), use the one-step browser-based fallback:

bash ${CLAUDE_SKILL_DIR}/scripts/download-fallback.sh '<douyin-or-tiktok-url>' 'output-dir'

This script wraps the full agent-browser + GreenVideo flow into a single command (open → paste URL → parse → extract video URL → download → close).

Manual Fallback Steps

If the fallback script is unavailable, follow these steps:

  1. Open GreenVideo: agent-browser open "https://greenvideo.cc/en/"
  2. Paste URL and parse: agent-browser snapshot agent-browser fill <input-ref> "<video-url>" agent-browser click <start-button-ref>
  3. Wait 5 seconds, then extract video URL: agent-browser eval " (function() {const nuxtData = window.__NUXT__; if (!nuxtData) return 'ERROR: No Nuxt data found'; const str = JSON.stringify(nuxtData); const mp4Match = str.match(/https?:[^\\\"]*(?:mp4|video|play|aweme|douyinvod|bilivideo)[^\\\"]{0,500}/g); if (mp4Match && mp4Match.length > 0) return mp4Match[0]; return 'ERROR: No video URL found in Nuxt state';})() "
  4. Download and cleanup: curl -L -o ~/Downloads/<filename>.mp4 "<extracted-video-url>" agent-browser close

Video ID Logic

PlatformPatternExample ID
YouTubewatch?v=, shorts/, embed/, youtu.be/ → 11-char IDyt-dQw4w9WgXcQ
TikTok15+ digit numeric ID in URLtk-7571284267028729101
OtherBase64url of URL, first 16 charsvid-aHR0cHM6Ly93d3

Troubleshooting

ErrorSolution
HTTP Error 403 (TikTok/Douyin)Script auto-retries with cookies. If still failing, use fallback script
--max-filesize skippedVideo exceeds 200M limit. Download manually with -f 'best[height<=720]'
is not a valid URLEnsure URL is wrapped in single quotes
Requested formats are incompatibleyt-dlp auto-transcodes, no action needed
Parse fails on GreenVideoCheck URL is valid and publicly accessible
No video URL in Nuxt stateTry clicking download button and check for <video> elements
Download fails (403) from GreenVideoVideo URLs expire quickly — extract and download immediately

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.82%
按下载量换算49

Claude

28.35%
按下载量换算38

Cursor

18.08%
按下载量换算24

Gemini CLI

8.98%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills