Windows Downloading Youtube playlists

Discussion in 'Software' started by dave_c, 6 Aug 2015.

  1. dave_c

    dave_c Minimodder

    Joined:
    31 Jul 2009
    Posts:
    436
    Likes Received:
    11
    Okay, so i have a playlist of over 100 videos on Youtube that i want to watch.
    Im going away and would like to download them all so i can watch during my 6 hour flight.

    Can anyone tell me of a piece of freeware which will allow me to do this that ISN'T a scam of some sort or another.

    Really appreciate the help, my computer is now likely crawling with malware and junk software from failed attempts lol.
     
  2. Measter

    Measter What's a Dremel?

    Joined:
    2 Feb 2008
    Posts:
    129
    Likes Received:
    4
    Youtube-dl will do what you want. It is a command line program. You will also need ffmpeg so it can combine the audio and video streams.

    The way I have youtube-dl configured is that I put a file in my user directory called "youtube-dl.conf" with the following contents:

    Code:
    -f 299+bestaudio/137+bestaudio/268+bestaudio/136+bestaudio/135+bestaudio/134+bestaudio/133+bestaudio -a vids.txt -o "%(title)s.%(ext)s" --restrict-filenames
    The string of numbers and "+bestaudio" limit it to 1080p video streams, and whatever the best audio is. The bit starting at "-o" onwards is to name the file in a certain way without special characters because it caused a couple issues with ffmpeg. I also have it set to read URLs from a file called vids.txt in the same directory as youtube-dl. All I need do is put the video or playlist addresses in the file and run the program.

    One thing I would suggest is to open a command prompt in the directory of youtube-dl and run "youtube-dl.exe -h > help.txt". It'll dump all the command line options to a text file.
     
    dave_c likes this.
  3. faugusztin

    faugusztin I *am* the guy with two left hands

    Joined:
    11 Aug 2008
    Posts:
    6,943
    Likes Received:
    268
    JDownloader. Just add a link to playlist, it then downloads the files in required format(s).
     
    dave_c likes this.
  4. Atomic

    Atomic Gerwaff

    Joined:
    6 May 2002
    Posts:
    9,646
    Likes Received:
    94
    Another great thing JDownloader does that I didn't know about!
     
  5. dave_c

    dave_c Minimodder

    Joined:
    31 Jul 2009
    Posts:
    436
    Likes Received:
    11
    Thanks for the help guys took a look at both but went for JDownloader as it was much easier to use, thanks again for the help.
     

Share This Page