The information provided here is as of September 04, 2014. Please note that we are not responsible for any problems caused by executing the contents described.
From February 22, 2015, due to the version change, it can no longer be used with the method in this article. Please refer to "[2015.02.22] youtube-dl has been updated and can no longer be used in the previous version".
For UNIX (Linux, OS X, etc.), youtube-dl can be downloaded by executing the following command in the terminal.
$ sudo curl https://yt-dl.org/downloads/2014.09.01.2/youtube-dl -o /usr/local/bin/youtube-dl
$ sudo chmod a+x /usr/local/bin/youtube-dl
If you don't have curl, you can do it from wget.
$ sudo wget https://yt-dl.org/downloads/2014.09.01.2/youtube-dl -O /usr/local/bin/youtube-dl
$ sudo chmod a+x /usr/local/bin/youtube-dl
Those who have pip enabled can install youtube-dl by running the following command in the terminal.
$ sudo pip install --upgrade youtube_dl
If you don't have pip and you have Homebrew, you can install it by executing the following command in the terminal.
$ brew install youtube-dl
When you have finished installing youtube-dl, you can download the video by the following method.
$ youtube-dl (URL of the video)
Enter the URL of the video you want to download in (Video URL) and execute it to start downloading.
Recommended Posts