you-get/README.txt

176 lines
4.7 KiB
Plaintext
Raw Normal View History

2012-08-31 19:20:38 +04:00
You-Get
=======
2012-09-01 02:55:45 +04:00
2012-09-02 16:27:35 +04:00
`You-Get <https://github.com/soimort/you-get>`_ is a video downloader runs on Python 3. It aims at easing the download of videos on `YouTube <http://www.youtube.com>`_, `Youku <http://www.youku.com>`_/`Tudou <http://www.tudou.com>`_ (biggest online video providers in China), etc., in one script.
2012-09-01 02:55:45 +04:00
See the project homepage http://www.soimort.org/you-get for further documentation.
Fork me on GitHub: https://github.com/soimort/you-get
Features
--------
2012-09-02 16:27:35 +04:00
Supported Sites (As of Now)
2012-09-01 02:55:45 +04:00
~~~~~~~~~~~~~~~~~~~~~~~~~~~
* YouTube http://www.youtube.com
2012-09-02 16:27:35 +04:00
* Vimeo http://vimeo.com
* Youku (优酷) http://www.youku.com
* Tudou (土豆) http://www.tudou.com
* YinYueTai (音悦台) http://www.yinyuetai.com
* AcFun http://www.acfun.tv
* bilibili http://www.bilibili.tv
* CNTV (中国网络电视台) http://www.cntv.cn
2012-09-02 17:22:21 +04:00
* ifeng (凤凰视频) http://v.ifeng.com
2012-09-02 16:27:35 +04:00
* iQIYI (爱奇艺) http://www.iqiyi.com
* Ku6 (酷6网) http://www.ku6.com
* PPTV http://www.pptv.com
* Sina (新浪视频) http://video.sina.com.cn
* Sohu (搜狐视频) http://tv.sohu.com
* 56 (56网) http://www.56.com
2012-09-01 02:55:45 +04:00
Supported Video Formats
~~~~~~~~~~~~~~~~~~~~~~~
* WebM (\*.webm)
* MP4 (\*.mp4)
* FLV (\*.flv)
* 3GP (\*.3gp)
Installation
------------
#) Install via `Pip <http://www.pip-installer.org/>`_::
2012-09-02 16:27:35 +04:00
$ pip install you-get
2012-09-01 02:55:45 +04:00
Check if the installation was successful::
$ you-get -V
#) Install via `EasyInstall <http://pypi.python.org/pypi/setuptools>`_::
2012-09-02 16:27:35 +04:00
$ easy_install you-get
2012-09-01 02:55:45 +04:00
Check if the installation was successful::
$ you-get -V
#) Direct download (from https://github.com/soimort/you-get/zipball/master)::
$ wget -O you-get.zip https://github.com/soimort/you-get/zipball/master
$ unzip you-get.zip
Use the raw script without installation::
$ cd soimort-you-get-*/
$ ./you-get -V
To install the package into the system path, execute::
$ make install
2012-09-02 16:27:35 +04:00
Or (on Windows)::
2012-09-01 02:55:45 +04:00
> setup.py install
Check if the installation was successful::
$ you-get -V
2012-09-02 16:27:35 +04:00
#) Install from Git::
2012-09-01 02:55:45 +04:00
$ git clone git://github.com/soimort/you-get.git
Use the raw script without installation::
$ cd you-get/
$ ./you-get -V
To install the package into the system path, execute::
$ make install
2012-09-02 16:27:35 +04:00
Or (on Windows)::
2012-09-01 02:55:45 +04:00
> setup.py install
Check if the installation was successful::
$ you-get -V
Examples (For End-Users)
------------------------
Display the information of the video without downloading::
$ you-get -i http://www.youtube.com/watch?v=sGwy8DsUJ4M
Download the video::
$ you-get http://www.youtube.com/watch?v=sGwy8DsUJ4M
Download multiple videos::
$ you-get http://www.youtube.com/watch?v=sGwy8DsUJ4M http://www.youtube.com/watch?v=8bQlxQJEzLk
2012-09-02 16:27:35 +04:00
By default, program will skip any video that already exists in the local directory when downloading. If a temporary file (ends with a ".download" filename extension) is found, program will resume the download from last session.
2012-09-01 02:55:45 +04:00
2012-09-02 16:27:35 +04:00
To enforce re-downloading of videos, use '-f' option (this will overwrite any existing video or temporary file, rather than skipping or resuming them)::
2012-09-01 02:55:45 +04:00
$ you-get -f http://www.youtube.com/watch?v=sGwy8DsUJ4M
2012-09-02 16:27:35 +04:00
Set the output directory for downloaded files::
2012-09-01 02:55:45 +04:00
$ you-get -o ~/Downloads http://www.youtube.com/watch?v=sGwy8DsUJ4M
Use a specific HTTP proxy for downloading::
$ you-get -x 127.0.0.1:8087 http://www.youtube.com/watch?v=sGwy8DsUJ4M
By default, Python will apply the system proxy settings (i.e. environment variable $http_proxy). To cancel the use of proxy, use '--no-proxy' option::
$ you-get --no-proxy http://www.youtube.com/watch?v=sGwy8DsUJ4M
Command-Line Options
--------------------
For a complete list of all available options, see::
$ you-get --help
Examples (For Developers)
-------------------------
2012-09-02 16:27:35 +04:00
In Python 3 (interactive)::
2012-09-01 02:55:45 +04:00
>>> import you_get
>>> you_get.__version__
2012-09-02 16:27:35 +04:00
'0.2'
2012-09-01 02:55:45 +04:00
>>> you_get.youtube_download("http://www.youtube.com/watch?v=8bQlxQJEzLk", info_only = True)
Video Site: YouTube.com
Title: If you're good at something, never do it for free!
Type: WebM video (video/webm)
Size: 0.13 MB (133176 Bytes)
>>> you_get.any_download("http://www.youtube.com/watch?v=sGwy8DsUJ4M")
Video Site: YouTube.com
Title: Mort from Madagascar LIKES
Type: WebM video (video/webm)
Size: 1.78 MB (1867072 Bytes)
2012-09-02 16:27:35 +04:00
2012-09-01 02:55:45 +04:00
Downloading Mort from Madagascar LIKES.webm ...
100.0% ( 1.8/1.8 MB) [========================================] 1/1
API Reference
-------------
See source code.
License
-------
You-Get is licensed under the `MIT license <https://raw.github.com/soimort/you-get/master/LICENSE.txt>`_.