Answers:
此答案不适用于旧版的youtube-dl。您需要将youtube-dl更新到最新版本。您可以在Python虚拟环境(virtualenv)中本地安装最新版本的youtube-dl ,也可以下载最新版本的youtube-dl并使用pip
(sudo apt remove youtube-dl && sudo apt install python-pip && pip install --user youtube-dl
)安装。youtube-dl也是一个管理包。要安装它,请输入:
sudo snap install youtube-dl
打开终端并输入:
youtube-dl -f best -ciw -o "%(title)s.%(ext)s" -v <url-of-channel>
... <url-of-channel>
由频道的网址代替。
注意:如果要下载大量视频,则应在开始下载之前将目录更改为要保存视频的目录。
-f, --format FORMAT
video format code. The special name "best" will pick the best quality.
-c, --continue
force resume of partially downloaded files
-i, --ignore-errors
continue on download errors, for example to skip unavailable videos in a channel
-w, --no-overwrites
do not overwrite files
-o, --output
Output filename template, this example functions similarly to the old --title option
-v, --verbose
print various debugging information
youtube
Web Applications Q&A上标记问题的最常回答的人。
--download-archive downloaded.txt
恢复下载-这将跳过现有文件
WARNING: --title is deprecated. Use -o "%(title)s-%(id)s.%(ext)s"
(如果您收到警告,但您的命令成功运行了),您只是想对其进行更新