跳转至

下载

1 下载视频

Youtube

加快下载速度

Youtube-dl可以下载Youtube网页的视频,功能很强大。但Youtube-dl还有个缺点,就是下载时单线程。简直就是龟速,下载视频往往还比较大,单线程是不可能使用的。

youtube-dl    https://www.youtube.com/playlist\?list\=kooim   \
    --external-downloader aria2c --external-downloader-args "-x 16  -k 1M"
选择清晰度

使用-F选项查看可选的清晰度格式:

youtube-dl -F url

然后选择所需清晰度对应的format code,在下载时加上-f format-code(注意,此时f是小写的)。

Bilibili

https://github.com/Henryhaohao/Bilibili_video_download

2 下载文档

下载整个目录

wget --http-user=user_name --http-passwd=user_password \
    --restrict-file-names=nocontrol -r -p -np -k http://xxxxxx
# 例子
wget  --restrict-file-names=nocontrol -r -p -np -k \
    http://www-inst.eecs.berkeley.edu/\~cs61c/sp15/lec/

It will download all files and subfolders in ddd directory

  • -r : recursively
  • -np : not going to upper directories, like ccc/…
  • -nH : not saving files to hostname folder
  • --cut-dirs=3 : but saving it to ddd by omitting first 3 folders aaa, bbb, ccc
  • -R index.html : excluding index.html files