Last active
December 14, 2017 01:09
-
-
Save melkopisi/b114dbad4da2b86118b3b2ed59db81c4 to your computer and use it in GitHub Desktop.
download lists from pluralsight using youtube-dl
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
#!/bin/bash | |
echo "enter username : " | |
read username | |
echo "enter password: " | |
read -s password | |
echo "enter course: " | |
read course | |
echo "enter location: " | |
read location | |
youtube-dl --username $username --password $password $course -o $location/"%(playlist)s/%(chapter_number)s. %(chapter)s/%(playlist_index)s. %(title)s.%(ext)s" --sleep-interval 15 --all-subs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment