mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	Add support for https for all extractors as preventive and future-proof measure
This commit is contained in:
		| @@ -12,7 +12,7 @@ from ..utils import ( | ||||
| class ImdbIE(InfoExtractor): | ||||
|     IE_NAME = 'imdb' | ||||
|     IE_DESC = 'Internet Movie Database trailers' | ||||
|     _VALID_URL = r'http://(?:www|m)\.imdb\.com/video/imdb/vi(?P<id>\d+)' | ||||
|     _VALID_URL = r'https?://(?:www|m)\.imdb\.com/video/imdb/vi(?P<id>\d+)' | ||||
|  | ||||
|     _TEST = { | ||||
|         'url': 'http://www.imdb.com/video/imdb/vi2524815897', | ||||
| @@ -70,7 +70,7 @@ class ImdbIE(InfoExtractor): | ||||
| class ImdbListIE(InfoExtractor): | ||||
|     IE_NAME = 'imdb:list' | ||||
|     IE_DESC = 'Internet Movie Database lists' | ||||
|     _VALID_URL = r'http://www\.imdb\.com/list/(?P<id>[\da-zA-Z_-]{11})' | ||||
|     _VALID_URL = r'https?://www\.imdb\.com/list/(?P<id>[\da-zA-Z_-]{11})' | ||||
|     _TEST = { | ||||
|         'url': 'http://www.imdb.com/list/JFs9NWw6XI0', | ||||
|         'info_dict': { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․