Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器clawhub未标认证来源可访问clear审计提醒

multi-platform-video-downloader多平台视频下载器

Agent Skill

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

总安装

9,270

周安装

375

GitHub Stars

公开资料未说明

下载量

2,910
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install multi-platform-video-downloader

简介

用于辅助视频生成、动画合成或 Remotion 项目开发。

  • 适合组织镜头、生成素材说明或排查渲染问题。
  • 支持抖音、Bilibili、YouTube 等多平台视频下载。
  • 安装命令:openclaw skills install multi-platform-video-downloader。
  • 注意版权授权与商业使用合规性审查。

SKILL.md

name
video-downloader
description
Universal video downloader supporting multiple platforms (Douyin, Bilibili, YouTube, TikTok, etc.). Can download videos by URL or search by keyword (Douyin supported). Use when users need to download videos from video platforms.

Universal Video Downloader

A versatile video downloading tool that supports multiple video platforms with intelligent platform detection and multiple download methods.

Supported Platforms

  • Douyin (抖音) - Chinese TikTok
  • Bilibili (B站) - Chinese video platform
  • YouTube - Global video platform
  • TikTok - International short video
  • Xigua (西瓜视频) - Chinese video platform
  • Kuaishou (快手) - Chinese short video
  • Generic - Any other video site (using browser mode)

Features

  • Automatic Platform Detection - Identifies platform from URL
  • Smart Download Method - Uses yt-dlp for most sites, DrissionPage for anti-crawl sites
  • Search & Download - Search Douyin by keyword and download results
  • Batch Download - Download multiple videos at once
  • Metadata Extraction - Saves title, author, platform info

Installation Options

Option 1: Docker (Recommended - No dependencies needed)

# Build image
docker build -t video-downloader .

# Download video
docker run -v $(pwd)/downloads:/app/downloads video-downloader "URL"

See DOCKER_README.md for detailed Docker usage.

Option 2: Python (Manual installation)

# Required dependencies
pip install yt-dlp requests DrissionPage

# For DrissionPage browser automation
# Chrome browser will be auto-downloaded on first use

Usage

Download Single Video

# Douyin
python scripts/video_downloader.py "https://www.douyin.com/video/xxx"

# Bilibili
python scripts/video_downloader.py "https://www.bilibili.com/video/xxx"

# YouTube
python scripts/video_downloader.py "https://www.youtube.com/watch?v=xxx"

# Any other platform
python scripts/video_downloader.py "https://example.com/video"

Batch Download

python scripts/video_downloader.py \
  -u "https://www.douyin.com/video/xxx" \
  -u "https://www.bilibili.com/video/yyy" \
  -u "https://www.youtube.com/watch?v=zzz"

Search and Download (Douyin)

# Search "美女" and download 5 videos
python scripts/video_downloader.py 美女 --search --count 5

# Search with custom count
python scripts/video_downloader.py 美女 --search --count 10

Force Browser Mode

For sites with strong anti-crawl protection:

python scripts/video_downloader.py "https://example.com/video" --browser

Specify Output Directory

python scripts/video_downloader.py "URL" --output "D:\\MyVideos"

Parameters

  • url_or_keyword - Video URL or search keyword
  • --url, -u - Video URL(s), can be used multiple times
  • --search, -s - Enable search mode (for Douyin)
  • --platform, -p - Platform for search (default: douyin)
  • --count, -n - Number of videos to download (default: 5)
  • --output, -o - Output directory (default: D:\video_downloads)
  • --browser, -b - Force use browser mode for downloading

Output Structure

video_downloads/
├── single_20240312_121029/
│   ├── 001_video_title.mp4
│   └── 001_video_title.json
├── batch_20240312_121102/
│   ├── 001_video1.mp4
│   ├── 001_video1.json
│   ├── 002_video2.mp4
│   ├── 002_video2.json
│   └── _summary.json
└── douyin_keyword_20240312_121205/
    ├── 001_video1.mp4
    ├── 001_video1.json
    ├── 002_video2.mp4
    ├── 002_video2.json
    └── _summary.json

Metadata Format

{
  "index": 1,
  "title": "Video Title",
  "author": "Uploader Name",
  "platform": "douyin",
  "url": "https://www.douyin.com/video/xxx",
  "video_filename": "001_video_title.mp4",
  "file_size_mb": 16.84,
  "download_time": "2024-03-12T12:20:30"
}

How It Works

Platform Detection

The tool automatically detects the platform from the URL:

  • douyin.com → Douyin
  • bilibili.com / b23.tv → Bilibili
  • youtube.com / youtu.be → YouTube
  • tiktok.com → TikTok
  • etc.

Download Methods

  1. yt-dlp (default for most platforms)

- Fast and reliable - Supports 1000+ sites - Best for YouTube, Bilibili, etc.

  1. DrissionPage (for anti-crawl sites)

- Real browser automation - Bypasses most anti-crawl protections - Used automatically for Douyin - Can be forced with --browser flag

Search Functionality

For Douyin search:

  1. Opens browser and navigates to search page
  2. Extracts video links from search results
  3. Downloads each video using browser session

Troubleshooting

"yt-dlp not installed"

pip install yt-dlp

"DrissionPage not installed"

pip install DrissionPage

Download fails for specific site

Try forcing browser mode:

python video_downloader.py "URL" --browser

Chrome not found (DrissionPage)

DrissionPage will auto-download Chrome on first use. If it fails:

  1. Install Chrome manually
  2. Or set Chrome path in DrissionPage config

Connection errors

Some sites may block automated access. Try:

  • Using a VPN
  • Waiting a few minutes between requests
  • Using --browser mode

Notes

  • Respect Copyright - Only download videos you have permission to use
  • Rate Limiting - The tool includes delays to avoid overwhelming servers
  • Cookie Support - DrissionPage mode uses browser cookies for authenticated access
  • File Naming - Special characters in titles are sanitized for filesystem compatibility

Dependencies

  • Python 3.8+
  • yt-dlp
  • DrissionPage
  • requests
  • BeautifulSoup4 (optional, for parsing)

License

This tool is for educational and personal use only. Respect the terms of service of video platforms.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

76.74%
按下载量换算2,233

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills