这一次使用 youtube-dl 下载视频到 VPS 上,最近要搞点音乐视频放在站点里面,步骤记录。
安装
apt-get install python-pip
pip install youtube-dl
# 或
wget https://yt-dl.org/downloads/latest/youtube-dl -O /wp-content/local/bin/youtube-dl
chmod a+x /wp-content/local/bin/youtube-dl
使用
单视频下载
youtube-dl https://www.youtube.com/watch?v=xxxxxxxx
视频列表下载
youtube-dl -tc --ignore-errors https://www.youtube.com/playlist?list=xxxxxxxx
查询格式
youtube-dl -F https://www.youtube.com/watch?v=xxxxxxxx
指定格式下载
youtube-dl -f 137 https://www.youtube.com/watch?v=xxxxxxxx
更新 2016-01-22