Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计通过

video-downloader视频下载器

Agent Skill

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

总安装

42,228

周安装

1,725

GitHub Stars

公开资料未说明

下载量

13,524
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install video-downloader

简介

用于辅助视频生成和动画项目开发。

  • 适合组织镜头或生成素材说明。video-downloader 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 可维护合成代码并排查渲染问题。适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。
  • 需确认分辨率、时长和导出格式等参数。
  • 涉及外部素材时应核对版权授权要求。

SKILL.md

name
Video Downloader
slug
video-downloader
version
1.0.0
homepage
https://clawic.com/skills/video-downloader
description
Download online videos with quality and format controls using yt-dlp for reliable local saves.
changelog
Initial release with local yt-dlp wrapper, quality controls, and explicit security boundaries.
metadata
{"clawdbot":{"emoji":"⬇️","requires":{"bins":["yt-dlp","python3"]},"install":[{"id":"brew","kind":"brew","formula":"yt-dlp","bins":["yt-dlp"],"label":"Install yt-dlp (Homebrew)"}],"os":["linux","darwin"]}}

Video Downloader

Download single videos from user-provided URLs with predictable quality, format, and output paths.

Setup

On first use, read setup.md for integration guidelines.

When to Use

Use this skill when the user asks to download a video or extract audio from a video URL. It is optimized for one-off downloads with explicit quality and format requirements.

Architecture

Memory lives in ~/video-downloader/. See memory-template.md for structure.

~/video-downloader/
├── memory.md             # Status + user preferences
├── downloads-log.md      # Optional history of completed downloads
└── failed-downloads.md   # Optional retries and failure reasons

Quick Reference

Load only what you need to keep context small during execution.

TopicFile
Setup flowsetup.md
Memory templatememory-template.md
Command recipescommands.md
Download scriptdownload_video.py

Core Rules

1. Confirm Rights and Target First

  • Ask for the exact URL and intended use when unclear.
  • If the request implies unauthorized copying, refuse and suggest legal alternatives.

2. Inspect Metadata Before Downloading

  • Run metadata check first to confirm title, duration, and available formats.
  • If metadata fetch fails, stop and report the exact error instead of retrying blindly.

3. Match Quality to User Intent

  • Use best when user says "highest quality".
  • Use capped quality (1080p, 720p, etc.) for smaller files or device limits.
  • Use audio-only mode only when they explicitly want audio extraction.

4. Use Deterministic Output Names

  • Save files as %(title)s [%(id)s].%(ext)s to reduce collisions.
  • Keep downloads in a user-approved directory and never write outside it.

5. Prefer the Local Wrapper Script

  • Use python3 download_video.py "<url>" ... for consistent behavior.
  • Fall back to raw yt-dlp commands only if the user asks for custom flags not covered by the script.

6. Verify Output Before Declaring Success

  • Confirm file exists, extension matches request, and size is non-zero.
  • For audio-only downloads, confirm output is .mp3.

Common Traps

  • Downloading playlists accidentally -> use --no-playlist by default.
  • Choosing best for limited storage -> oversized files and slow transfers.
  • Re-trying blocked URLs repeatedly -> temporary ban risk and no progress.
  • Saving with title only -> filename collisions across similar uploads.
  • Skipping metadata check -> wrong media downloaded from redirected links.

External Endpoints

The downloader only contacts domains implied by the user-provided URL.

EndpointData SentPurpose
User-provided video host URL domains (via yt-dlp)Requested media URL and standard downloader headersFetch metadata and media streams

No other data is sent externally.

Security & Privacy

Data that leaves your machine:

  • Only the target media URL and standard downloader request headers sent by yt-dlp.

Data that stays local:

  • Downloaded files in the selected output folder.
  • Optional memory notes under ~/video-downloader/.

This skill does NOT:

  • Store credentials in plain text.
  • Access files outside user-approved output paths.
  • Download playlists unless the user explicitly asks.
  • Make undeclared network requests outside the target media host.

Trust

By using this skill, requests are sent to the video host domains behind the provided URL. Only install if you trust those services with your request metadata.

Related Skills

Install with clawhub install <slug> if user confirms:

  • video — video processing workflows
  • ffmpeg — codec conversion tasks
  • audio — audio cleanup workflows
  • youtube-video-transcript — transcript extraction

Feedback

  • If useful: clawhub star video-downloader
  • Stay updated: clawhub sync

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.01%
按下载量换算11,362

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills