download-playlist.sh 251 B

1234567891011121314
  1. #!/bin/bash
  2. PLAYLIST=$1
  3. youtube-dl \
  4. --verbose \
  5. --add-metadata \
  6. --no-mark-watched \
  7. --yes-playlist \
  8. --write-all-thumbnails \
  9. --all-subs \
  10. --no-call-home \
  11. --restrict-filenames \
  12. "https://www.youtube.com/playlist?list=$PLAYLIST"