Last active
March 11, 2017 20:54
-
-
Save darktef/69dff2055c0614bdf592d3bd04e0e7ac to your computer and use it in GitHub Desktop.
Fish - youtube-dl - Download playlist in
This file contains 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
youtube-dl -f bestaudio -o 'The_Sounds_of_the_Monterey_Bay/%(playlist_index)s - %(title)s.%(ext)s' 'https://www.youtube.com/watch?v=oBik31cwRbY&list=PLUSRfoOcUe4aw6JiTXbwUET_wdQ1bnyoo' | |
## Download playlist in separate folder, audio only | |
youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best' -o '%(playlist_index)s-%(title)s.%(ext)s' 'https://www.youtube.com/playlist?list=PL4BBB74C7D2A1049C' | |
## Download playlist with best quality |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment