l1ving_youtube-dl/README.md

55 lines
2.5 KiB
Markdown
Raw Normal View History

2019-03-09 19:14:41 +07:00
[![Build Status](https://travis-ci.org/ytdl-org/youtube-dl.svg?branch=master)](https://travis-ci.org/ytdl-org/youtube-dl)
2017-10-21 02:11:11 +07:00
2015-12-10 13:45:53 +01:00
youtube-dl - download videos from youtube.com or other video platforms
2011-08-05 19:14:13 -04:00
2014-05-13 11:16:11 +02:00
# INSTALLATION
2018-07-05 10:17:18 -05:00
To install it right away for all UNIX users (Linux, macOS, etc.), type:
2014-05-13 11:16:11 +02:00
sudo curl -L https://yt-dl.org/downloads/latest/youtube-dl -o /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
2014-05-13 11:16:11 +02:00
If you do not have curl, you can alternatively use a recent wget:
sudo wget https://yt-dl.org/downloads/latest/youtube-dl -O /usr/local/bin/youtube-dl
sudo chmod a+rx /usr/local/bin/youtube-dl
2014-05-13 11:16:11 +02:00
2017-08-20 09:35:39 -07:00
Windows users can [download an .exe file](https://yt-dl.org/latest/youtube-dl.exe) and place it in any location on their [PATH](https://en.wikipedia.org/wiki/PATH_%28variable%29) except for `%SYSTEMROOT%\System32` (e.g. **do not** put in `C:\Windows\System32`).
2014-05-13 11:16:11 +02:00
2016-06-05 11:19:44 +07:00
You can also use pip:
sudo -H pip install --upgrade youtube-dl
2016-06-05 11:19:44 +07:00
This command will update youtube-dl if you have already installed it. See the [pypi page](https://pypi.python.org/pypi/youtube_dl) for more information.
2018-07-05 10:17:18 -05:00
macOS users can install youtube-dl with [Homebrew](https://brew.sh/):
brew install youtube-dl
2016-06-04 21:30:22 -05:00
Or with [MacPorts](https://www.macports.org/):
sudo port install youtube-dl
2019-11-19 15:38:06 +05:30
Alternatively, refer to the [developer instructions](#developer-instructions) for how to check out and work with the git repository. For further options, including PGP signatures, see the [youtube-dl Download Page](https://ytdl-org.github.io/youtube-dl/download.html).
2014-05-13 11:16:11 +02:00
# DESCRIPTION
2018-01-13 18:58:38 +01:00
**youtube-dl** is a command-line program to download videos from YouTube.com and a few more sites. It requires the Python interpreter, version 2.6, 2.7, or 3.2+, and it is not platform specific. It should work on your Unix box, on Windows or on macOS. It is released to the public domain, which means you can modify it, redistribute it or use it however you like.
2011-08-05 19:14:13 -04:00
youtube-dl [OPTIONS] URL [URL...]
2019-11-19 15:38:06 +05:30
- [OPTIONS](Info/options.md)
- [CONFIGURATION](Info/configuration.md)
- [OUTPUT TEMPLATE](Info/output-template.md)
- [FORMAT SELECTION](Info/format-selection.md)
- [VIDEO SELECTION](Info/video-selection.md)
- [FAQ](Info/faq.md)
- [DEVELOPER INSTRUCTIONS](Info/developer-instructions.md)
- [EMBEDDING YOUTUBE-DL](Info/embedding-youtube-dl.md)
- [BUGS](Info/bugs.md)
2014-01-23 23:28:29 +01:00
# COPYRIGHT
2015-12-10 13:45:53 +01:00
youtube-dl is released into the public domain by the copyright holders.
2014-01-23 23:28:29 +01:00
This README file was originally written by [Daniel Bolton](https://github.com/dbbolton) and is likewise released into the public domain.