-
-
Save ahmedash95/c604e01e36b3a1977216c1c0bbca6101 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