bilibili-downloader/SKILL.md
批量下载B站视频并提取音频MP3。支持单个视频、多P合集、UP主全部投稿、收藏夹。自动提取音频,可选保留视频。触发词:'下载B站'、'B站视频'、'bilibili下载'、'提取音频'。
npx skillsauth add atxinsky/skills bilibili-downloaderInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
批量下载B站视频,提取音频MP3。
pip install yt-dlp)Claude 会根据用户需求自动调用以下脚本:
python ~/.claude/skills/bilibili-downloader/bili_download.py --url "BV链接" --audio-only --vocals
输出两份:原始MP3 + vocals/纯人声MP3(去背景音乐)
python ~/.claude/skills/bilibili-downloader/bili_download.py --url "BV链接" --audio-only --vocals --all-pages
python ~/.claude/skills/bilibili-downloader/bili_download.py --space "UP主UID" --audio-only --vocals
python ~/.claude/skills/bilibili-downloader/bili_download.py --url "BV链接" --audio-only
python ~/.claude/skills/bilibili-downloader/bili_download.py --url "BV链接"
| 参数 | 说明 |
|------|------|
| --url | B站视频链接(支持BV号、完整URL) |
| --space | UP主UID,下载全部投稿 |
| --output | 输出目录,默认桌面 bilibili_downloads |
| --audio-only | 只保留MP3音频,删除视频 |
| --vocals | 同时生成纯人声MP3(去背景音乐,存入 vocals/ 子目录) |
| --keep-video | 提取音频同时保留视频文件 |
| --all-pages | 下载合集所有分P |
| --cookies | 使用浏览器cookies(获取高清画质) |
# 单个文件
python ~/.claude/skills/bilibili-downloader/vocal_extract.py "input.mp3" -o ./vocals
# 批量处理整个目录
python ~/.claude/skills/bilibili-downloader/vocal_extract.py ~/Desktop/bilibili_downloads/ -o ~/Desktop/bilibili_downloads/vocals
使用 Meta 的 htdemucs 模型,AI 分离人声和背景音乐,输出纯人声 MP3。
development
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
testing
Use when creating new skills, editing existing skills, or verifying skills work before deployment
development
Use when you have a spec or requirements for a multi-step task, before touching code
documentation
Create detailed implementation plan with bite-sized tasks