Created
May 25, 2022 13:00
-
-
Save obar1/406123dea660cbbbdea6415757913911 to your computer and use it in GitHub Desktop.
youtube-dl in parallel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
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