5

How can I use youtube-dl to download a given playlist from YouTube but starting with a given video? For example I want to download a YouTube playlist by starting from the 5th video and not the first one.

Any help would be appreciated.

Zanna
  • 70,465
HamIsm
  • 59
  • 1
  • 1
  • 3

2 Answers2

9

From the man pages:

--playlist-start NUMBER          playlist video to start at (default is 1)

So in your case: youtube-dl --playlist-start 5 https://www.youtube.com/playlist?list=PL-qBHd6_LXWaytjEA5obaZz1syWcUGY0Q

1
$ youtube-dl -cit --playlist-start 5 "playlist link"

example :

$ mkdir tuts
$ cd tuts
$ youtube-dl -cit --playlist-start 5 "https://www.youtube.com/playlist?list=PL86CB94C68F628D19"

playlist Ubuntu Tutorial: Collected 21 video ids (downloading 17 of them)

more info

$ youtube-dl --help
hwez
  • 2,976
  • 1
  • 17
  • 15