Giter Club home page Giter Club logo

annie's Introduction

Annie

Build Status codecov

πŸ‘Ύ Annie is a fast, simple and clean video downloader built with Go.

Annie allows users to download videos and playlists from supported websites like Bilibili.

$ annie -c cookies.txt https://www.bilibili.com/video/av20203945/

 Site:      ε“”ε“©ε“”ε“© bilibili.com
 Title:     【2018ζ‹œεΉ΄η₯­ε•ε“γ€‘相遇day by day
 Type:      video
 Stream:
     [default]  -------------------
     Quality:         ι«˜ζΈ… 1080P60
     Size:            220.65 MiB (231363071 Bytes)
     # download with: annie -f default "URL"

 16.03 MiB / 220.65 MiB [==>----------------------------]   7.26% 9.65 MiB/s 19s

Install

Prerequisites

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, download the binary file in the Releases page, or compile yourself.

$ go get github.com/iawia002/annie
...
$ annie [args] URL

Get Started

Download a video

$ annie -s 127.0.0.1:1080 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 2s

Note: 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 formats information without downloading.

$ annie -i -s 127.0.0.1:1080 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.

Download anything else

If Annie is provided the URL of a specific resource, 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 0s

Download playlist

The -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"

......

Resume a download

Ctrl+C interrupts a download.

A temporary .download file is kept in the output directory. If annie is run with the same arguments, the download progress will resume from the last session.

Cookies

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 file.

$ annie -c "name=value; name2=value2" https://www.bilibili.com/video/av20203945

# or

$ annie -c cookies.txt https://www.bilibili.com/video/av20203945

Proxy

HTTP proxy

An HTTP proxy can be specified with the -x option:

$ annie -x http://127.0.0.1:7777 -i https://www.youtube.com/watch?v=Gnbch2osEeo

SOCKS5 proxy

A SOCKS5 proxy can be specified with the -s option:

$ annie -s 127.0.0.1:1080 -i https://www.youtube.com/watch?v=Gnbch2osEeo

Use specified Referrer

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/...

...

Debug Mode

The -d option enables 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"

All available arguments

$ annie -h

Usage of annie:
  -c string
    	Cookie
  -d	Debug mode
  -f string
    	Select specific format to download
  -i	Information only
  -p	Download playlist
  -r string
    	Use specified Referrer
  -s string
    	SOCKS5 proxy
  -v	Show version
  -x string
    	HTTP proxy

Supported Sites

Site URL 🎬 Videos 🌁 Images πŸ“š Playlist
ζŠ–ιŸ³ 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 βœ“

Known issues

net/http: request canceled (Client.Timeout exceeded while reading body)

This is a common issue. It is a network issue that can be solved by entering the download command again.

About this project

I am just a college student and this is one of my amateur projects(I need to finish my school stuff first). I am very happy and surprised that so many people like this project, thank you all. πŸ™‡β€β™‚οΈ

How far can Annie go? To be honest, I don't know, but I will do my best to maintain this project. Annie is an open source project and built on the top of open source projects, so if you are interested, welcome to contribute, let's make Annie better, together.

Contributing

Annie is an open source project and welcome contributions πŸ˜‰

Check out the Contributing Guide to get started

Similar projects

License

MIT

annie's People

Contributors

arpit1997 avatar bigtan avatar campbellowen avatar constannnnnt avatar iawia002 avatar xjohn600 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.