๐พ Annie is a fast, simple and clean video downloader built with Go.
- Installation
- Getting Started
- Supported Sites
- Known issues
- Contributing
- Authors
- Similar projects
- License
The following dependencies are required and must be installed separately.
Note: FFmpeg does not affect the download, only affects the final file merge.
To install Annie, use go get, or download the binary file from Releases page.
$ go get github.com/iawia002/annieFor macOS users, you can install annie via:
$ brew install annieFor Arch Users AUR package is available.
For Void linux users, you can install annie via:
$ xbps-install -S annie
Usage:
annie [OPTIONS] URL [URL...]
$ annie https://youtu.be/Gnbch2osEeo
Site: YouTube youtube.com
Title: Multifandom Mashup 2017
Type: video
Stream:
[default] -------------------
Quality: hd720
Size: 57.97 MiB (60785404 Bytes)
# download with: annie -f default "URL"
11.93 MiB / 57.97 MiB [======>-------------------------] 20.57% 19.03 MiB/s 2sNote: wrap the URL in quotation marks if it contains special characters. (thanks @tonyxyl for pointing this out)
$ annie 'https://...'
The -i option displays all available quality and formats of video in the supplied link without downloading.
$ annie -i https://youtu.be/Gnbch2osEeo
Site: YouTube youtube.com
Title: Multifandom Mashup 2017
Type: video
Streams: # All available quality
[43] -------------------
Quality: medium
Size: 31.95 MiB (33505824 Bytes)
# download with: annie -f 43 "URL"
[18] -------------------
Quality: medium
Size: 24.81 MiB (26011062 Bytes)
# download with: annie -f 18 "URL"
[36] -------------------
Quality: small
Size: 8.67 MiB (9088579 Bytes)
# download with: annie -f 36 "URL"
[17] -------------------
Quality: small
Size: 3.10 MiB (3248257 Bytes)
# download with: annie -f 17 "URL"
[default] -------------------
Quality: hd720
Size: 57.97 MiB (60785404 Bytes)
# download with: annie -f default "URL"Use annie -f format "URL" to download a specific format listed in the output of -i option.
If Annie is provided the URL of a specific resource, then it will be downloaded directly:
$ annie https://img9.bcyimg.com/drawer/15294/post/1799t/1f5a87801a0711e898b12b640777720f.jpg
annie doesn't support this URL right now, but it will try to download it directly
Site: Universal
Title: 1f5a87801a0711e898b12b640777720f
Type: image/jpeg
Stream:
[default] -------------------
Size: 1.00 MiB (1051042 Bytes)
# download with: annie -f default "URL"
1.00 MiB / 1.00 MiB [===================================] 100.00% 1.21 MiB/s 0sThe -p option downloads an entire playlist instead of a single video.
$ annie -i -p https://www.bilibili.com/bangumi/play/ep198061
Site: ๅๅฉๅๅฉ bilibili.com
Title: Doctor X ็ฌฌๅๅญฃ๏ผ็ฌฌไธ้
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 845.66 MiB (886738354 Bytes)
# download with: annie -f default "URL"
Site: ๅๅฉๅๅฉ bilibili.com
Title: Doctor X ็ฌฌๅๅญฃ๏ผ็ฌฌไบ้
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 930.71 MiB (975919195 Bytes)
# download with: annie -f default "URL"
......You can use the -start, -end or -items option to specify the download range of the list:
-start
Playlist video to start at (default 1)
-end
Playlist video to end at (default is last)
-items
Playlist video items to download. Separated by commas like: 1,5,6
You can also download multiple URLs at once:
$ annie -i https://www.bilibili.com/video/av21877586 https://www.bilibili.com/video/av21990740
Site: ๅๅฉๅๅฉ bilibili.com
Title: ใ่ๆบไผไบใ็ๅฐ่ๅญ็13้ๅ้MADใๆ็ฐๅจไปไน้ฝไธๆณๅนฒ,ๆดไธๆณ็14้ใ
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 51.88 MiB (54403767 Bytes)
# download with: annie -f default "URL"
Site: ๅๅฉๅๅฉ bilibili.com
Title: ใ่ๆไบใ็ๅฐ่ๅญ๏ผ๏ผ๏ผๅฝๅฎถ้ๅ้MAD-ๅฝ็ๆ็bgmๅ่ตท๏ผ็ผๆณชไป่ธ้ขๆปไธ
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 77.63 MiB (81404093 Bytes)
# download with: annie -f default "URL"These URLs will be downloaded one by one.
You can also use the -F option to read URLs from file:
$ annie -F ~/Desktop/u.txt
Site: ๅพฎๅ weibo.com
Title: ๅจGoogle๏ผๆไปฌ่ฎพ่ฎกไปไน๏ผ via@้ๅค
Type: video
Stream:
[default] -------------------
Size: 19.19 MiB (20118196 Bytes)
# download with: annie -f default "URL"
19.19 MiB / 19.19 MiB [=================================] 100.00% 9.69 MiB/s 1s
......Ctrl+C interrupts a download.
A temporary .download file is kept in the output directory. If annie is ran with the same arguments, then the download progress will resume from the last session.
Cookies can be provided to annie with the -c option if they are required for accessing the video.
Note: cookies must match the following format:
name=value; name2=value2; ...Cookies can be a string or a text file, supply cookies in one of the two following ways.
As a string:
$ annie -c "name=value; name2=value2" https://www.bilibili.com/video/av20203945As a text file:
$ annie -c cookies.txt https://www.bilibili.com/video/av20203945An HTTP proxy can be specified with the -x option:
$ annie -x http://127.0.0.1:7777 -i https://www.youtube.com/watch?v=Gnbch2osEeoA SOCKS5 proxy can be specified with the -s option:
$ annie -s 127.0.0.1:1080 -i https://www.youtube.com/watch?v=Gnbch2osEeoUse -n option to set the number of download threads(default is 10, only works for multiple-parts video).
Special Tips: Use too many threads in mgtv download will cause HTTP 403 error, we recommend setting the number of threads to 1.
You can just use av or ep number to download bilibili's video:
$ annie -i ep198381 av21877586
Site: ๅๅฉๅๅฉ bilibili.com
Title: ็ๅฆๅฐ็บขๅจ๏ผ็ฌฌ79่ฏ ๅๅฝๅ
ฌไธป็ๅ่ดงๆฌ่ฒ
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 485.23 MiB (508798478 Bytes)
# download with: annie -f default "URL"
Site: ๅๅฉๅๅฉ bilibili.com
Title: ใ่ๆบไผไบใ็ๅฐ่ๅญ็13้ๅ้MADใๆ็ฐๅจไปไน้ฝไธๆณๅนฒ,ๆดไธๆณ็14้ใ
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 51.88 MiB (54403767 Bytes)
# download with: annie -f default "URL"A Referrer can be used for the request with the -r option:
$ annie -r https://www.bilibili.com/video/av20383055/ http://cn-scnc1-dx.acgvideo.com/...
...The -o option sets the path, and -O option sets the name of the downloaded file:
$ annie -o ../ -O "hello" https://...The -d option outputs network request messages:
$ annie -i -d http://www.bilibili.com/video/av20088587
URL: http://www.bilibili.com/video/av20088587
Method: GET
Headers: http.Header{
"Referer": {"http://www.bilibili.com/video/av20088587"},
"Accept": {"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},
"Accept-Charset": {"UTF-8,*;q=0.5"},
"Accept-Encoding": {"gzip,deflate,sdch"},
"Accept-Language": {"en-US,en;q=0.8"},
"User-Agent": {"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36"},
}
Status Code: 200
URL: https://interface.bilibili.com/v2/playurl?appkey=84956560bc028eb7&cid=32782944&otype=json&qn=116&quality=116&type=&sign=fb2e3f261fec398652f96d358517e535
Method: GET
Headers: http.Header{
"Accept-Charset": {"UTF-8,*;q=0.5"},
"Accept-Encoding": {"gzip,deflate,sdch"},
"Accept-Language": {"en-US,en;q=0.8"},
"User-Agent": {"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.146 Safari/537.36"},
"Referer": {"https://interface.bilibili.com/v2/playurl?appkey=84956560bc028eb7&cid=32782944&otype=json&qn=116&quality=116&type=&sign=fb2e3f261fec398652f96d358517e535"},
"Accept": {"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"},
}
Status Code: 200
Site: ๅๅฉๅๅฉ bilibili.com
Title: ็ๆฒนๅจๅ็้ฅๆงๅฅฅ่ฟชR8่ท่ต้
Type: video
Streams: # All available quality
[default] -------------------
Quality: ้ซๆธ
1080P
Size: 64.38 MiB (67504795 Bytes)
# download with: annie -f default "URL"The -j option will print the extracted data in JSON format.
$ annie -j https://www.bilibili.com/video/av20203945
{
"Site": "ๅๅฉๅๅฉ bilibili.com",
"Title": "ใ2018ๆๅนด็ฅญๅๅใ็ธ้day by day",
"Type": "video",
"Formats": {
"default": {
"URLs": [
{
"URL": "http://cn-jszj-dx-v-11.acgvideo.com/vg1/upgcxcode/60/93/32989360/32989360-1-80.flv?expires=1522325400\u0026platform=pc\u0026ssig=5x0f9tkmvOrQBavICgRElA\u0026oi=3063167823\u0026nfa=wjcs6MVDpr+CJX9KAl+nbw==\u0026dynamic=1\u0026hfa=2022678329\u0026hfb=Yjk5ZmZjM2M1YzY4ZjAwYTMzMTIzYmIyNWY4ODJkNWI=\u0026trid=c2de1496db7646e8917f6a556668b5a9",
"Size": 121735559,
"Ext": "flv"
}
],
"Quality": "้ซๆธ
1080P",
"Size": 121735559
}
}
} -i Information only
-F string
URLs file path
-d Debug mode
-j Print extracted data
-v Show version
-f string
Select specific format to download
-p Download playlist
-n int
The number of download thread (only works for multiple-parts video) (default 10)
-c string
Cookie
-r string
Use specified Referrer
-s string
SOCKS5 proxy
-x string
HTTP proxy
-start int
Playlist video to start at (default 1)
-end int
Playlist video to end at
-items string
Playlist video items to download. Separated by commas like: 1,5,6
-o string
Specify the output path
-O string
Specify the output file name
-C Download captions
-ccode string
Youku ccode (default "0808")
| Site | URL | ๐ฌ Videos | ๐ Images | ๐ Playlist | ๐ช VIP adaptation |
|---|---|---|---|---|---|
| ๆ้ณ | https://www.douyin.com | โ | |||
| ๅๅฉๅๅฉ | https://www.bilibili.com | โ | โ | โ | |
| ๅๆฌกๅ | https://bcy.net | โ | |||
| pixivision | https://www.pixivision.net | โ | |||
| ไผ้ ท | https://www.youku.com | โ | โ | ||
| YouTube | https://www.youtube.com | โ | โ | ||
| ็ฑๅฅ่บ | https://www.iqiyi.com | โ | |||
| ่ๆTV | https://www.mgtv.com | โ | |||
| Tumblr | https://www.tumblr.com | โ | โ | ||
| Vimeo | https://vimeo.com | โ | |||
| https://facebook.com | โ | ||||
| ๆ้ฑผ่ง้ข | https://v.douyu.com | โ | |||
| ็งๆ | https://www.miaopai.com | โ | |||
| ๅพฎๅ | https://weibo.com | โ | |||
| https://www.instagram.com | โ | โ | |||
| https://twitter.com | โ | ||||
| ่ พ่ฎฏ่ง้ข | https://v.qq.com | โ | |||
| ไน่ง่ง้ข | https://www.le.com | โ |
Annie is an open source project and built on the top of open-source projects. If you are interested, then you are welcome to contribute. Let's make Annie better, together. ๐ช
Check out the Contributing Guide to get started.
Special thanks to @Yasujizr who designed the amazing logo!
Code with โค๏ธ by iawia002 and lovely contributors
MIT
Copyright (c) 2018-present, iawia002