diff options
author | bashonly <88596187+bashonly@users.noreply.github.com> | 2024-05-27 16:46:07 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-27 21:46:07 +0000 |
commit | 5e3e19c93c52830da98d9d1ed84ea7a559efefbd (patch) | |
tree | b6f7aa52fb86ed7f545b97885ad9eb8b689ca034 | |
parent | c53c2e40fde8f2e15c7c62f8ca1a5d9e90ddc079 (diff) |
[cleanup] Misc (#10043)
Authored by: bashonly
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | yt_dlp/options.py | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -401,6 +401,9 @@ If you fork the project on GitHub, you can run your fork's [build workflow](.git --impersonate CLIENT[:OS] Client to impersonate for requests. E.g. chrome, chrome-110, chrome:windows-10. Pass --impersonate="" to impersonate any client. + Note that forcing impersonation for all + requests may have a detrimental impact on + download speed and stability --list-impersonate-targets List available clients to impersonate. -4, --force-ipv4 Make all connections via IPv4 -6, --force-ipv6 Make all connections via IPv6 diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 997b575cd..9615bfbaa 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -520,7 +520,8 @@ def create_parser(): metavar='CLIENT[:OS]', dest='impersonate', default=None, help=( 'Client to impersonate for requests. E.g. chrome, chrome-110, chrome:windows-10. ' - 'Pass --impersonate="" to impersonate any client.'), + 'Pass --impersonate="" to impersonate any client. Note that forcing impersonation ' + 'for all requests may have a detrimental impact on download speed and stability'), ) network.add_option( '--list-impersonate-targets', |