Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
I am trying to use youtube-dl to download Khan Academy for an offline computer center.
My aim is to download then entire channel with each playlist in it's own folder
I use the following command:
youtube-dl -o "youtube/khanacademy/%(playlist_title)s/%(title)s.%(ext)s" --write-description --download-archive /youtube/log/khan.txt --ignore-errors ytuser:khanacademy
It downloads all of the videos from the channel into a single playlist folder called "Uploads from Khan Academy"
How do I get it to put each playlist in it's own folder without downloading each playlist individually?
Kindly
Jurgens