โ† All skills
Tencent SkillHub ยท Content Creation

Video Download

Download videos from 1800+ websites and generate subtitles using Faster Whisper AI. Use when user wants to download videos from YouTube, Bilibili, Twitter, T...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Download videos from 1800+ websites and generate subtitles using Faster Whisper AI. Use when user wants to download videos from YouTube, Bilibili, Twitter, T...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
_meta.json, SKILL.md, scripts/video_parser.py, references/supportedsites.md, .clawhub/origin.json

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.6

Documentation

ClawHub primary doc Primary doc: SKILL.md 22 sections Open source page

Video Download & Subtitle Generation

This skill downloads videos from 1800+ websites and generates subtitles using Faster Whisper AI.

Supported Websites

This skill supports downloading from virtually any video website thanks to yt-dlp. Some popular ones include: Video Platforms: YouTube, YouTube Shorts Bilibili (ๅ“”ๅ“ฉๅ“”ๅ“ฉ), Niconico (ใƒ‹ใ‚ณใƒ‹ใ‚ณๅ‹•็”ป) TikTok, Douyin (ๆŠ–้Ÿณ) Twitter/X, Facebook, Instagram Vimeo, Dailymotion Twitch (clips, VODs), Kick Rutube, VK Video Chinese Platforms: iQiyi (็ˆฑๅฅ‡่‰บ), Youku (ไผ˜้…ท), MangoTV (่Š’ๆžœTV) Weibo Video, Douyu (ๆ–—้ฑผ), Huya (่™Ž็‰™) International: Netflix, Disney+, HBO Max, Amazon Prime Video BBC iPlayer, ITV, Channel 4 ARD, ZDF, Arte For the complete list of 1800+ supported sites, see: yt-dlp supported extractors Local document about supported sites: references/supportedsites.md Important: If you see an error like Sign in to confirm youโ€™re not a bot, you should use the cookiefile parameter for authenticated downloads. See the cookiefile usage section at the end of this document.

Prerequisites

Ensure the following Python packages are installed: yt-dlp - For downloading videos from any supported site yt-dlp-ejs - External JavaScript for yt-dlp supporting many runtimes ffmpeg-python - For audio extraction faster-whisper - For speech-to-text transcription (faster and more memory-efficient than openai-whisper). Note: The first run will download models from HuggingFace (default: small, ~3GB). A VPN is required for mainland China users. tqdm - For progress bar display during transcription Install via pip: pip install yt-dlp yt-dlp-ejs ffmpeg-python faster-whisper tqdm ffmpeg must also be installed on your system

Command Line

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads"}'

Parameters

ParameterTypeRequiredDescriptionurlsarrayYesList of video URLs from any supported websiteoutputstringNoOutput directory (default: "./downloads")modelstringNoFaster Whisper model size: tiny, base, small, medium, large, large-v2, large-v3, turbo (default: "small")transcribebooleanNoWhether to transcribe video to subtitle (default: true)subtitle_formatstringNoSubtitle format: txt, srt, vtt, json (default: "txt")download_subtitlebooleanNoDownload video's built-in subtitles if available (default: false)onlysubtitlebooleanNoOnly download subtitles. When true, the script uses skip_download + writesubtitles + writeautomaticsub internally (default: false)overwrite_subtitlebooleanNoOverwrite existing subtitle files (default: true, set to false to skip if exists)cookiestringNoCookie header string; injected into http_headers.Cookie (default: "")cookiesfrombrowserstringNoRead cookies from browser (default: ""; injected only when non-empty)cookiefilestringNoNetscape-format cookie file path (default: ""; injected only when non-empty)

Output

The skill will: Create a folder for each video (named after the video title) Download the video file to that folder Extract audio as WAV file Generate transcript using Faster Whisper Save subtitle as .txt file Output structure: downloads/ โ””โ”€โ”€ Video Title/ โ”œโ”€โ”€ Video Title.mp4 โ”œโ”€โ”€ Video Title.wav โ””โ”€โ”€ Video Title.txt

Download YouTube video:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=dQw4w9WgXcQ"],"output":"./my_videos"}'

Download Bilibili video:

python scripts/video_parser.py '{"urls":["https://www.bilibili.com/video/BV1xx411c7XD"],"output":"./downloads"}'

Download TikTok video:

python scripts/video_parser.py '{"urls":["https://www.tiktok.com/@username/video/1234567890"],"output":"./tiktok"}'

Download multiple videos from different sites:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO1","https://www.bilibili.com/video/BV1xx","https://twitter.com/user/status/123"],"output":"./videos"}'

Download Twitch clip:

python scripts/video_parser.py '{"urls":["https://www.twitch.tv//channel/clip/ClipName"],"output":"./clips"}'

Download only (without transcription):

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","transcribe":false}'

Generate SRT subtitle:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","subtitle_format":"srt"}'

Generate VTT subtitle:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","subtitle_format":"vtt"}'

Download video with built-in subtitles:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","download_subtitle":true}'

Download with custom Faster Whisper model:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","model":"large"}'

Skip transcription if subtitle already exists:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","overwrite_subtitle":false}'

Download video with Cookie:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","cookie":"sid=xxx; token=yyy"}'

Download video with cookies from browser:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","cookiesfrombrowser":"chrome"}'

Download video with cookie file:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","cookiefile":"/path/to/cookies.txt"}'

Only download subtitles:

python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","onlysubtitle":true,"cookiefile":"/path/to/cookies.txt"}' cookiefile usage: Install the Get cookies.txt LOCALLY Chrome extension first. URL: https://chromewebstore.google.com/detail/get-cookiestxt-locally/cclelndahbckbenkjhflpdbgdldlbecc?pli=1 Log in to the target website, then use the extension to export cookies.txt to your local machine. Set cookiefile to that local file path, for example: python scripts/video_parser.py '{"urls":["https://www.youtube.com/watch?v=VIDEO_ID"],"output":"./downloads","cookiefile":"/Users/yourname/Downloads/cookies.txt"}'

Troubleshooting

ffmpeg not found: Install ffmpeg via brew install ffmpeg (macOS) or your system's package manager Faster Whisper model download fails: Models are downloaded from HuggingFace. Mainland China users need a VPN/proxy to download models. The default small model is ~75MB. Download fails: Some videos may be geo-restricted, age-gated, or unavailable. Check the video URL and try again. Cookie/auth required: Some sites need authentication. You can pass cookies via yt-dlp options if needed.

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Config1 Scripts
  • SKILL.md Primary doc
  • references/supportedsites.md Docs
  • scripts/video_parser.py Scripts
  • _meta.json Config
  • .clawhub/origin.json Config