How to watch/download these entire 60+ episodes youtube content.

youtube-dl is your best bet for such huge playlists. It can also be set to download only videos with 480p/720p only or whatever resolution is best. Best resolution is set as default so if the uploader, uploaded 1080p or higher resolution video, it will download that.

You can also make it write to a text file so that next time the playlist is updated, you wont be downloading the entire 60+ files instead of just the 1-2 new files.

To download in folder of your choice, just go inside that folder and right click and "open terminal here". Then paste the example code with the youtube link in the terminal and hit enter.

Example:

Code:
To download in 480p only:

youtube-dl -f 'bestvideo[height<=480]+bestaudio/best[height<=480]' https://www.youtube.com/paste-the-rest-of-the-link-here

For 720p:

youtube-dl -f 'bestvideo[height<=720]+bestaudio/best[height<=720]' https://www.youtube.com/watch?v=---------------


For playlist with text file containing youtube id's of what videos were downloaded:

youtube-dl -f 'bestvideo[height<=720]+bestaudio/best[height<=720]' --download-archive archive.txt https://www.youtube.com/playlist?list=---------------

Just make sure you have ffmpeg installed too in your system. Without ffmpeg installed, yt-dl cant merge the audio and video files from youtube.
http://ffmpeg.org/download.html

More extra options on youtube-dl page: https://github.com/ytdl-org/youtube-dl/blob/master/README.md#readme
 
Back
Top