Releases: ihabunek/twitch-dl
Releases · ihabunek/twitch-dl
twitch-dl 2.1.4
* Fix error caused by twitch requiring https for the usher api (thanks @deanpcmad)
twitch-dl 2.1.3
* Replace client ID with one that works for now (thanks @mwhite34)
twitch-dl 2.1.2
* Fix error caused by twitch changing the Usher domain (thanks @adsa95)
twitch-dl 2.1.1
* Fix Python 3.7 compatibility (#117, thanks @eliduvid) * Fix default value for game_ids (#102, thanks @FunnyPocketBook)
twitch-dl 2.1.0
* Add chapter list to `info` command * Add `--chapter` option to `download` command for downloading a single chapter
twitch-dl 2.0.1
* Fix an issue where a temp vod file would be renamed while still being open, which caused an exception on Windows (#111)
twitch-dl 2.0.0
This release switches from using `requests` to `httpx` for making http requests, and from threads to `asyncio` for concurrency. This enables easier implementation of new features, but has no breaking changes for the CLI. * **BREAKING**: Require Python 3.7 or later. * Add `--rate-limit` option to `download` for limiting maximum bandwidth when downloading. * Add `--compact` option to `download` for displaying one video per line. * Allow passing multiple video ids to `download` to download multiple videos successively. * Improved progress meter, updates on each chunk downloaded, instead of each VOD downloaded. * Improved speed estimate, displays recent speed instead of average speed since the start of download. * Decreased default concurrent downloads to 5. This seems to be enough to saturate the download link in most cases. You can override this by setting the `-w` option. Please test and report back if this works for you.
twitch-dl 1.22.0
* Add support for downloading subscriber-only VODs (#48, thanks @cemiu)
twitch-dl 1.21.0
* Add `env` command for printing environment info for attaching to bug reports
twitch-dl 1.20.0
* Add `--json` option to `videos` command (#92, thanks @miff2000) * Add `--all` option to `videos` and `clips` commands to list all clips or videos in one go. * Modify how `--pager` works, will make multiple requests if needed to show all available items, ignoring `--limit`.