0

I have given a command to download Youtube downloader as sudo apt-get install youtube-dl. What to do to save this???

1 Answers1

0
sudo apt-get install youtube-dl 

Installs youtube-dl. To use it you need the url of a YouTube (or supported) video. There are many options available with this program, but the gist would be

 youtube-dl -o [name of output file] [YouTube URL]

A generic working example would be

 youtube-dl -o file.mp4 http://youtu.be/PvkMEoqmbBA

For more help see man page or check out the documentation here

geoffmcc
  • 1,364