Decrease default number of workers to 5

This commit is contained in:
Ivan Habunek 2022-08-18 09:30:35 +02:00
parent c4f4935b96
commit a14ce57f95
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
5 changed files with 13 additions and 4 deletions

View File

@ -17,6 +17,9 @@ implementation of new features, but has no breaking changes for the CLI.
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.
### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0)

View File

@ -10,6 +10,10 @@
- "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.
1.22.0:
date: 2022-06-25

View File

@ -17,6 +17,9 @@ implementation of new features, but has no breaking changes for the CLI.
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.
### [1.22.0 (2022-06-25)](https://github.com/ihabunek/twitch-dl/releases/tag/1.22.0)

View File

@ -47,7 +47,7 @@ twitch-dl download <videos> [FLAGS] [OPTIONS]
<tbody>
<tr>
<td class="code">-w, --max-workers</td>
<td>Maximal number of threads for downloading vods concurrently (default 20)</td>
<td>Number of workers for downloading vods concurrently (default 5)</td>
</tr>
<tr>

View File

@ -166,10 +166,9 @@ COMMANDS = [
"nargs": "+",
}),
(["-w", "--max-workers"], {
"help": "Maximal number of threads for downloading vods "
"concurrently (default 20)",
"help": "Number of workers for downloading vods concurrently (default 5)",
"type": int,
"default": 20,
"default": 5,
}),
(["-s", "--start"], {
"help": "Download video from this time (hh:mm or hh:mm:ss)",