download-anything
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseDownload Anything
下载任意资源
Find it. Download it. Any resource, any format.
找到它,下载它。任意资源,任意格式。
Toolkit
工具集
bash
undefinedbash
undefinedInstall all tools at once
Install all tools at once
bash scripts/install-toolkit.sh
| Tool | Install | Purpose |
|------|---------|---------|
| `yt-dlp` | `brew install yt-dlp` | Video/audio from 1800+ sites |
| `aria2c` | `brew install aria2` | Multi-thread downloads, torrents |
| `gallery-dl` | `pip3 install gallery-dl` | Batch image/media, 170+ sites |
| `spotdl` | `pip3 install spotdl` | Spotify playlists → local files |
| `wget` | `brew install wget` | Recursive downloads, site mirroring |
| `curl` | pre-installed | HTTP requests, API calls |
| `ffmpeg` | `brew install ffmpeg` | Media conversion |
| `jq` | `brew install jq` | JSON parsing for automation |bash scripts/install-toolkit.sh
| 工具 | 安装方式 | 用途 |
|------|---------|---------|
| `yt-dlp` | `brew install yt-dlp` | 从1800+站点下载视频/音频 |
| `aria2c` | `brew install aria2` | 多线程下载、种子文件下载 |
| `gallery-dl` | `pip3 install gallery-dl` | 批量下载图片/媒体,支持170+站点 |
| `spotdl` | `pip3 install spotdl` | 将Spotify播放列表保存为本地文件 |
| `wget` | `brew install wget` | 递归下载、站点镜像 |
| `curl` | 预安装 | HTTP请求、API调用 |
| `ffmpeg` | `brew install ffmpeg` | 媒体格式转换 |
| `jq` | `brew install jq` | 用于自动化的JSON解析 |Decision Tree
决策树
| Want to download... | Tool / Approach |
|---|---|
| YouTube / social media video | |
| Audio from any video URL | |
| Spotify playlist/album/track | |
| Images from gallery/artist page | |
| A direct file URL (fast) | |
| A torrent or magnet link | |
| Subtitles for a video | |
| An ebook or paper | → references/ebooks.md |
| A movie or TV show | → references/video.md |
| Music / game soundtracks / OST | → references/music.md |
| Software or app | → references/software.md |
| Stock images/video/audio/fonts | → references/media-assets.md |
| Chinese cloud drive resources | → references/cloud-search.md |
| Online courses | → references/education.md |
| Something else / not sure | → references/search-techniques.md |
| 想要下载... | 工具/方法 |
|---|---|
| YouTube/社交媒体视频 | |
| 从任意视频URL提取音频 | |
| Spotify播放列表/专辑/单曲 | |
| 图库/艺术家页面的图片 | |
| 直接文件URL(高速下载) | |
| 种子文件或磁力链接 | |
| 视频字幕 | |
| 电子书或论文 | → references/ebooks.md |
| 电影或电视剧 | → references/video.md |
| 音乐/游戏原声/OST | → references/music.md |
| 软件或应用 | → references/software.md |
| 免费素材(图片/视频/音频/字体) | → references/media-assets.md |
| 中文云盘资源 | → references/cloud-search.md |
| 在线课程 | → references/education.md |
| 其他/不确定的资源 | → references/search-techniques.md |
Scripts
脚本说明
All in . Each does one thing. Compose as needed.
scripts/| Script | What it does | Key args |
|---|---|---|
| Install all CLI tools | — |
| Download video (auto cookies for Bilibili) | |
| Extract audio | |
| Fast multi-thread download | 16 connections via aria2 |
| Batch download images | extra args passed to gallery-dl |
| Download torrent/magnet | via aria2 |
| Search & download subtitles | |
所有脚本都在目录下,每个脚本只实现一个功能,可按需组合使用。
scripts/| 脚本 | 功能 | 关键参数 |
|---|---|---|
| 安装所有CLI工具 | — |
| 下载视频(自动适配Bilibili cookies) | |
| 提取音频 | |
| 高速多线程下载 | 通过aria2实现16线程 |
| 批量下载图片 | 额外参数将传递给gallery-dl |
| 下载种子/磁力链接 | 通过aria2实现 |
| 搜索并下载字幕 | |
Quick One-Liners
快速单行命令
bash
undefinedbash
undefinedBest quality video
Best quality video
yt-dlp -f "bv*+ba/b" "URL"
yt-dlp -f "bv*+ba/b" "URL"
1080p video + subtitles
1080p video + subtitles
yt-dlp -f "bv[height<=1080]+ba/b" --write-subs --sub-langs "en,zh" "URL"
yt-dlp -f "bv[height<=1080]+ba/b" --write-subs --sub-langs "en,zh" "URL"
Extract audio as MP3
Extract audio as MP3
yt-dlp -x --audio-format mp3 "URL"
yt-dlp -x --audio-format mp3 "URL"
Download YouTube playlist
Download YouTube playlist
yt-dlp --yes-playlist "URL"
yt-dlp --yes-playlist "URL"
Fast file download (16 connections)
Fast file download (16 connections)
aria2c -x16 -s16 -k1M "URL"
aria2c -x16 -s16 -k1M "URL"
Download magnet
Download magnet
aria2c --seed-time=0 "magnet:?xt=..."
aria2c --seed-time=0 "magnet:?xt=..."
Batch images from gallery
Batch images from gallery
gallery-dl "URL"
gallery-dl "URL"
Spotify album → local MP3s
Spotify album → local MP3s
spotdl "SPOTIFY_URL"
spotdl "SPOTIFY_URL"
All PDFs from a page
All PDFs from a page
wget -r -l1 -A "*.pdf" "URL"
wget -r -l1 -A "*.pdf" "URL"
Video metadata as JSON (automation)
Video metadata as JSON (automation)
yt-dlp -j "URL"
yt-dlp -j "URL"
Get direct URL without downloading
Get direct URL without downloading
yt-dlp -g "URL"
undefinedyt-dlp -g "URL"
undefinedAgent Automation Patterns
Agent自动化模式
Video pipeline: → parse JSON → select format →
yt-dlp -j URLyt-dlp -f FORMAT URL -o OUTPUTEbook search: Search Anna's Archive / Z-Library / 鸠摩搜书 → get download page → extract link →
aria2cBulk media: → review items →
gallery-dl --dump-json URLgallery-dl -d OUTPUT URLMusic: (auto YouTube match + metadata) or
spotdl SPOTIFY_URLyt-dlp -x --audio-format mp3 YOUTUBE_URL视频处理流程: → 解析JSON → 选择格式 →
yt-dlp -j URLyt-dlp -f FORMAT URL -o OUTPUT电子书搜索: 搜索Anna's Archive/Z-Library/鸠摩搜书 → 获取下载页面 → 提取链接 → 下载
aria2c批量媒体处理: → 审核内容 → 下载
gallery-dl --dump-json URLgallery-dl -d OUTPUT URL音乐处理: (自动匹配YouTube资源并添加元数据)或使用
spotdl SPOTIFY_URLyt-dlp -x --audio-format mp3 YOUTUBE_URLDomain Instability
域名不稳定性说明
Many resource sites rotate domains. When a URL fails:
- Search: or
[site name] mirror 2026[站名] 最新地址 - Check Reddit/Twitter for community mirror lists
- Anna's Archive = most resilient ebook meta-search
- For Chinese cloud search: check 网盘之家导航 for latest links
许多资源站点会更换域名。当某个URL失效时:
- 搜索:或
[站点名称] mirror 2026[站名] 最新地址 - 查看Reddit/Twitter上的社区镜像列表
- Anna's Archive是最稳定的电子书元搜索引擎
- 中文云盘搜索:查看网盘之家导航获取最新链接
References
参考文档
| File | Content |
|---|---|
| ebooks.md | Ebook sites, academic papers, audiobooks, manga, Chinese books |
| video.md | Torrent sites, DDL, subtitles, anime, Chinese video |
| music.md | Free music, download tools, Chinese music, podcasts |
| software.md | Software archives, package managers, Chinese sites |
| media-assets.md | Stock images, video, audio, fonts |
| cloud-search.md | Chinese cloud drive search (百度/阿里/夸克) |
| education.md | Free courses and MOOCs |
| tools-reference.md | Detailed CLI syntax and advanced flags |
| search-techniques.md | Google dorks, search strategies |
| 文件 | 内容 |
|---|---|
| ebooks.md | 电子书站点、学术论文、有声书、漫画、中文书籍 |
| video.md | 种子站点、直接下载链接、字幕、动漫、中文视频资源 |
| music.md | 免费音乐、下载工具、中文音乐、播客 |
| software.md | 软件存档、包管理器、中文软件站点 |
| media-assets.md | 免费素材(图片、视频、音频、字体) |
| cloud-search.md | 中文云盘搜索(百度/阿里/夸克) |
| education.md | 免费课程与MOOC |
| tools-reference.md | 详细的CLI语法和高级参数 |
| search-techniques.md | Google dorks、搜索策略 |