I use youtube-dl
+ Youtube-dl GUI
, you can Install the two of them as follows :
1. Install youtube-dl
:
By default, Youtube-dl is not available in the Ubuntu-16.04 repository. So you will need to download it from their official website. You can download it with the curl command, First, install curl with the following command:
sudo apt-get install curl -y
Next, download the youtube-dl binary:
curl -L https://yt-dl.org/latest/youtube-dl -o /usr/bin/youtube-dl
Next, change the permission of the youtube-dl binary package with the following command:
sudo chmod 755 /usr/bin/youtube-dl
Now youtube-dl
is installed.
2. Install Youtube-dl GUI
:
By default, this tool is not available in Ubuntu 16.04 repository. So you will need to add PPA for that.
sudo add-apt-repository ppa:nilarimogard/webupd8
Next, update your package repository and install youtube-dlg with the following command:
sudo apt-get update -y
sudo apt-get install youtube-dlg -y
Once Youtube-dl is installed, you can launch it from Unity Dashboard.
Source : Install and Use YouTube-DL on Ubuntu 16.04