mirror of
https://github.com/soimort/you-get.git
synced 2025-02-02 16:24:00 +03:00
version 0.2.4
This commit is contained in:
parent
f9f8bcde98
commit
043573c8ac
@ -1,12 +1,12 @@
|
||||
Changelog
|
||||
=========
|
||||
|
||||
0.2.3
|
||||
0.2.4
|
||||
-----
|
||||
|
||||
*Date: 2012-09-18*
|
||||
|
||||
* Use FFmpeg for converting and joining of videos.
|
||||
* Use FFmpeg for converting and joining video files.
|
||||
* Add '--url' and '--debug' options.
|
||||
|
||||
0.2.2
|
||||
|
24
README.md
24
README.md
@ -26,6 +26,12 @@ Fork me on GitHub: <https://github.com/soimort/you-get>
|
||||
* Sohu (搜狐视频) <http://tv.sohu.com>
|
||||
* 56 (56网) <http://www.56.com>
|
||||
|
||||
## Dependencies
|
||||
|
||||
* [Python 3](http://www.python.org/download/releases/)
|
||||
* __(Optional)__ [FFmpeg](http://ffmpeg.org)
|
||||
* Used for converting and joining video files.
|
||||
|
||||
## Installation
|
||||
|
||||
### 1. Install via [Pip](http://www.pip-installer.org/):
|
||||
@ -87,9 +93,9 @@ Fork me on GitHub: <https://github.com/soimort/you-get>
|
||||
|
||||
$ you-get -V
|
||||
|
||||
### 5. Install from [AUR](http://aur.archlinux.org/) (Arch User Repository):
|
||||
|
||||
<https://aur.archlinux.org/packages.php?ID=62576>
|
||||
### 5. Install from [AUR (Arch User Repository)](http://aur.archlinux.org/):
|
||||
|
||||
Click [here](https://aur.archlinux.org/packages.php\?ID=62576).
|
||||
|
||||
## Examples (For End-Users)
|
||||
|
||||
@ -205,6 +211,12 @@ You-Get基于优酷下载脚本[iambus/youku-lixian](https://github.com/iambus/y
|
||||
* 搜狐视频 <http://tv.sohu.com>
|
||||
* 56网 <http://www.56.com>
|
||||
|
||||
## 依赖
|
||||
|
||||
* [Python 3](http://www.python.org/download/releases/)
|
||||
* __(可选)__ [FFmpeg](http://ffmpeg.org)
|
||||
* 用于转换与合并视频文件。
|
||||
|
||||
## 安装说明
|
||||
|
||||
(以下命令格式均以Linux shell为例)
|
||||
@ -268,9 +280,9 @@ You-Get基于优酷下载脚本[iambus/youku-lixian](https://github.com/iambus/y
|
||||
|
||||
$ you-get -V
|
||||
|
||||
### 5. 从[AUR](http://aur.archlinux.org/)(Arch User Repository)安装:
|
||||
|
||||
<https://aur.archlinux.org/packages.php?ID=62576>
|
||||
### 5. 从[AUR (Arch User Repository)](http://aur.archlinux.org/)安装:
|
||||
|
||||
点击[这里](https://aur.archlinux.org/packages.php\?ID=62576)。
|
||||
|
||||
## 使用方法示例
|
||||
|
||||
|
11
README.txt
11
README.txt
@ -29,6 +29,13 @@ Supported Sites (As of Now)
|
||||
* Sohu (搜狐视频) http://tv.sohu.com
|
||||
* 56 (56网) http://www.56.com
|
||||
|
||||
Dependencies
|
||||
------------
|
||||
|
||||
* `Python 3 <http://www.python.org/download/releases/>`_
|
||||
* (Optional) `FFmpeg <http://ffmpeg.org>`_
|
||||
* Used for converting and joining video files.
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
@ -91,9 +98,9 @@ Installation
|
||||
|
||||
$ you-get -V
|
||||
|
||||
#) Install from `AUR <http://aur.archlinux.org/>`_ (Arch User Repository)::
|
||||
#) Install from `AUR (Arch User Repository) <http://aur.archlinux.org/>`_:
|
||||
|
||||
https://aur.archlinux.org/packages.php?ID=62576
|
||||
Click `here <https://aur.archlinux.org/packages.php?ID=62576>`_.
|
||||
|
||||
Examples (For End-Users)
|
||||
------------------------
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "you-get",
|
||||
"version": "0.2.3",
|
||||
"version": "0.2.4",
|
||||
"date": "2012-09-18",
|
||||
|
||||
"author": "Mort Yao",
|
||||
|
@ -8,7 +8,7 @@ import re
|
||||
import sys
|
||||
from urllib import request, parse
|
||||
|
||||
__version__ = "0.2.3"
|
||||
__version__ = "0.2.4"
|
||||
|
||||
dry_run = False
|
||||
force = False
|
||||
|
Loading…
Reference in New Issue
Block a user