The open source OS Ubuntu is being popular day by day. Recently they launched their 9.10 version. All things can be done on Ubuntu that can be done on a MS OS . Today we’ll see how to download You-Tube Videos on Ubuntu.

Firstly Go to the Terminal, then write the following code:

sudo apt-get install youtube-dl ffmpeg

It will ask for password. Provide it and wait for a while. Then enter the code given below:

youtube-dl -o name.flv “http://www.youtube.com/watch?v=EjN5avRvApk”

In the code just replace the file name you want to save the file as with name.flv and put your desired videos link code after watch?v=

Now to convert the file to .avi format write the code below:

ffmpeg -i name.flv name.avi

That’s it enjoy You-Tube on Ubuntu.