← 返回
未分类

Download Video

Use when the user wants to download a YouTube or Bilibili video by URL or title, saving to local Videos folder
zzlupus
未分类 clawhub v1.0.0 100000 Key: 无需
★ 0
Stars
📥 254
下载
💾 0
安装

概述

Download Video (YouTube / Bilibili)

Overview

Use yt-dlp to download videos from YouTube or Bilibili. Downloads go to the user's Videos folder (~/Videos).

Prerequisites

yt-dlp must be installed:

yt-dlp --version

# Install if missing
pip install yt-dlp        # cross-platform
winget install yt-dlp      # Windows
brew install yt-dlp        # macOS
sudo apt install yt-dlp    # Debian/Ubuntu

ffmpeg is recommended for merging video+audio streams.

Download by URL

yt-dlp -o "<videos-dir>/%(title)s.%(ext)s" "<url>"

Replace with the user's Videos folder path, and with the video URL.

Supported URLs:

  • YouTube: https://www.youtube.com/watch?v=... or https://youtu.be/...
  • Bilibili: https://www.bilibili.com/video/BV...

Download by Title (search)

# YouTube
yt-dlp -o "<videos-dir>/%(title)s.%(ext)s" "ytsearch1:<title>"

# Bilibili
yt-dlp -o "<videos-dir>/%(title)s.%(ext)s" "bilisearch1:<title>"

Quick Reference

GoalFlag
------------
Best quality (default)-f bestvideo+bestaudio/best
Audio only (mp3)-x --audio-format mp3
Specific resolution-f "bestvideo[height<=720]+bestaudio"
Subtitles--write-subs --sub-langs zh-Hans,en
Playlist (all videos)just pass the playlist URL
Limit speed--rate-limit 2M

Common Mistakes

  • "ffmpeg not found" — merge of best video+audio fails. Install ffmpeg or use -f best (single stream).
  • Bilibili login-required content — add cookies with --cookies-from-browser chrome.
  • Videos folder missing — create it first.

Workflow

  1. URL given → download directly
  2. Title given → use ytsearch1: or bilisearch1: prefix
  3. yt-dlp missing → install, then retry
  4. Error → read error message, check Common Mistakes above

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-21 15:03 安全 安全

安全检测

暂无安全检测报告