如何使用youtube-dl脚本从播放列表中的某个索引开始下载?

时间:2017-06-17 23:32:14

标签: python youtube-dl

如何使用youtube-dl从开始的某个数字下载播放列表到上限?

我尝试在代码中使用:

youtube-dl -o '~/Documents/%(playlist)s/%(chapter_number)s - %(chapter)s/%(playlist_index)s - %(title)s.%(ext)s' URL

它停在中间。我想从索引i编号的视频中重新启动该过程,而不是从头开始重新开始。

2 个答案:

答案 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个视频。