mirror of
				https://github.com/ytdl-org/youtube-dl.git
				synced 2025-10-29 09:26:20 -07:00 
			
		
		
		
	[extractor/generic] Force Content-Type to lowecase
This commit is contained in:
		| @@ -1248,7 +1248,7 @@ class GenericIE(InfoExtractor): | |||||||
|         } |         } | ||||||
|  |  | ||||||
|         # Check for direct link to a video |         # Check for direct link to a video | ||||||
|         content_type = head_response.headers.get('Content-Type', '') |         content_type = head_response.headers.get('Content-Type', '').lower() | ||||||
|         m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type) |         m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type) | ||||||
|         if m: |         if m: | ||||||
|             upload_date = unified_strdate( |             upload_date = unified_strdate( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user