mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[utils] Advertise optional supported Content-Encodings
				
					
				
			This commit is contained in:
		| @@ -1678,9 +1678,7 @@ def random_user_agent(): | |||||||
|  |  | ||||||
| std_headers = { | std_headers = { | ||||||
|     'User-Agent': random_user_agent(), |     'User-Agent': random_user_agent(), | ||||||
|     'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', |  | ||||||
|     'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', |     'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', | ||||||
|     'Accept-Encoding': 'gzip, deflate', |  | ||||||
|     'Accept-Language': 'en-us,en;q=0.5', |     'Accept-Language': 'en-us,en;q=0.5', | ||||||
| } | } | ||||||
|  |  | ||||||
| @@ -2724,6 +2722,13 @@ class YoutubeDLHandler(compat_urllib_request.HTTPHandler): | |||||||
|             if h.capitalize() not in req.headers: |             if h.capitalize() not in req.headers: | ||||||
|                 req.add_header(h, v) |                 req.add_header(h, v) | ||||||
|  |  | ||||||
|  |         # Similarly, 'Accept-encoding' | ||||||
|  |         if 'Accept-encoding' not in req.headers: | ||||||
|  |             req.add_header( | ||||||
|  |                 'Accept-Encoding', join_nonempty( | ||||||
|  |                     'gzip', 'deflate', brotli and 'br', ncompress and 'compress', | ||||||
|  |                     delim=', ')) | ||||||
|  |  | ||||||
|         req.headers = handle_youtubedl_headers(req.headers) |         req.headers = handle_youtubedl_headers(req.headers) | ||||||
|  |  | ||||||
|         if sys.version_info < (2, 7): |         if sys.version_info < (2, 7): | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user