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:
		| @@ -55,7 +55,7 @@ class KuwoBaseIE(InfoExtractor): | ||||
| class KuwoIE(KuwoBaseIE): | ||||
|     IE_NAME = 'kuwo:song' | ||||
|     IE_DESC = '酷我音乐' | ||||
|     _VALID_URL = r'http://www\.kuwo\.cn/yinyue/(?P<id>\d+?)' | ||||
|     _VALID_URL = r'https?://www\.kuwo\.cn/yinyue/(?P<id>\d+?)' | ||||
|     _TESTS = [{ | ||||
|         'url': 'http://www.kuwo.cn/yinyue/635632/', | ||||
|         'info_dict': { | ||||
| @@ -134,7 +134,7 @@ class KuwoIE(KuwoBaseIE): | ||||
| class KuwoAlbumIE(InfoExtractor): | ||||
|     IE_NAME = 'kuwo:album' | ||||
|     IE_DESC = '酷我音乐 - 专辑' | ||||
|     _VALID_URL = r'http://www\.kuwo\.cn/album/(?P<id>\d+?)/' | ||||
|     _VALID_URL = r'https?://www\.kuwo\.cn/album/(?P<id>\d+?)/' | ||||
|     _TEST = { | ||||
|         'url': 'http://www.kuwo.cn/album/502294/', | ||||
|         'info_dict': { | ||||
| @@ -170,7 +170,7 @@ class KuwoAlbumIE(InfoExtractor): | ||||
| class KuwoChartIE(InfoExtractor): | ||||
|     IE_NAME = 'kuwo:chart' | ||||
|     IE_DESC = '酷我音乐 - 排行榜' | ||||
|     _VALID_URL = r'http://yinyue\.kuwo\.cn/billboard_(?P<id>[^.]+).htm' | ||||
|     _VALID_URL = r'https?://yinyue\.kuwo\.cn/billboard_(?P<id>[^.]+).htm' | ||||
|     _TEST = { | ||||
|         'url': 'http://yinyue.kuwo.cn/billboard_香港中文龙虎榜.htm', | ||||
|         'info_dict': { | ||||
| @@ -195,7 +195,7 @@ class KuwoChartIE(InfoExtractor): | ||||
| class KuwoSingerIE(InfoExtractor): | ||||
|     IE_NAME = 'kuwo:singer' | ||||
|     IE_DESC = '酷我音乐 - 歌手' | ||||
|     _VALID_URL = r'http://www\.kuwo\.cn/mingxing/(?P<id>[^/]+)' | ||||
|     _VALID_URL = r'https?://www\.kuwo\.cn/mingxing/(?P<id>[^/]+)' | ||||
|     _TESTS = [{ | ||||
|         'url': 'http://www.kuwo.cn/mingxing/bruno+mars/', | ||||
|         'info_dict': { | ||||
| @@ -251,7 +251,7 @@ class KuwoSingerIE(InfoExtractor): | ||||
| class KuwoCategoryIE(InfoExtractor): | ||||
|     IE_NAME = 'kuwo:category' | ||||
|     IE_DESC = '酷我音乐 - 分类' | ||||
|     _VALID_URL = r'http://yinyue\.kuwo\.cn/yy/cinfo_(?P<id>\d+?).htm' | ||||
|     _VALID_URL = r'https?://yinyue\.kuwo\.cn/yy/cinfo_(?P<id>\d+?).htm' | ||||
|     _TEST = { | ||||
|         'url': 'http://yinyue.kuwo.cn/yy/cinfo_86375.htm', | ||||
|         'info_dict': { | ||||
| @@ -288,7 +288,7 @@ class KuwoCategoryIE(InfoExtractor): | ||||
| class KuwoMvIE(KuwoBaseIE): | ||||
|     IE_NAME = 'kuwo:mv' | ||||
|     IE_DESC = '酷我音乐 - MV' | ||||
|     _VALID_URL = r'http://www\.kuwo\.cn/mv/(?P<id>\d+?)/' | ||||
|     _VALID_URL = r'https?://www\.kuwo\.cn/mv/(?P<id>\d+?)/' | ||||
|     _TEST = { | ||||
|         'url': 'http://www.kuwo.cn/mv/6480076/', | ||||
|         'info_dict': { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Sergey M․
					Sergey M․