如何使用youtube-dl
从开始的某个数字下载播放列表到上限?
我尝试在代码中使用:
youtube-dl -o '~/Documents/%(playlist)s/%(chapter_number)s - %(chapter)s/%(playlist_index)s - %(title)s.%(ext)s' URL
它停在中间。我想从索引i
编号的视频中重新启动该过程,而不是从头开始重新开始。
答案 0 :(得分:32)
youtube-dl --help
包含:
...
Video Selection: --playlist-start NUMBER Playlist video to start at (default is 1) --playlist-end NUMBER Playlist video to end at (default is last) --playlist-items ITEM_SPEC Playlist video items to download. Specify indices of the videos in the playlist separated by commas like: "--playlist-items 1,2,5,8" if you want to download videos indexed 1, 2, 5, 8 in the playlist. You can specify range: "--playlist-items 1-3,7,10-13", it will download the videos at index 1, 2, 3, 7, 10, 11, 12 and 13.
...
因此,选项--playlist-start NUMBER
可以帮助您在NUMBER
指定的中间启动播放列表。
答案 1 :(得分:3)
我的播放列表中共有135个视频。我已经成功下载了38个。所以我手动使用了这个命令。
youtube-dl --playlist-start 39 -u uname@gmail.com -p mypassword https://www.udemy.com/learn-ethical-hacking-from-scratch/learn/v4/content
下载我剩余的97个视频。