โ† All skills
Tencent SkillHub ยท Developer Tools

Bilibili Downloader

Download videos, audio, subtitles, and covers from Bilibili using bilibili-api. Use when working with Bilibili content for downloading videos in various qual...

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

Download videos, audio, subtitles, and covers from Bilibili using bilibili-api. Use when working with Bilibili content for downloading videos in various qual...

โฌ‡ 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
SKILL.md, assets/config_template.json, references/quick_guide.md, scripts/download_audio.py, scripts/download_config.json, scripts/download_playlist.py

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
1.0.0

Documentation

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

Quick Start

Download a video by URL: pip install bilibili-api-python python -c " from bilibili_api import video, sync v = video.Video(bvid='BV1xx411c7m2') sync(v.download(output='./video.mp4')) "

Video Quality

Specify quality with qn parameter (127=8K, 126=ๆœๆฏ”, 125=1080P+, etc.) Default selects best available quality

Audio Download

Download original soundtrack: v.download_audious(output='./audio.mp3') Supports various audio formats

Subtitles

Get available subtitles: v.get_subtitle() Download subtitle files: sync(v.download_subtitle(output='./'))

Covers and Thumbnails

Get cover URL: v.get_cover() Download cover: sync(v.download_cover(output='./cover.jpg'))

Download Single Video

from bilibili_api import video, sync v = video.Video(bvid='BV1xx411c7m2') sync(v.download(output='./video.mp4'))

Download with Specific Quality

from bilibili_api import video, sync v = video.Video(bvid='BV1xx411c7m2') info = v.get_download_url(qn=127) # 8K quality

Download Entire Playlist

from bilibili_api import video, sync from bilibili_api import playlist pl = playlist.Playlist(playlist_id='123456') for v in sync(pl.get_videos()): sync(v.download(output=f'./playlist/{v["title"]}.mp4'))

Download Audio Only

from bilibili_api import video, sync v = video.Video(bvid='BV1xx411c7m2') sync(v.download_audio(output='./audio.mp3'))

Authentication

For premium content, use browser cookies: Login to Bilibili in browser Export SESSDATA cookie value Set environment variable: export BILIBILI_SESSDATA='your_cookie_value'

Requirements

bilibili-api-python: pip install bilibili-api-python ffmpeg: Required for video/audio processing Python 3.8+

scripts/

Utility scripts for common download operations.

references/

API documentation from bilibili-api repo Quality codes reference (qn values) Cookie setup guide

assets/

Download templates and configuration examples.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs2 Scripts2 Config
  • SKILL.md Primary doc
  • references/quick_guide.md Docs
  • scripts/download_audio.py Scripts
  • scripts/download_playlist.py Scripts
  • assets/config_template.json Config
  • scripts/download_config.json Config