6

My Hard drive has very little free space left. Thus I am trying to get youtube-dl to save the videos onto my external drive. With no luck, so far. Has anyone tried that? Or any ideas on how to proceed? I am new to linux and my interactions with the command prompt can be found below.

me@mycomputer:/$ youtube-dl -o 'media/New Volume/Youtube Downloads' http://www.youtube.com/watch?v=123456789
me@mycomputer:/$ youtube-dl -o '/media/New\ Volume/Youtube\ Downloads' http://www.youtube.com/watch?v=123456789

I thought that would save the videos on the external drive, but instead the things are getting saved in my home folder under ~/media/New Volume/Youtube Downloads. Any help is welcome!

4 Answers4

9

How about:

cd '/media/New Volume/Youtube Downloads'
youtube-dl URL1...
youtube-dl URL2...

...
Eliah Kagan
  • 119,640
mikewhatever
  • 33,013
5

All of these work for me when run from /home/vasa1. I don't have to first cd to the target folder (or drive):

  • youtube-dl -o "/media/vasa1/TOSHIBA EXT/%(title)s" http://www.youtube.com/watch?v=OqxLmLUT-qc (an external USB drive)

  • youtube-dl -o "/media/vasa1/EC82B9BF82B98E98/%(title)s" http://www.youtube.com/watch?v=OqxLmLUT-qc (an NTFS partition on the internal hard disk)

  • youtube-dl -o "/home/vasa1/Downloads/%(title)s" http://www.youtube.com/watch?v=OqxLmLUT-qc


    I suggest you run youtube-dl --version and then look for your version here: https://github.com/rg3/youtube-dl/tree/. When you click on your version from the list, you'll be taken to a page that has a detailed section on usage.
4

This simple function would save "Nyan Cat 10 hours (original).mp4" from YouTube in the Videos folder:

video(){  
    youtube-dl -o "/Users/daniel/Videos/%(title)s.%(ext)s" $1 -f mp4  
}

Usage from your terminal:

video https://www.youtube.com/watch?v=wZZ7oFKsKzY
Eliah Kagan
  • 119,640
DannyRe
  • 181
0

1) create a soft link (symbolic link) to home/USER/ folder

ln -s /media/USER/EXT_DISK ~/home/USER

(USER=user name;EXT_DISK=name of your ext disk)

2) then, youtube-dl -o ~/EXT_DISK/"%(title)s-%(id)s.%(ext)s" -f 249 https://www.youtube.com/watch?v=xxxxxxx

liuche
  • 1