Skip to content

Instantly share code, notes, and snippets.

@obar1
Created May 25, 2022 13:00
Show Gist options
  • Save obar1/406123dea660cbbbdea6415757913911 to your computer and use it in GitHub Desktop.
Save obar1/406123dea660cbbbdea6415757913911 to your computer and use it in GitHub Desktop.
youtube-dl in parallel
```
PLAYLIST_URL=https://www.youtube.com/channel/UCLg31aQBp1yRLtoe49jWVEA
youtube-dl --get-id "$PLAYLIST_URL" \
| xargs -I '{}' -P 10 youtube-dl -f "bestvideo[height>=720]+bestaudio/best" --format=mp4 -ciw -o "%(upload_date)s-%(title)s.%(ext)s" 'https://youtube.com/watch?v={}'
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment