mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-09-03 00:25:08 +00:00
Add option --legacy-server-connect (#778)
to allow HTTPS connection to servers that do not support RFC 5746 secure renegotiation Authored by: xtkoba
This commit is contained in:
@ -827,6 +827,10 @@ def create_parser():
|
||||
'--encoding',
|
||||
dest='encoding', metavar='ENCODING',
|
||||
help='Force the specified encoding (experimental)')
|
||||
workarounds.add_option(
|
||||
'--legacy-server-connect',
|
||||
action='store_true', dest='legacy_server_connect', default=False,
|
||||
help='Explicitly allow HTTPS connection to servers that do not support RFC 5746 secure renegotiation')
|
||||
workarounds.add_option(
|
||||
'--no-check-certificates',
|
||||
action='store_true', dest='no_check_certificate', default=False,
|
||||
|
Reference in New Issue
Block a user