[wakanim] Detect geo-restriction (#1429)

Authored by: nyuszika7h
pull/1432/head
nyuszika7h 3 years ago committed by GitHub
parent dc88e9be03
commit bd1c792327
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -33,12 +33,19 @@ class WakanimIE(InfoExtractor):
'url': 'https://www.wakanim.tv/de/v2/catalogue/episode/7843/sword-art-online-alicization-omu-arc-2-folge-15-omu',
'only_matching': True,
}]
_GEO_BYPASS = False
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
if 'Geoblocking' in webpage:
if '/de/' in url:
self.raise_geo_restricted(countries=['DE', 'AT', 'CH'])
else:
self.raise_geo_restricted(countries=['RU'])
manifest_url = urljoin(url, self._search_regex(
r'file\s*:\s*(["\'])(?P<url>(?:(?!\1).)+)\1', webpage, 'manifest url',
group='url'))

Loading…
Cancel
Save