Skip to content

Instantly share code, notes, and snippets.

@Dobby89
Created February 2, 2022 20:23
Show Gist options
  • Save Dobby89/becf3dce2f541928eb71ae220544c29f to your computer and use it in GitHub Desktop.
Save Dobby89/becf3dce2f541928eb71ae220544c29f to your computer and use it in GitHub Desktop.
How to download youtube videos

Download youtube videos through command line

Download the 3rd to 8th, and 10th video from a playlist

yt-dlp.exe --download-archive "C:/directory/archive.txt" -o "C:/directory/%(title)s [%(id)s].%(ext)s" --ignore-config --hls-prefer-native "https://www.youtube.com/playlist?list=[PLAYLIST_ID]" --playlist-items 3-8,10

Download an individual video

yt-dlp.exe -o "C:/directory/archive/%(title)s [%(id)s].%(ext)s" "https://www.youtube.com/watch?v=[VIDEO_ID]"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment