mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 22:55:18 +00:00 
			
		
		
		
	| @@ -636,7 +636,7 @@ class CrunchyrollShowPlaylistIE(CrunchyrollBaseIE): | |||||||
|     _VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.com/(?!(?:news|anime-news|library|forum|launchcalendar|lineup|store|comics|freetrial|login|media-\d+))(?P<id>[\w\-]+))/?(?:\?|$)' |     _VALID_URL = r'https?://(?:(?P<prefix>www|m)\.)?(?P<url>crunchyroll\.com/(?!(?:news|anime-news|library|forum|launchcalendar|lineup|store|comics|freetrial|login|media-\d+))(?P<id>[\w\-]+))/?(?:\?|$)' | ||||||
|  |  | ||||||
|     _TESTS = [{ |     _TESTS = [{ | ||||||
|         'url': 'http://www.crunchyroll.com/a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi', |         'url': 'https://www.crunchyroll.com/a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi', | ||||||
|         'info_dict': { |         'info_dict': { | ||||||
|             'id': 'a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi', |             'id': 'a-bridge-to-the-starry-skies-hoshizora-e-kakaru-hashi', | ||||||
|             'title': 'A Bridge to the Starry Skies - Hoshizora e Kakaru Hashi' |             'title': 'A Bridge to the Starry Skies - Hoshizora e Kakaru Hashi' | ||||||
| @@ -661,7 +661,8 @@ class CrunchyrollShowPlaylistIE(CrunchyrollBaseIE): | |||||||
|         show_id = self._match_id(url) |         show_id = self._match_id(url) | ||||||
|  |  | ||||||
|         webpage = self._download_webpage( |         webpage = self._download_webpage( | ||||||
|             self._add_skip_wall(url), show_id, |             # https:// gives a 403, but http:// does not | ||||||
|  |             self._add_skip_wall(url).replace('https://', 'http://'), show_id, | ||||||
|             headers=self.geo_verification_headers()) |             headers=self.geo_verification_headers()) | ||||||
|         title = self._html_search_meta('name', webpage, default=None) |         title = self._html_search_meta('name', webpage, default=None) | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 pukkandan
					pukkandan