Skip to content

Instantly share code, notes, and snippets.

@sharno
Created June 27, 2022 16:34
Show Gist options
  • Save sharno/dde9c0271e5f9eabdb31fc1d76960f31 to your computer and use it in GitHub Desktop.
Save sharno/dde9c0271e5f9eabdb31fc1d76960f31 to your computer and use it in GitHub Desktop.
Download a youtube playlist in parallel using powershell
Foreach ($v in (youtube-dl --get-id PLAYLIST_URL)) {
Start-Job -ScriptBlock { youtube-dl $using:v }
}
# to extract audio add: -x
# to extract as mp3 add: -x --audio-format mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment