我想使用 youtube-dl 下载 YouTube 频道的所有播放列表。以下命令可下载所有视频,甚至带有--yes-playlist
选项:
youtube-dl --yes-playlist -f best -ciw -o "${outdir}/%(uploader)s/playlists/%(playlist)s/videos/%(playlist_index)s - %(title)s.%(ext)s" -v $channel_url
答案1
我找到了解决方案:
为了将它们下载为播放列表,请将频道网址设置为频道的播放列表部分,即
正确的
channel_url="https://www.youtube.com/user/channelname/playlists"
错误
channel_url="https://www.youtube.com/user/channelname/"