Bump version, changelog, readme

This commit is contained in:
Ivan Habunek 2021-01-14 22:04:44 +01:00
parent dbee7cdc52
commit 9e2bbd7e39
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
4 changed files with 42 additions and 24 deletions

View File

@ -1,6 +1,12 @@
Twitch Downloader change log
============================
1.14.0 (2021-01-14)
-------------------
* Added `info` command for displaying video or clip info (#51)
* Fixed Twitch regression for getting the access token (#53)
1.13.1 (2020-11-23)
-------------------

View File

@ -79,6 +79,39 @@ pipx install twitch-dl
Usage
-----
This section does an overview of available features.
To see a list of available commands run:
```
twitch-dl --help
```
And to see description and all arguments for a given command run:
```
twitch-dl <command> --help
```
### Print clip or video info
Videos can be referenced by URL or ID:
```
twitch-dl info 863849735
twitch-dl info https://www.twitch.tv/videos/863849735
```
Clips by slug or ID:
```
twitch-dl info BusyBlushingCattleItsBoshyTime
twitch-dl info https://www.twitch.tv/bananasaurus_rex/clip/BusyBlushingCattleItsBoshyTime
```
Shows info about the video or clip as well as download URLs for clips and
playlist URLs for videos.
### Listing videos
List recent streams for a given channel:
@ -87,27 +120,6 @@ List recent streams for a given channel:
twitch-dl videos bananasaurus_rex
```
Yields (trimmed):
```
Found 33 videos
221837124
SUPER MARIO ODYSSSEY - Stream #2 / 600,000,000
Bananasaurus_Rex playing Super Mario Odyssey
Published 2018-01-24 @ 12:05:25 Length: 3h 40min
221418913
Dead Space and then SUPER MARIO ODYSSEY PogChamp
Bananasaurus_Rex playing Dead Space
Published 2018-01-23 @ 02:40:58 Length: 6h 2min
220783179
Dead Space | Got my new setup working! rexChamp
Bananasaurus_Rex playing Dead Space
Published 2018-01-21 @ 05:47:03 Length: 5h 7min
```
Use the `--game` option to specify one or more games to show:
```
@ -116,7 +128,7 @@ twitch-dl videos --game "doom eternal" --game "cave story" bananasaurus_rex
### Downloading videos
Download a stream by ID or URL:
Download a video by ID or URL:
```
twitch-dl download 221837124

View File

@ -11,7 +11,7 @@ makes it faster.
setup(
name='twitch-dl',
version='1.13.1',
version='1.14.0',
description='Twitch downloader',
long_description=long_description.strip(),
author='Ivan Habunek',

View File

@ -1,3 +1,3 @@
__version__ = "1.13.1"
__version__ = "1.14.0"
CLIENT_ID = "kimne78kx3ncx6brgo4mv6wki5h1ko"