How to download playalist except certain videos in youtube-dl?

CDR

I want to download a play list from youtube, where the first 6 videos in the playlist have been deleted by their channel. When I tried to download it using youtube-dl, it's getting interupted because the first video was not found. Then it is terminating, but not continuing to download the next video. How can I download the playlist from the 7nth video in the play list and onwards.

the command I used.

youtube-dl -f 22 https://www.youtube.com/playlist?list=PLO-hrPk0zuI18xlF_480s6UiaGD7hBqJa
Pabi

You can use the following switch:

 --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.

So it would be:

youtube-dl -f 22 --playlist-items 7-X https://www.youtube.com/playlist?list=PLO-hrPk0zuI18xlF_480s6UiaGD7hBqJa

where X is the number of videos in the playlist.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to download playalist except certain videos in youtube-dl?

From Dev

How to download facebook videos by using 'youtube-dl' in linux?

From Dev

How to download only subtitles of videos using youtube-dl

From Dev

How to bulk download videos and rename them simultaneously using youtube-dl?

From Dev

How can youtube-dl download videos that require user authentication and 2FA?

From Dev

Use youtube-dl to download new videos from channel

From Dev

Cannot download videos on Ubuntu 12.04 using youtube-dl

From Dev

Cannot download videos on Ubuntu 12.04 using youtube-dl

From Dev

Use youtube-dl to download new videos from channel

From Dev

youtube-dl problems, can't download private videos

From Dev

How to download tricky subtitles with youtube-dl?

From Dev

Can I download videos from a YouTube search query using youtube-dl?

From Dev

Can I download videos from a YouTube search query using youtube-dl?

From Dev

How to download YouTube videos via HTTPS

From Dev

How to download videos from YouTube with subtitles?

From Dev

How can I download YouTube videos with their description?

From Dev

How to download a youtube playlist with numbered prefix via youtube-dl?

From Dev

How to download a youtube playlist with numbered prefix via youtube-dl?

From Dev

download videos from youtube

From Dev

Lag on all videos *except* YouTube

From Dev

How to play youtube videos in a native player and also how to download youtube videos

From Dev

youtube-dl unable to download audio how to resolve that issue?

From Dev

youtube-dl how to download multiple playlists in individual folders

From Dev

How do I download Facebook playlists with youtube-dl?

From Dev

How to specify download path for youtube-dl on Windows?

From Dev

youtube-dl unable to download audio how to resolve that issue?

From Dev

youtube-dl; How download ONLY the playlist, NOT the files therein

From Dev

How to execute a script after a youtube-dl download is finished?

From Dev

How to download a format that has audio by itself in youtube-dl?

Related Related

  1. 1

    How to download playalist except certain videos in youtube-dl?

  2. 2

    How to download facebook videos by using 'youtube-dl' in linux?

  3. 3

    How to download only subtitles of videos using youtube-dl

  4. 4

    How to bulk download videos and rename them simultaneously using youtube-dl?

  5. 5

    How can youtube-dl download videos that require user authentication and 2FA?

  6. 6

    Use youtube-dl to download new videos from channel

  7. 7

    Cannot download videos on Ubuntu 12.04 using youtube-dl

  8. 8

    Cannot download videos on Ubuntu 12.04 using youtube-dl

  9. 9

    Use youtube-dl to download new videos from channel

  10. 10

    youtube-dl problems, can't download private videos

  11. 11

    How to download tricky subtitles with youtube-dl?

  12. 12

    Can I download videos from a YouTube search query using youtube-dl?

  13. 13

    Can I download videos from a YouTube search query using youtube-dl?

  14. 14

    How to download YouTube videos via HTTPS

  15. 15

    How to download videos from YouTube with subtitles?

  16. 16

    How can I download YouTube videos with their description?

  17. 17

    How to download a youtube playlist with numbered prefix via youtube-dl?

  18. 18

    How to download a youtube playlist with numbered prefix via youtube-dl?

  19. 19

    download videos from youtube

  20. 20

    Lag on all videos *except* YouTube

  21. 21

    How to play youtube videos in a native player and also how to download youtube videos

  22. 22

    youtube-dl unable to download audio how to resolve that issue?

  23. 23

    youtube-dl how to download multiple playlists in individual folders

  24. 24

    How do I download Facebook playlists with youtube-dl?

  25. 25

    How to specify download path for youtube-dl on Windows?

  26. 26

    youtube-dl unable to download audio how to resolve that issue?

  27. 27

    youtube-dl; How download ONLY the playlist, NOT the files therein

  28. 28

    How to execute a script after a youtube-dl download is finished?

  29. 29

    How to download a format that has audio by itself in youtube-dl?

HotTag

Archive