A YouTube/Youku video downloader written in Python 3.
Project description
You-Get
You-Get is a video downloader runs on Python 3. It aims at easing the download of videos on YouTube, Youku/Tudou (biggest online video providers in China), etc., in one script.
See the project homepage http://www.soimort.org/you-get for further documentation.
Fork me on GitHub: https://github.com/soimort/you-get
Features
Supported Sites (As of Now)
YouTube http://www.youtube.com
Vimeo http://vimeo.com
Dailymotion http://dailymotion.com
Google+ http://plus.google.com
Tumblr http://www.tumblr.com
SoundCloud http://soundcloud.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
ifeng (凤凰视频) http://v.ifeng.com
iQIYI (爱奇艺) http://www.iqiyi.com
Ku6 (酷6网) http://www.ku6.com
PPTV http://www.pptv.com
QQ (腾讯视频) http://v.qq.com
Sina (新浪视频) http://video.sina.com.cn
Sohu (搜狐视频) http://tv.sohu.com
56 (56网) http://www.56.com
Xiami (虾米) http://www.xiami.com
Dependencies
Installation
Install via Pip:
$ pip install you-get
Check if the installation was successful:
$ you-get -V
Install via EasyInstall:
$ easy_install you-get
Check if the installation was successful:
$ you-get -V
Install from Git:
$ 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
Or (on Windows):
> setup.py install
Check if the installation was successful:
$ you-get -V
Direct download:
$ 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
Or (on Windows):
> setup.py install
Check if the installation was successful:
$ you-get -V
Install from AUR (Arch User Repository):
Click here.
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
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.
To enforce re-downloading of videos, use ‘-f’ option (this will overwrite any existing video or temporary file, rather than skipping or resuming them):
$ you-get -f http://www.youtube.com/watch?v=sGwy8DsUJ4M
Set the output directory for downloaded files:
$ 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)
In Python 3 (interactive):
>>> import you_get >>> you_get.__version__ '0.2' >>> 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) 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.
Changelog
0.3dev-20121228
Date: 2012-12-28
- Add support for:
Xiami
Tumblr audios
0.3dev-20121221
Date: 2012-12-21
0.3dev-20121220
Date: 2012-12-20
YouTube: quick dirty fix to #45.
0.3dev-20121219
Date: 2012-12-19
- Add support for:
Tumblr
0.3dev-20121217
Date: 2012-12-17
0.3dev-20121212
Date: 2012-12-12
YouTube: fix some major issues on parsing video titles.
0.3dev-20121210
Date: 2012-12-10
YouTube: downloading the highest available quality now.
- Add support for:
SoundCloud
0.2.16
Date: 2012-12-01
- Add support for:
QQ
Small fixes merged from youku-lixian.
0.2.15
Date: 2012-11-30
Fix issue #30 for bilibili.
0.2.14
Date: 2012-11-29
Fix issue #28 for Tudou.
Better support for AcFun.
0.2.13
Date: 2012-10-30
Nothing new.
0.2.12
Date: 2012-10-30
Fix issue #20 for AcFun.
0.2.11
Date: 2012-10-23
0.2.10
Date: 2012-10-16
- Add support for:
Google+
0.2.9
Date: 2012-10-09
Fix issue #16.
0.2.8
Date: 2012-10-02
Fix issue #15 for AcFun.
0.2.7
Date: 2012-09-28
Fix issue #6 for YouTube.
0.2.6
Date: 2012-09-26
Fix issue #5 for YinYueTai.
0.2.5
Date: 2012-09-25
- Add support for:
Dailymotion
0.2.4
Date: 2012-09-18
Use FFmpeg for converting and joining video files.
Add ‘–url’ and ‘–debug’ options.
0.2.2
Date: 2012-09-17
0.2.1
Date: 2012-09-02
- Add support for:
ifeng
0.2
Date: 2012-09-02
- Add support for:
Vimeo
AcFun
bilibili
CNTV
iQIYI
Ku6
PPTV
Sina
Sohu
56
0.1.3
Date: 2012-09-01
Playlist URLs are now automatically handled. (’–playlist’ option is no longer needed)
Handle KeyboardInterrupt silently.
Fix Unicode character display on code pages.
0.1
Date: 2012-09-01
First PyPI release.
Fix issue #1.
0.0.1
Date: 2012-08-21
- Initial release, forked from iambus/youku-lixian; add:
YouTube support.
Pausing and resuming of downloads.
HTTP proxy settings.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file you-get-0.3dev-20121228.tar.gz
.
File metadata
- Download URL: you-get-0.3dev-20121228.tar.gz
- Upload date:
- Size: 33.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b55c6c1f97ce8400334313018e8bbb015475bfd8896943546252c3dfee64c5c |
|
MD5 | 7de9ac728b30603a1278c4bff681a9cc |
|
BLAKE2b-256 | ef697e06cb624ee6e790bedab1f1ab24986c0540b74b2037b8de4915ad92c393 |
File details
Details for the file you_get-0.3dev_20121228-py3.3.egg
.
File metadata
- Download URL: you_get-0.3dev_20121228-py3.3.egg
- Upload date:
- Size: 97.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e076a5244c619e29ba8d42126e262c11ddcbfa8ad0e6dea040052f263a8fd32e |
|
MD5 | d7cf6749a2cbad59ae6d379de3f71006 |
|
BLAKE2b-256 | 2e0a59f1efccb62c1ebc1b042cb17b149b165c880ff4220cbe0518d430b59ca8 |